.btn,
.hero-badge,
.logo {
  font-weight: 700
}

.f-info p,
body {
  line-height: 1.6
}

.btn,
.status-bar {
  white-space: nowrap
}

.f-card-premium,
.faq-answer,
.faq-item,
.hero,
.status-bar,
.sticky-box {
  overflow: hidden
}

.hero,
.modern-title,
.section-header,
footer {
  text-align: center
}

.btn,
.logo,
.nav-links a,
.social-item {
  text-decoration: none
}

:root {
  --primary: #ff8fb8;
  --primary-glow: rgba(255, 143, 184, 0.35);
  --secondary: #ffd1e6;
  --bg-dark: #050510;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --font-header: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1)
}

.btn,
.navbar,
.server-ip-box {
  transition: var(--transition)
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px
}

.section {
  padding: 120px 0
}

.section-header {
  margin-bottom: 60px
}

.hero-badge,
.hero-title {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: var(--font-header)
}

.section-header h2 {
  font-family: var(--font-header);
  font-size: 3.5rem;
  margin-bottom: 15px
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(5, 5, 16, .8), transparent)
}

.navbar.scrolled {
  background: rgba(5, 5, 16, .9);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.nav-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center
}

.hero,
.logo,
.nav-links {
  display: flex
}

.logo {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: #fff;
  align-items: center;
  gap: 8px
}

.hero-badge,
.logo span {
  color: var(--primary)
}

.nav-links {
  list-style: none;
  gap: 30px;
  justify-self: center
}

.nav-links a {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  font-size: .95rem;
  transition: color .3s
}

.nav-links a:hover {
  color: #fff
}

.nav-status {
  justify-self: end
}

.btn,
.hero {
  align-items: center
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  justify-content: center;
  padding-top: 80px
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0
}

.hero-bg {
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(.4);
  transform: scale(1.05)
}

.hero-overlay {
  background: radial-gradient(circle at center, transparent, var(--bg-dark) 90%);
  z-index: -1
}

.hero-content {
  max-width: 900px;
  z-index: 10;
  padding: 0 20px
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 162, 255, .1);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  font-size: .9rem
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.1
}

.hero-title span {
  display: block;
  color: #fff;
  -webkit-text-stroke: 1.5px var(--primary);
  filter: drop-shadow(0 0 20px var(--primary-glow))
}

.hero-p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 45px
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap
}

.btn {
  padding: 16px 40px;
  border-radius: 15px;
  font-family: var(--font-header);
  font-size: 1.15rem;
  border: none;
  display: flex;
  gap: 10px;
  cursor: pointer
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px var(--primary-glow)
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--primary-glow)
}

.btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px)
}

.f-card-premium:hover,
.server-ip-box:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--primary)
}

.server-ip-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding: 12px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 2px dashed rgba(255, 255, 255, .2);
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center
}

.server-ip-box h4 {
  font-family: var(--font-header);
  font-size: 1.4rem;
  color: var(--primary)
}

.parallax-container {
  height: 500vh;
  position: relative;
  background: var(--bg-dark)
}

.sticky-box {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8vh;
  z-index: 10;
  background: #050510
}

.modern-title {
  font-family: var(--font-header);
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 40px;
  padding: 0 15px
}

.modern-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 30px var(--primary-glow)
}

.features-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px
}

.f-card-premium,
.f-icon {
  display: flex;
  transition: .5s
}

.f-card-premium {
  position: relative;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 40px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity
}

#sakura-canvas,
.f-glow {
  position: absolute;
  pointer-events: none
}

.f-glow,
.f-icon,
.status-bar {
  background: var(--primary)
}

.f-card-premium:hover {
  transform: translateY(-10px) scale(1.02)
}

.f-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px var(--primary-glow);
  flex-shrink: 0
}

.f-card-premium:hover .f-icon {
  transform: rotateY(360deg);
  background: #fff;
  color: var(--primary)
}

.f-info h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff
}

.f-info p,
.faq-answer p {
  color: var(--text-muted)
}

.f-info p {
  font-size: 1rem
}

.f-glow {
  width: 100px;
  height: 100px;
  filter: blur(80px);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0;
  transition: opacity .5s
}

