*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Press Start 2P',-apple-system,BlinkMacSystemFont,Inter,sans-serif;
  color:#1a1a2e;
  background:
    radial-gradient(circle at 20% 20%, #1d8ce1, transparent 50%),
    radial-gradient(circle at 80% 80%, #4e2b95, transparent 50%),
    #0a0a1a;
  line-height:1.6;
}

/* NAVBAR */

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 60px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:transparent;
  backdrop-filter:none;
  border-bottom:none;
  z-index:1000;
  transition:all 0.3s ease;
}

/* Desktop only - transparent navbar at top */
@media(min-width:901px){
  .nav{
    background:transparent !important;
  }
  
  .nav.scrolled-up{
    background:rgba(10,10,26,0.65) !important;
  }
}

.nav.scrolled{
  transform:translateY(-100%);
}

.nav.scrolled-up{
  transform:translateY(0);
  padding:15px 60px;
  background:rgba(10,10,26,0.65);
  backdrop-filter:blur(15px);
  box-shadow:0 2px 15px rgba(0,0,0,0.2);
}

.nav-icons{
  display:none;
}

.search-btn, .menu-btn, .store-btn{
  background:transparent;
  border:none;
  color:#5fc4e1;
  cursor:pointer;
  padding:8px;
  transition:color 0.3s;
  position:relative;
  z-index:3000;
  touch-action:manipulation;
}

.search-btn:hover, .menu-btn:hover, .store-btn:hover{
  color:#1db0e1;
}

.nav-menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav-menu a{
  text-decoration:none;
  color:#5fc4e1;
  transition:color 0.3s;
}

.nav-menu a:hover{
  color:#1db0e1;
}

/* Desktop search button */
.desktop-search-btn{
  background:transparent;
  border:none;
  color:#5fc4e1;
  cursor:pointer;
  padding:8px;
  transition:color 0.3s;
  display:inline-flex;
  align-items:center;
}

.desktop-search-btn:hover{
  color:#1db0e1;
}

.close-btn{
  display:none;
}

.logo{
  font-weight:900;
  font-size:24px;
  letter-spacing:2px;
  font-family:'Press Start 2P',monospace;
  color:#5fc4e1;
  transition:all 0.3s ease;
  text-shadow:
    1px 1px 0 #4db5d1,
    2px 2px 0 #3ba5c1,
    3px 3px 0 #2995b1,
    4px 4px 0 #1d8ce1,
    5px 5px 0 #1a7cc1,
    6px 6px 0 #4e2b95,
    7px 7px 0 #3e1b85,
    8px 8px 0 #2e0b75,
    9px 9px 20px rgba(0,0,0,0.8),
    10px 10px 25px rgba(0,0,0,0.6);
}

.nav.scrolled-up .logo{
  font-size:20px;
}

.logo img{
  height:40px;
  display:block;
  transition:all 0.3s ease;
}

.nav.scrolled-up .logo img{
  height:35px;
}

.logo a{
  display:block;
  line-height:0;
}

/* HERO */

.hero{
  text-align:center;
  padding:160px 20px 120px;
}

