:root {
  --bg: #050505;
  --surface: #11131a;
  --surface-2: #1a1d26;
  --text: #ffffff;
  --muted: #a0a0b0;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #ff3ea5;
  --primary-dark: #d42b85;
  --primary-soft: rgba(255, 62, 165, 0.12);
  --success-bg: rgba(154, 255, 177, 0.1);
  --success-text: #9affb1;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.3);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at top left, rgba(255, 62, 165, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0b0f 34%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 62, 165, 0.3));
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-name span {
  color: var(--primary);
}

.season {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

.nav-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--success-text);
  background: var(--success-bg);
  border: 1px solid rgba(154, 255, 177, 0.2);
}

.header-actions {
  display: flex;
  gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  padding: 15px 24px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6ec7 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 62, 165, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(255, 62, 165, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
}

/* HERO */
.hero {
  padding: 60px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 62, 165, 0.2);
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ff8fdc, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  max-width: 700px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-ip-box {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 6px 6px 16px;
  border-radius: 16px;
}

.ip-text {
  font-family: monospace;
  font-weight: 600;
  color: var(--primary);
  margin-right: 12px;
}

.btn-copy {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-copy:hover {
  opacity: 0.9;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.hero-points li {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card.large {
  padding: 12px;
}

.hero-video-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WIDE BANNER */
.wide-banner {
  padding: 40px 0;
}

.banner-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
}

.banner-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.banner-copy h2 {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.banner-copy p {
  color: var(--muted);
  font-size: 18px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #0a0b0f, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

/* GRIDS */
.feature-grid, .gallery-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 62, 165, 0.3);
}

.icon-box {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-soft);
  font-size: 28px;
  margin-bottom: 24px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--muted);
}

/* GALLERY */
.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: var(--muted);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* DOWNLOAD */
.download-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.requirement {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-weight: 600;
}

.download-card {
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.download-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.mini-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.version {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.download-preview-banner {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.download-preview-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* JOIN SECTION */
.join-section {
  text-align: center;
}

.join-card {
  background: linear-gradient(135deg, #11131a 0%, #050505 100%);
  border: 1px solid var(--line);
  padding: 80px 40px;
  border-radius: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.join-card h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.join-card p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 32px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: #5865F2;
  color: #fff;
  border-radius: 20px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.2s;
}

.discord-btn:hover {
  transform: scale(1.05);
  background: #4752c4;
}

/* FOOTER */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.site-footer p {
  color: var(--muted);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.legal-text {
  font-size: 14px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav { display: none; }
  .hero-grid, .download-layout, .feature-grid, .banner-card {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner p { margin: 0 auto 20px; }
  .footer-links { gap: 30px; }
}

@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .join-card h2 { font-size: 32px; }
}

/* NOTIFICATIONS */
.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.notification {
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  animation: slideIn 0.3s ease forwards;
  pointer-events: auto;
}

.notification.success {
  border-left: 4px solid #4ade80;
}

.notification.info {
  border-left: 4px solid var(--primary);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