.f-card-premium:hover .f-glow {
  opacity: .4
}

@supports (animation-timeline:scroll()) {
  .f-card-premium {
    animation: linear both cardAppear;
    animation-timeline: scroll(root)
  }
  .f-card-premium:first-child {
    animation-range: 20% 25%
  }
  .f-card-premium:nth-child(2) {
    animation-range: 25% 30%
  }
  .f-card-premium:nth-child(3) {
    animation-range: 30% 35%
  }
  .f-card-premium:nth-child(4) {
    animation-range: 35% 40%
  }
  .f-card-premium:nth-child(5) {
    animation-range: 40% 45%
  }
  .f-card-premium:nth-child(6) {
    animation-range: 45% 50%
  }
  @keyframes cardAppear {
    from {
      opacity: 0;
      transform: translateY(40px)
    }
    to {
      opacity: 1;
      transform: translateY(0)
    }
  }
  .modern-title {
    animation: linear both titleReveal;
    animation-timeline: scroll(root);
    animation-range: 2% 12%
  }
  @keyframes titleReveal {
    from {
      opacity: 0;
      transform: translateY(-60px)
    }
    to {
      opacity: 1;
      transform: translateY(0)
    }
  }
}

.status-bar {
  color: #fff;
  padding: 20px 0;
  margin: 80px 0;
  transform: rotate(-1deg)
}

.status-scroll {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 800;
  animation: 30s linear infinite marquee
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 20px;
  margin-bottom: 15px;
  transition: var(--transition)
}

.faq-item:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, .04)
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: 0 0;
  border: none;
  color: #fff;
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer
}

.faq-question i {
  font-size: .9rem;
  transition: transform .4s;
  flex-shrink: 0
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary)
}

.faq-answer {
  max-height: 0;
  background: rgba(0, 0, 0, .2);
  transition: max-height .4s cubic-bezier(0, 1, 0, 1)
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height .4s cubic-bezier(1, 0, 1, 0)
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 1rem;
  line-height: 1.8
}

footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.social-item {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: background .3s, transform .3s
}

.social-item:hover {
  background: var(--primary);
  transform: translateY(-5px)
}

.footer-copy {
  font-size: .85rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 600
}

#sakura-canvas {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

@media (max-width:992px) {
  .nav-content {
    display: flex;
    justify-content: space-between
  }
  .nav-links {
    display: none
  }
  .hero-title {
    font-size: 3.5rem
  }
  .features-premium-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .section {
    padding: 90px 0
  }
}

@media (max-width:768px) {
  .container {
    padding: 0 18px
  }
  .section {
    padding: 70px 0
  }
  .section-header h2 {
    font-size: 2.2rem
  }
  .f-info h3,
  .logo {
    font-size: 1.4rem
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 0 60px
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem)
  }
  .btn,
  .hero-p {
    font-size: 1rem
  }
  .hero-btns {
    flex-direction: column;
    align-items: center
  }
  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 30px
  }
  .server-ip-box {
    padding: 12px 20px;
    gap: 12px
  }
  .server-ip-box h4,
  .status-scroll {
    font-size: 1.1rem
  }
  .features-premium-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 5px
  }
  .f-card-premium {
    padding: 28px 24px;
    border-radius: 28px
  }
  .f-card-premium:hover {
    transform: translateY(-5px)
  }
  .modern-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-bottom: 25px
  }
  .status-bar {
    margin: 50px 0
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem
  }
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: .95rem
  }
  .parallax-container {
    height: 400vh
  }
  .sticky-box {
    padding-top: 5vh
  }
  footer {
    padding: 60px 0 30px
  }
}

@media (max-width:480px) {
  .hero-badge {
    font-size: .75rem;
    padding: 6px 14px
  }
  .hero-title {
    font-size: clamp(2rem, 11vw, 2.8rem)
  }
  .hero-title span {
    -webkit-text-stroke: 1px var(--primary)
  }
  .f-card-premium {
    padding: 22px 18px;
    border-radius: 22px
  }
  .f-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }
  .section-header h2 {
    font-size: 1.9rem
  }
  .nav-status {
    display: none
  }
}