.hero h1{
  font-size:64px;
  line-height:1.1;
  background:linear-gradient(180deg,#4e2b95,#1d8ce1,#1db0e1,#5fc4e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-family:'Montserrat',sans-serif;
  font-weight:900;
  filter:drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero p{
  margin-top:20px;
  font-size:22px;
  color:#b8c0e8;
}

.cta{
  margin-top:40px;
  padding:16px 40px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,#1db0e1,#1d8ce1,#4e2b95);
  color:white;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 35px rgba(29,176,225,.6);
}

/* FEATURES */

.features{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:100px 60px;
  flex-wrap:wrap;
}

.card{
  background:rgba(40,40,70,0.6);
  padding:40px;
  border-radius:20px;
  width:280px;
  border:1px solid rgba(29,176,225,0.3);
  opacity:0;
  transform:translateY(30px);
  transition:all 0.6s ease, opacity 0.3s ease;
  color:#e8e8ff;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(29,176,225,0.4);
  background:rgba(50,50,90,0.7);
  border-color:rgba(95,196,225,0.5);
  opacity:0.9;
}

.card h3{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RANKS */

.ranks{
  text-align:center;
  padding:90px 60px;
}

.ranks h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:42px;
  margin-bottom:15px;
}

.ranks > p{
  font-size:16px;
  color:#b8c0e8;
  margin-bottom:50px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.rank-grid{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin-top:40px;
}

.rank-card{
  background:rgba(40,40,70,0.7);
  padding:40px 35px;
  border-radius:20px;
  width:240px;
  border:1px solid rgba(29,176,225,0.3);
  opacity:0;
  transform:translateY(30px) scale(0.95);
  transition:all 0.6s ease;
  color:#e8e8ff;
  position:relative;
  overflow:hidden;
}

.rank-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 50px rgba(29,176,225,0.4);
  background:rgba(50,50,90,0.85);
  border-color:rgba(95,196,225,0.6);
  opacity:0.95;
}

.rank-card h3{
  font-family:'Fredoka',sans-serif;
  font-size:24px;
  margin-bottom:15px;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.rank-card p{
  font-size:13px;
  line-height:1.8;
  color:#b8c0e8;
  margin-bottom:20px;
}

.rank-card .duration{
  display:inline-block;
  padding:8px 20px;
  background:rgba(29,176,225,0.2);
  border-radius:999px;
  font-size:12px;
  color:#5fc4e1;
  border:1px solid rgba(29,176,225,0.4);
}

.rank-card.vip{
  border-top:4px solid #8FBACC;
}

.rank-card.vip h3{
  background:linear-gradient(90deg,#8FBACC,#8FBACC);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:brightness(1.1);
}

.rank-card.elite{
  border-top:4px solid #628C54;
}

.rank-card.elite h3{
  background:linear-gradient(90deg,#628C54,#628C54);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:brightness(1.1);
}

.rank-card.hero{
  border-top:4px solid #DFAC2A;
}

.rank-card.hero h3{
  background:linear-gradient(90deg,#DFAC2A,#DFAC2A);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:brightness(1.1);
}

.rank-card.nexus{
  border-top:4px solid #E57010;
}

.rank-card.nexus h3{
  background:linear-gradient(90deg,#E57010,#E57010);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:brightness(1.1);
}

.rank-card.phantom{
  border-top:4px solid #902C14;
}

.rank-card.phantom h3{
  background:linear-gradient(90deg,#902C14,#902C14);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:brightness(1.1);
}

/* PRICING */

.pricing{
  text-align:center;
  padding:90px 20px;
}

.pricing h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:42px;
}

.price-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:50px;
  flex-wrap:wrap;
}

.price-card{
  background:rgba(40,40,70,0.7);
  padding:45px 40px;
  border-radius:20px;
  width:260px;
  border:1px solid rgba(29,176,225,0.3);
  opacity:0;
  transform:translateY(30px) scale(0.95);
  transition:all 0.6s ease;
  color:#e8e8ff;
}

.price-card:hover{
  transform:translateY(-12px) scale(1.05);
  box-shadow:0 30px 60px rgba(29,176,225,0.45);
  background:rgba(50,50,90,0.85);
  border-color:rgba(95,196,225,0.6);
  opacity:0.95;
}

.price-card:hover h3{
  filter:brightness(1.3);
}

.price-card:hover .cta{
  transform:scale(1.05);
  box-shadow:0 8px 25px rgba(29,176,225,.6);
}

.price-card h3{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@keyframes fadeInScale{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.price-card h1{
  font-size:42px;
  margin:10px 0;
}

.price-card ul{
  list-style:none;
  margin:20px 0;
  line-height:1.8;
  color:#b8c0e8;
}

.popular{
  border:2px solid rgba(29,176,225,.7);
  box-shadow:0 0 40px rgba(29,176,225,.3);
  background:rgba(50,50,90,0.8);
}

/* CTA */

.bigcta{
  text-align:center;
  padding:140px 20px;
}

.bigcta h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:38px;
}

footer{
  text-align:center;
  padding:40px;
  color:#7a7a9e;
}

/* Search Modal - Desktop */
.search-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(10,10,26,0.98);
  backdrop-filter:blur(30px);
  z-index:3000;
  padding:20px;
}

.search-modal.active{
  display:flex;
  flex-direction:column;
}

.search-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.search-close{
  background:transparent;
  border:none;
  color:#5fc4e1;
  font-size:35px;
  cursor:pointer;
  padding:0;
  width:40px;
  height:40px;
}

.search-input-wrapper{
  position:relative;
  margin-bottom:30px;
}

.search-input{
  width:100%;
  padding:15px 50px 15px 20px;
  background:rgba(40,40,70,0.6);
  border:2px solid rgba(29,176,225,0.3);
  border-radius:12px;
  color:#fff;
  font-size:16px;
  outline:none;
}

.search-input:focus{
  border-color:rgba(29,176,225,0.6);
}

.search-icon-input{
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  color:#5fc4e1;
}

.search-results{
  color:#b8c0e8;
  font-size:14px;
}

.search-results p{
  display:none;
}

/* MOBILE */

@media(max-width:900px){
  /* Navbar Mobile - Apple Style */
  .nav{
    padding:12px 20px;
    background:rgba(10,10,26,0.85);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
  }

  .menu-open .nav{
    z-index:10003;
  }
  .nav.scrolled-up{
    padding:12px 20px;
  }
  .logo img{
    height:28px;
  }
  .nav.scrolled-up .logo img{
    height:28px;
  }
  
  /* Show mobile icons */
  .nav-icons{
    display:flex;
    gap:15px;
    align-items:center;
  }
  
  /* Mobile menu overlay */
  .nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:400px;
    height:100vh;
    background:rgba(15,15,30,0.98);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    display:flex !important;
    flex-direction:column;
    padding:80px 40px 40px;
    gap:0;
    transition:right 0.4s ease;
    z-index:10001;
    box-shadow:-5px 0 30px rgba(0,0,0,0.5);
    border-left:1px solid rgba(95,196,225,0.2);
  }
  
  .nav-menu.active{
    right:0;
  }
  
  /* Hide desktop search button in mobile menu */
  .nav-menu .desktop-search-btn{
    display:none;
  }
  
  .nav-menu a{
    padding:20px 0;
    font-size:18px;
    color:#5fc4e1;
    border-bottom:1px solid rgba(29,176,225,0.15);
    transition:all 0.3s;
    display:block;
    text-decoration:none;
  }
  
  .nav-menu a:hover{
    color:#1db0e1;
    padding-left:10px;
  }
  
  .close-btn{
    display:block;
    position:absolute;
    top:20px;
    right:25px;
    background:transparent;
    border:none;
    color:#5fc4e1;
    font-size:45px;
    cursor:pointer;
    line-height:1;
    padding:0;
    width:45px;
    height:45px;
    transition:color 0.3s;
    z-index:10002;
  }
  
  .close-btn:hover{
    color:#1db0e1;
  }
  
  /* Menu overlay backdrop */
  .menu-backdrop{
    opacity:0;
    pointer-events:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.7);
    z-index:10000;
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
    transition:opacity .3s ease;
  }
  
  .menu-backdrop.active{
    opacity:1;
    pointer-events:auto;
  }

.menu-btn{
  position:relative;
  z-index:3000;
  touch-action:manipulation;
}

.menu-backdrop.active{
  opacity:1;
  pointer-events:auto;
}
  
  .menu-backdrop.active{
    opacity:1;
    pointer-events:auto;
  }
  
  /* Hero Mobile */
  .hero{
    padding:120px 20px 80px;
  }
  .hero h1{
    font-size:36px;
    filter:brightness(1.4) drop-shadow(2px 2px 6px rgba(0,0,0,0.6));
    line-height:1.3;
  }
  .hero p{
    font-size:16px;
    color:#f0f8ff;
    margin-top:20px;
    line-height:1.6;
  }
  .cta{
    padding:16px 40px;
    font-size:16px;
    margin-top:30px;
    width:100%;
    max-width:280px;
  }
  
  /* Features Mobile */
  .features{
    padding:60px 20px;
    gap:20px;
  }
  .card{
    width:100%;
    max-width:100%;
    background:rgba(50,50,85,0.8);
    padding:30px 25px;
    border:1.5px solid rgba(95,196,225,0.4);
  }
  .card h3{
    filter:brightness(1.3);
    font-size:20px;
    margin-bottom:12px;
  }
  .card p{
    font-size:14px;
    line-height:1.8;
  }
  
  /* Ranks Mobile */
  .ranks{
    padding:60px 20px;
  }
  .ranks h2{
    font-size:32px;
    filter:brightness(1.3);
    margin-bottom:15px;
  }
  .ranks > p{
    font-size:14px;
    line-height:1.8;
    color:#f0f8ff;
    margin-bottom:30px;
    padding:0 10px;
  }
  .rank-grid{
    gap:15px;
    margin-top:25px;
  }
  .rank-card{
    width:100%;
    max-width:100%;
    background:rgba(50,50,85,0.85);
    padding:30px 25px;
    border:1.5px solid rgba(95,196,225,0.4);
  }
  .rank-card h3{
    font-size:20px;
    filter:brightness(1.2);
  }
  .rank-card p{
    font-size:13px;
    line-height:1.8;
  }
  .rank-card .duration{
    font-size:12px;
    padding:8px 18px;
  }
  
  /* Pricing Mobile */
  .pricing{
    padding:60px 20px;
  }
  .pricing h2{
    font-size:32px;
    filter:brightness(1.3);
    margin-bottom:20px;
  }
  .price-grid{
    gap:20px;
    margin-top:30px;
  }
  .price-card{
    width:100%;
    max-width:100%;
    background:rgba(50,50,85,0.85);
    padding:35px 30px;
    border:1.5px solid rgba(95,196,225,0.4);
  }
  .price-card h3{
    filter:brightness(1.3);
    font-size:18px;
  }
  .price-card h1{
    font-size:40px;
  }
  .price-card ul{
    font-size:13px;
    line-height:1.8;
  }
  .price-card .cta{
    margin-top:20px;
    width:100%;
  }
  
  /* CTA Mobile */
  .bigcta{
    padding:80px 20px;
  }
  .bigcta h2{
    font-size:28px;
    filter:brightness(1.3);
    line-height:1.4;
    margin-bottom:25px;
  }
  
  /* Footer Mobile */
  footer{
    padding:40px 20px;
    font-size:11px;
  }
}

/* JOIN PAGE */

.join-section{
  max-width:700px;
  margin:80px auto;
  padding:60px 50px;
  text-align:center;
  background:rgba(40,40,70,0.7);
  border-radius:20px;
  border:1px solid rgba(29,176,225,0.3);
  transition:all 0.4s ease;
  animation:slideInUp 0.8s ease;
}

.join-section:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(29,176,225,0.3);
  background:rgba(50,50,90,0.8);
  border-color:rgba(95,196,225,0.5);
}

.join-section h1{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:48px;
  margin-bottom:25px;
  line-height:1.2;
  animation:bounceIn 1s ease;
}

.join-section p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:40px;
  color:#b8c0e8;
  animation:fadeIn 1.2s ease;
}

.discord-btn{
  padding:18px 50px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,#5865F2,#7289DA);
  color:white;
  font-size:18px;
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s;
  text-decoration:none;
  display:inline-block;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(88,101,242,.3);
  animation:pulse 2s infinite;
}

.discord-btn::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
    45deg,
    transparent,
    transparent 40%,
    rgba(255,255,255,0.6) 50%,
    transparent 60%,
    transparent
  );
  animation:movingLight 3s linear infinite;
}

