@font-face {
  font-family: 'stratumno-light';
  src: url(font/stratumno2_light.otf)
}

@font-face {
  font-family: 'stratumno-regular';
  src: url(font/stratumno2_regular.otf)
}

@font-face {
  font-family: 'stratumno-bold';
  src: url(font/stratumno2_bold.otf)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'stratumno-light';
  background-color: #f0f4f8;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.homepage_TopFade {
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, #0A0D12), color-stop(80%, #0A0D1270), color-stop(60%, #0A0D1200));
}

.homepage_BottomFade {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #0A0D1200), color-stop(80%, #0A0D1270), color-stop(100%, #0A0D12));
}

.homepage_hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: -moz-linear-gradient(top,  rgba(32, 32, 32, 0) 0%, rgb(0, 0, 0) 70%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(70%,rgb(17, 17, 17)));
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: linear-gradient(to bottom,  #121212 0%,#121212f3 70%);
}

.homepage_hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.homepage_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .67);
  z-index: 2;
}

.homepage_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  background: rgba(0, 0, 0, 0);
    color: white;
}

.homepage_navbar_left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.homepage_navbar_right {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 17px;
}

.homepage_navbar_right a {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

 .navbar_right a:hover {
  opacity: 1;
}

@media screen and (max-width: 1681px) {
  .homepage_navbar {
    flex-wrap: wrap; 
  }
  
  .homepage_navbar_left {
    width: 100%;
    order: 2; 
    margin-top: 10px;
    justify-content: center;
    gap: 20px;
  }

  .homepage_navbar_right {
    width: 100%;
    order: 1; 
    justify-content: center;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .homepage_navbar {
    flex-wrap: wrap;
  }
  
  .homepage_navbar_left {
    width: 100%;
    order: 2;
    margin-top: 10px;
    justify-content: center;
    gap: 20px;
    display: none;
  }

  .homepage_navbar_right {
    width: 100%;
    order: 1; 
    justify-content: center;
    gap: 30px;
    font-size: 12px;
  }
}

.navbar_logo img {
  height: 8vh;
}

.navbar_play_button {
  padding: 13px 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  border: none;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  border-radius: 3px;
}

@keyframes pulse {
  0%, 100% {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
}

.navbar_play_button:hover {
  background: linear-gradient(135deg, #e74d3cd5, #c03a2bde);
}

.navbar_player_count {
  color: rgb(211, 209, 209);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  font-size: 17px;
}

.navbar_player_count span {
  color: rgb(255, 255, 255);
  opacity: 1;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  font-size: 18px;
  margin-left: .4vh;
}



.homepage_modal_overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99;
  justify-content: center;
  align-items: center;
  display: none;
  flex-direction: column;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.homepage_modal_box {
  background: #1c1c1c;
  padding: 30px;
  max-width: 700px;
  border-radius: 8px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.homepage_modal_buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.homepage_modal_buttons button {
  padding: 10px 20px;
  border: none;
  background: #e74c3c;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.homepage_modal_buttons button:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.homepage_hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.homepage_hero_content h2 {
  color: rgb(255, 255, 255); 
  opacity: 0.8;
  font-size: 48px;
  margin-bottom:2vh;
  font-style: italic;
}

#changing_text {
  display: block;
  font-size: 48px;
  width: 350px;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-style: italic;
  color: rgba(255, 17, 17, 0.815);
  opacity: 0.9;
  font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.homepage_support_container {
  position: absolute;
  width: 100%;
  bottom: 5%;      
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage_support_box {
  z-index: 4;
  display: flex;
  justify-content: right;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: 1px;
  backdrop-filter: blur(6px);
  max-width: 90vw;
  width: 800px;
  height: 150px;
  background-image: url(assets/bumper.png);
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;   
  transform-origin: center center; 
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.homepage_support_box:hover {
  scale: 1.05;
  cursor: pointer;
  opacity: 1.3;
}

.homepage_support_box span {
  text-align: right;
  font-family: 'stratumno-regular';
  font-weight: 700;
  font-size: 28px;
  color: #1e202f;
}

.homepage_hero_content span {
  color: rgb(209, 199, 187); 
  opacity: 0.8;
  font-size: 23px;
  font-weight: 550;
}




.homepage_team_section {
  position: relative;
  background-color: #0a0d12;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.homepage_team_title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #ff5656;
}

.homepage_team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.homepage_team_card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px #1a1818c2;
}

.homepage_team_card:hover {
  transform: translateY(-8px);
  cursor: pointer;
}

.team_founder_card {
   background: linear-gradient(135deg, #ff416da4, #ff4b2ba8);
   border: 1px solid #ff4b2b9c;
}

.team_developer_card {
  background: linear-gradient(135deg, #00c8ffbd, #0073ffb0);
  border: 1px solid #0073ffa2;
}

.team_management_card {
  background: linear-gradient(135deg, #f7951eab, #ffd000af);
  border: 1px solid #ffd000a9;
}

.team_leaderadmin_card {
  background: linear-gradient(135deg, #8d2de2b2, #4b00e0ab);
  border: 1px solid #4b00e0c5;
}

.team_admin_card {
  background: linear-gradient(135deg, #606c88c2, #3f4c6bb7);
  border: 1px solid #3f4c6baf;
}

.homepage_team_photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
}

.homepage_team_name {
  font-size: 22px;
  margin-bottom: 5px;
}

.homepage_team_role {
  font-size: 16px;
  color: #fafafa;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.homepage_team_socials a {
  color: #f5f5f5;
  margin: 0 8px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.homepage_team_socials a:hover {
  color: #b4abab;
}

@media (max-width: 600px) {
  .homepage_team_grid {
    grid-template-columns: 1fr;
  }
}

.homepage_rules_section {
  position: relative;
  background-color: #0a0d12;
  color: #e0e0e0;
  padding: 80px 40px;
}

.homepage_rules_title {
  font-size: 36px;
  text-align: left;
  margin-bottom: 40px;
  border-bottom: 2px solid #ff5656;
  padding-bottom: 10px;
  color: #ffffff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.homepage_rules_wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 2000px;
  margin: 0 auto;
}

.homepage_rules_block {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background-color: #1a1a1a;
  padding: 25px 30px;
  border: 1px solid #2c2c2c;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.homepage_rules_subtitle {
  font-size: 20px;
  color: #ff5656;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px dashed #444;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.homepage_rules_list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.homepage_rules_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #d0d0d0;
}

.homepage_rules_list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ff5656;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 768px) {
  .homepage_rules_title {
    font-size: 28px;
    text-align: center;
  }

  .homepage_rules_wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .homepage_rules_block {
    padding: 20px;
  }
}

.homepage_skinchanger_section {
  position: relative;
  background-color: #0a0d12;
  padding: 100px 320px;
  color: white;
  overflow: visible;
}

.skinchanger_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.skinchanger_grid_box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 20px;
}

.skinchanger_grid_box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.skinchanger_grid_box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.skinchanger_bottom {
  text-align: center;
}

.skinchanger_bottom h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.skinchanger_bottom p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.skinchanger_button {
  padding: 11px 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.skinchanger_button:hover {
  background: linear-gradient(135deg, #e74d3cd5, #c03a2bde);
  scale: 1.04;
}

.skinchanger_button img {
  width: 20px;
  height: 20px;
  transform: rotateZ(135deg);
  filter: brightness(0.8);
  position: relative;
  top: .5vh;
}

@media (max-width: 1200px) {
  .skinchanger_grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .homepage_skinchanger_section {
    padding: 80px 60px;
  }
}

@media (max-width: 768px) {
  .skinchanger_grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage_skinchanger_section {
    padding: 60px 30px;
  }
}

@media (max-width: 480px) {
  .skinchanger_grid_wrapper {
    grid-template-columns: 1fr;
  }

  .homepage_skinchanger_section {
    padding: 40px 20px;
  }

  .skinchanger_bottom h3 {
    font-size: 22px;
  }

  .skinchanger_bottom p {
    font-size: 16px;
  }

  .skinchanger_button {
    font-size: 14px;
    padding: 10px 18px;
  }
}


.homepage_footer {
  position: relative;
  background-color: #0a0d12;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
}

.homepage_footer_links {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.homepage_footer_links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.homepage_footer_links a:hover {
  color: white;
}

.homepage_footer_info p {
  margin: 4px 0;
  color: #999;
}

.homepage_footer_info span {
  color: #ccc;
  font-weight: 500;
}

@media (max-width: 600px) {
  .homepage_footer_links {
    flex-direction: column;
    gap: 8px;
  }
}

.homepage_footer_modal_overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.homepage_footer_modal_box {
  background: #1e1e1e;
  padding: 30px 40px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: hidden;
  border-radius: 5px;
  color: #f5f5f5;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
  text-align: left;
}

.homepage_footer_modal_box h2 {
  color: #ff5656;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.homepage_footer_modal_close {
  margin-top: 20px;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.homepage_footer_modal_close:hover {
  background: #c0392b;
}

.homepage_footer_modal_list {
  padding-left: 20px;
  padding-right: 4vh;
  margin-top: 15px;
  max-height: 60vh;
  overflow-y: auto;
}

.homepage_footer_modal_list li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #d0d0d0;
  list-style-type: disc;
}

.homepage_footer_modal_box::-webkit-scrollbar,
.homepage_footer_modal_list::-webkit-scrollbar {
  width: 8px;
}

.homepage_footer_modal_box::-webkit-scrollbar-track,
.homepage_footer_modal_list::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 10px;
}

.homepage_footer_modal_box::-webkit-scrollbar-thumb,
.homepage_footer_modal_list::-webkit-scrollbar-thumb {
  background: #ff5656;
  border-radius: 10px;
}

.homepage_footer_modal_box::-webkit-scrollbar-thumb:hover,
.homepage_footer_modal_list::-webkit-scrollbar-thumb:hover {
  background: #ff3c3c;
}

.gametracker-wrapper {
  background-color: #0a0d12;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.gametracker-title {
  color: #ff5656;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  text-transform: uppercase;
  background-color: #0a0d12;
}

.homepage_gametracker {
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage_gametracker_section {
  position: relative;
  background-color: #0a0d12;
  color: #fff;
  padding: 40px 20px;
  height: 60vh;
  text-align: center;
}

.gametracker-wrapper::-webkit-scrollbar{
  width: 8px;
}

.gametracker-wrapper::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 10px;
}

.gametracker-wrapper::-webkit-scrollbar-thumb {
  background: #ff5656;
  border-radius: 10px;
}

.gametracker-wrapper:-webkit-scrollbar-thumb:hover {
  background: #ff3c3c;
}

.homepage_scroll_button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 20px;
  font-size: 20px;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.homepage_scroll_button:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(-50%) translateY(-4px);
}

.homepage_maps_section {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: -moz-linear-gradient(top,  rgba(32, 32, 32, 0) 0%, rgb(0, 0, 0) 70%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(70%,rgb(17, 17, 17)));
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgb(0, 0, 0) 70%);
  background: linear-gradient(to bottom,  #121212 0%,#121212f3 70%);
}

.homepage_maps_section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.homepage_maps_content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.homepage_maps_content h2 {
  text-align: center;
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  font-weight: bold;
}

.homepage_maps_content span {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 20px;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

.server_modal_overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.server_modal_box {
  background: #111111;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  border-radius: 10px;
  color: white;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  z-index: 1001;
}

.server_modal_grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.server_modal_card {
  position: relative;
  width: 300px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.server_modal_card:hover {
  transform: scale(1.03);
}

.server_modal_video_wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.server_modal_video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.server_modal_card p {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  z-index: 2;
  text-shadow: 0 0 5px #000;
}

.server_modal_close {
  margin-top: 30px;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 5px;
}

.server_modal_close:hover {
  background: #c0392b;
}

@media (max-width: 768px) {
  .server_modal_grid {
    flex-direction: column;
    align-items: center;
  }

  .server_modal_card {
    width: 90%;
    height: 180px;
  }
}

.skin_modal_overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.skin_modal_box {
  background: #1a1a1a;
  color: white;
  padding: 40px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}

#skinSearch {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 20px;
  border-radius: 4px;
}

.skin_modal_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
  justify-items: start; 
  max-width: 480px;

}

.skin_modal_grid .skin_item {
  width: 150px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  margin-bottom: 15px;
}

.skin_modal_grid .skin_item img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 10px;
}

.skin_modal_grid .skin_item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.05);
}

.skin_modal_close {
  margin-top: 20px;
  background: #e74c3c;
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.skin_modal_close:hover {
  background: #c0392b;
}

.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #27ae60;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 99999;
  pointer-events: none;
  font-size: 15px;
}

.notification.show {
  opacity: 1;
}

#skinSearch {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1.5px solid #444;
 
  background-color: #222;
  color: #eee;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  margin-top: 1vh;
}

#skinSearch::placeholder {
  color: #888;
}

#skinSearch:focus {
  outline: none;
  border-color: #ff5656;
  background-color: #2c2c2c;
  box-shadow: 0 0 6px #ff5656aa;
}