.discord-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 15px 40px rgba(88,101,242,.5);
}

@keyframes movingLight{
  0%{
    transform:translate(-100%, -100%) rotate(45deg);
  }
  100%{
    transform:translate(100%, 100%) rotate(45deg);
  }
}

/* ABOUT PAGE */

.about-section{
  max-width:900px;
  margin:80px auto;
  padding:60px 50px;
  background:rgba(40,40,70,0.7);
  border-radius:20px;
  border:1px solid rgba(29,176,225,0.3);
  transition:all 0.4s ease;
  animation:slideInUp 0.8s ease;
}

.about-section:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(29,176,225,0.3);
  background:rgba(50,50,90,0.8);
  border-color:rgba(95,196,225,0.5);
}

.about-section h1{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:48px;
  margin-bottom:40px;
  text-align:center;
  line-height:1.2;
  animation:bounceIn 1s ease;
}

.about-section p{
  font-size:16px;
  line-height:1.9;
  margin-bottom:25px;
  color:#b8c0e8;
  opacity:0;
  animation:fadeInUp 0.8s ease forwards;
}

.about-section p:nth-child(2){animation-delay:0.2s;}
.about-section p:nth-child(3){animation-delay:0.4s;}
.about-section p:nth-child(4){animation-delay:0.6s;}
.about-section p:nth-child(5){animation-delay:0.8s;}

/* ANIMATIONS */

@keyframes slideInUp{
  0%{
    opacity:0;
    transform:translateY(50px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes bounceIn{
  0%{
    opacity:0;
    transform:scale(0.3);
  }
  50%{
    opacity:1;
    transform:scale(1.05);
  }
  70%{
    transform:scale(0.9);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes fadeIn{
  0%{
    opacity:0;
  }
  100%{
    opacity:1;
  }
}

@keyframes fadeInUp{
  0%{
    opacity:0;
    transform:translateY(20px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%, 100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
}

/* MOBILE - JOIN & ABOUT PAGES */

@media(max-width:900px){
  .join-section{
    padding:40px 25px;
    margin:100px 15px 60px;
    background:rgba(50,50,85,0.85);
    border:1.5px solid rgba(95,196,225,0.4);
  }
  .join-section h1{
    font-size:32px;
    filter:brightness(1.3);
    margin-bottom:20px;
    line-height:1.3;
  }
  .join-section p{
    font-size:14px;
    line-height:1.8;
    color:#f0f8ff;
    margin-bottom:30px;
  }
  .discord-btn{
    padding:16px 40px;
    font-size:16px;
    width:100%;
    max-width:100%;
  }
  .store-section{
    margin-top:40px;
    padding-top:35px;
  }
  .store-section h2{
    font-size:28px;
    filter:brightness(1.3);
  }
  .store-section p{
    font-size:14px;
    line-height:1.8;
    color:#f0f8ff;
  }
  .store-btn{
    padding:16px 40px;
    font-size:16px;
    width:100%;
    max-width:100%;
  }
  .about-section{
    padding:40px 25px;
    margin:100px 15px 60px;
    background:rgba(50,50,85,0.85);
    border:1.5px solid rgba(95,196,225,0.4);
  }
  .about-section h1{
    font-size:32px;
    filter:brightness(1.3);
    margin-bottom:30px;
    line-height:1.3;
  }
  .about-section p{
    font-size:14px;
    line-height:1.8;
    color:#f0f8ff;
    margin-bottom:20px;
  }
}

/* STORE SECTION */

.store-section{
  margin-top:60px;
  padding-top:50px;
  border-top:2px solid rgba(29,176,225,0.2);
}

.store-section h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#DFAC2A,#E57010);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:36px;
  margin-bottom:20px;
  animation:bounceIn 1s ease;
}

.store-section p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:30px;
  color:#b8c0e8;
}

.store-btn{
  padding:18px 50px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,#DFAC2A,#E57010);
  color:white;
  font-size:18px;
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s;
  text-decoration:none;
  display:inline-block;
  box-shadow:0 8px 20px rgba(223,172,42,.3);
  animation:pulse 2s infinite;
}

.store-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 15px 40px rgba(229,112,16,.5);
  animation:none;
}

@media(max-width:900px){
  .store-section{
    margin-top:40px;
    padding-top:35px;
  }
  .store-section h2{
    font-size:26px;
    filter:brightness(1.3);
  }
  .store-section p{
    font-size:14px;
    line-height:1.8;
    color:#f0f8ff;
    margin-bottom:25px;
  }
  .store-btn{
    padding:16px 40px;
    font-size:16px;
    width:100%;
    max-width:100%;
  }
}

/* STORE PAGE */

.store-page{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
}

.store-hero{
  text-align:center;
  padding:80px 50px;
  background:rgba(40,40,70,0.7);
  border-radius:25px;
  border:1px solid rgba(29,176,225,0.3);
  margin-bottom:60px;
  position:relative;
  overflow:hidden;
  animation:slideInUp 0.8s ease;
}

.store-hero::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(223,172,42,0.1) 0%, transparent 70%);
  animation:rotateGlow 10s linear infinite;
}

@keyframes rotateGlow{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.store-hero h1{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#DFAC2A,#E57010,#DFAC2A);
  background-size:200% auto;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:56px;
  margin-bottom:20px;
  line-height:1.2;
  animation:shimmer 3s linear infinite;
  position:relative;
  z-index:1;
}

@keyframes shimmer{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

.store-tagline{
  font-size:18px;
  line-height:1.8;
  margin-bottom:40px;
  color:#b8c0e8;
  position:relative;
  z-index:1;
}

.store-btn-large{
  padding:20px 60px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,#DFAC2A,#E57010);
  color:white;
  font-size:20px;
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s;
  text-decoration:none;
  display:inline-block;
  box-shadow:0 8px 20px rgba(223,172,42,.3);
  position:relative;
  z-index:1;
  overflow:hidden;
}

.store-btn-large::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(
    45deg,
    transparent,
    transparent 40%,
    rgba(255,255,255,0.4) 50%,
    transparent 60%,
    transparent
  );
  animation:movingLight 3s linear infinite;
}

.store-btn-large:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 15px 40px rgba(229,112,16,.6);
}

.store-categories{
  margin-bottom:80px;
}

.store-categories h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:42px;
  text-align:center;
  margin-bottom:50px;
  animation:fadeIn 1s ease;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
  margin-top:40px;
}

.category-card{
  background:rgba(40,40,70,0.7);
  padding:40px 35px;
  border-radius:20px;
  border:2px solid rgba(29,176,225,0.3);
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  animation:fadeInUp 0.6s ease forwards;
  opacity:0;
}

.category-card:nth-child(1){animation-delay:0.1s;}
.category-card:nth-child(2){animation-delay:0.2s;}
.category-card:nth-child(3){animation-delay:0.3s;}
.category-card:nth-child(4){animation-delay:0.4s;}
.category-card:nth-child(5){animation-delay:0.5s;}
.category-card:nth-child(6){animation-delay:0.6s;}

.category-card::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition:left 0.5s ease;
}

.category-card:hover::before{
  left:100%;
}

.category-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 50px rgba(29,176,225,0.4);
  background:rgba(50,50,90,0.85);
  border-color:rgba(95,196,225,0.6);
}

.category-card.currency:hover{
  border-color:rgba(223,172,42,0.7);
  box-shadow:0 20px 50px rgba(223,172,42,0.3);
}

.category-card.ranks:hover{
  border-color:rgba(95,196,225,0.7);
  box-shadow:0 20px 50px rgba(95,196,225,0.3);
}

.category-card.bundles:hover{
  border-color:rgba(229,112,16,0.7);
  box-shadow:0 20px 50px rgba(229,112,16,0.3);
}

.category-card.cosmetics:hover{
  border-color:rgba(147,51,234,0.7);
  box-shadow:0 20px 50px rgba(147,51,234,0.3);
}

.category-card.boosters:hover{
  border-color:rgba(29,140,225,0.7);
  box-shadow:0 20px 50px rgba(29,140,225,0.3);
}

.category-card.keys:hover{
  border-color:rgba(234,179,8,0.7);
  box-shadow:0 20px 50px rgba(234,179,8,0.3);
}

.category-icon{
  font-size:64px;
  margin-bottom:20px;
  animation:bounce 2s ease-in-out infinite;
  display:inline-block;
}

.category-card:hover .category-icon{
  animation:spin 0.6s ease;
}

@keyframes spin{
  0%{transform:rotate(0deg) scale(1);}
  50%{transform:rotate(180deg) scale(1.2);}
  100%{transform:rotate(360deg) scale(1);}
}

@keyframes bounce{
  0%, 100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.category-card h3{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:24px;
  margin-bottom:15px;
}

.category-card p{
  font-size:14px;
  line-height:1.8;
  color:#b8c0e8;
  margin-bottom:0;
}

.category-badge{
  position:absolute;
  top:20px;
  right:20px;
  padding:8px 16px;
  background:linear-gradient(135deg,#E57010,#DFAC2A);
  color:white;
  font-size:11px;
  font-family:'Fredoka',sans-serif;
  font-weight:700;
  border-radius:999px;
  box-shadow:0 4px 15px rgba(229,112,16,0.4);
  animation:pulse 2s ease-in-out infinite;
}

.store-benefits{
  text-align:center;
  padding:60px 50px;
  background:rgba(40,40,70,0.7);
  border-radius:25px;
  border:1px solid rgba(29,176,225,0.3);
  animation:slideInUp 1s ease;
}

.store-benefits h2{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1,#4e2b95);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:42px;
  margin-bottom:50px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:40px;
  margin-top:40px;
}

.benefit-item{
  transition:transform 0.3s ease;
}

.benefit-item:hover{
  transform:translateY(-5px);
}

.benefit-icon{
  font-size:48px;
  margin-bottom:15px;
  animation:float 3s ease-in-out infinite;
}

.benefit-item:nth-child(1) .benefit-icon{animation-delay:0s;}
.benefit-item:nth-child(2) .benefit-icon{animation-delay:0.5s;}
.benefit-item:nth-child(3) .benefit-icon{animation-delay:1s;}
.benefit-item:nth-child(4) .benefit-icon{animation-delay:1.5s;}

@keyframes float{
  0%, 100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.benefit-item h4{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(90deg,#5fc4e1,#1db0e1);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:20px;
  margin-bottom:10px;
}

.benefit-item p{
  font-size:13px;
  line-height:1.8;
  color:#b8c0e8;
}

@media(max-width:900px){
  .store-page{
    padding:0 15px;
    margin:100px auto 60px;
  }
  .store-hero{
    padding:50px 25px;
    margin-bottom:40px;
  }
  .store-hero h1{
    font-size:32px;
    line-height:1.3;
  }
  .store-tagline{
    font-size:14px;
    line-height:1.8;
    margin-bottom:30px;
  }
  .store-btn-large{
    padding:16px 40px;
    font-size:16px;
    width:100%;
    max-width:100%;
  }
  .store-categories{
    margin-bottom:60px;
  }
  .store-categories h2{
    font-size:28px;
    margin-bottom:30px;
  }
  .category-grid{
    grid-template-columns:1fr;
    gap:15px;
  }
  .category-card{
    padding:30px 25px;
  }
  .category-icon{
    font-size:48px;
    margin-bottom:15px;
  }
  .category-card h3{
    font-size:20px;
    margin-bottom:12px;
  }
  .category-card p{
    font-size:13px;
    line-height:1.8;
  }
  .category-badge{
    font-size:10px;
    padding:6px 12px;
    top:15px;
    right:15px;
  }
  .store-benefits{
    padding:40px 25px;
  }
  .store-benefits h2{
    font-size:28px;
    margin-bottom:35px;
  }
  .benefits-grid{
    grid-template-columns:1fr;
    gap:25px;
  }
  .benefit-icon{
    font-size:40px;
    margin-bottom:12px;
  }
  .benefit-item h4{
    font-size:18px;
    margin-bottom:8px;
  }
  .benefit-item p{
    font-size:12px;
    line-height:1.8;
  }
}

/* Header and Navigation Z-Index Fixes */
@media(min-width:901px){
  header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    z-index: 9999;
  }
}

.navbar {
  position: relative;
  z-index: 9999;
}

.hamburger {
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}

.hamburger span {
  height: 2px;
  width: 24px;
  background: white;
  display: block;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.35s cubic-bezier(.4,0,.2,1);
}

.hero,
.background,
canvas,
.section::before {
  pointer-events: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
