    :root {
      --gold: #c9a227;
      --gold-light: #f0c040;
      --gold-dim: #7a5f10;
      --bg-dark: #0a0806;
      --bg-mid: #110e08;
      --bg-card: #16120a;
      --text: #e8dcc8;
      --text-muted: #9a8a6a;
      --accent: #d4421a;
      --silver: #b8c0cc;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg-dark);
      color: var(--text);
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 18px;
      overflow-x: hidden;
    }

    /* ===== NOISE OVERLAY ===== */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.35;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: linear-gradient(to bottom, rgba(10,8,6,0.97) 0%, rgba(10,8,6,0.0) 100%);
      border-bottom: 1px solid rgba(201,162,39,0.12);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-logo img {
      height: 44px; filter: drop-shadow(0 0 8px rgba(201,162,39,0.5));
    }

    .nav-links {
      display: flex; gap: 32px; list-style: none;
    }
    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }

    .nav-cta {
      display: flex; gap: 12px;
    }
    .btn {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 10px 24px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-outline {
      background: transparent;
      border: 1px solid var(--gold-dim);
      color: var(--gold);
    }
    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
      box-shadow: 0 0 16px rgba(201,162,39,0.2);
    }
    .btn-gold {
      background: linear-gradient(135deg, #c9a227 0%, #f0c040 50%, #b88e18 100%);
      color: #1a1200;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .btn-gold:hover {
      box-shadow: 0 0 32px rgba(240,192,64,0.5);
      transform: translateY(-1px);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,162,39,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212,66,26,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #0a0806 0%, #130f07 40%, #0f0b05 100%);
    }

    /* Decorative rune circles */
    .rune-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(201,162,39,0.1);
      animation: spinSlow linear infinite;
    }
    .rune-ring-1 { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 80s; }
    .rune-ring-2 { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 60s; animation-direction: reverse; border-color: rgba(201,162,39,0.07); }
    .rune-ring-3 { width: 340px; height: 340px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 40s; border-color: rgba(240,192,64,0.12); }

    @keyframes spinSlow {
      from { transform: translate(-50%,-50%) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg); }
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 120px 24px 80px;
      max-width: 900px;
    }

    .hero-logo {
      width: min(480px, 80vw);
      filter: drop-shadow(0 0 40px rgba(201,162,39,0.4)) drop-shadow(0 0 80px rgba(201,162,39,0.2));
      animation: logoGlow 4s ease-in-out infinite alternate;
      margin-bottom: 32px;
    }
    @keyframes logoGlow {
      from { filter: drop-shadow(0 0 30px rgba(201,162,39,0.35)) drop-shadow(0 0 60px rgba(201,162,39,0.15)); }
      to   { filter: drop-shadow(0 0 50px rgba(201,162,39,0.6))  drop-shadow(0 0 100px rgba(201,162,39,0.3)); }
    }

    .hero-tagline {
      font-family: 'Cinzel', serif;
      font-size: clamp(13px, 2vw, 15px);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(32px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.1;
      background: linear-gradient(180deg, #f5e8a8 0%, #c9a227 50%, #7a5f10 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 24px;
      text-shadow: none;
    }

    .hero-desc {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto 40px;
      font-style: italic;
    }

    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 24px;
      justify-content: center;
      margin-bottom: 48px;
    }
    .badge {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      text-transform: uppercase;
    }
    .badge-icon {
      width: 20px; height: 20px;
      color: var(--gold);
    }

    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
    }

    /* ===== DIVIDER ===== */
    .ornate-divider {
      display: flex; align-items: center; gap: 16px;
      padding: 0 48px;
      margin: 64px 0 40px;
    }
    .ornate-divider::before, .ornate-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    }
    .ornate-diamond {
      width: 10px; height: 10px;
      background: var(--gold);
      transform: rotate(45deg);
      box-shadow: 0 0 12px var(--gold);
    }

    /* ===== SECTION TITLE ===== */
    .section { padding: 80px 48px; max-width: 1300px; margin: 0 auto; }

    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::after {
      content: '';
      flex: 0 0 40px;
      height: 1px;
      background: var(--gold-dim);
    }

    .section-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 700;
      background: linear-gradient(135deg, #f0d878, #c9a227);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 48px;
      line-height: 1.2;
    }

    /* ===== SERVER CARDS ===== */
    .servers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 2px;
    }

    .server-card {
      position: relative;
      background: var(--bg-card);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(201,162,39,0.08);
    }
    .server-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(201,162,39,0.15);
      border-color: rgba(201,162,39,0.3);
      z-index: 2;
    }

    .card-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(201,162,39,0.04) 0%, transparent 60%);
    }

    .card-corner {
      position: absolute; top: 0; right: 0;
      width: 60px; height: 60px;
      overflow: hidden;
    }
    .card-corner::after {
      content: '';
      position: absolute; top: -1px; right: -1px;
      width: 0; height: 0;
      border-style: solid;
      border-width: 0 42px 42px 0;
      border-color: transparent rgba(201,162,39,0.25) transparent transparent;
    }

    .card-inner { position: relative; padding: 28px; }

    .card-header {
      display: flex; justify-content: space-between; align-items: flex-start;
      margin-bottom: 16px;
    }

    .card-chronicle {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,162,39,0.1);
      border: 1px solid rgba(201,162,39,0.2);
      padding: 3px 10px;
      clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    }

    .card-status {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      padding: 3px 10px;
    }
    .status-online { color: #4caf50; background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.25); }
    .status-soon { color: var(--gold); background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25); }

    .card-name {
      font-family: 'Cinzel Decorative', serif;
      font-size: 22px;
      font-weight: 700;
      color: #f0d878;
      margin-bottom: 8px;
    }

    .card-rate {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .card-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
      font-style: italic;
    }

    .card-features {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 24px;
    }
    .feature-tag {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--silver);
      background: rgba(184,192,204,0.06);
      border: 1px solid rgba(184,192,204,0.15);
      padding: 3px 10px;
    }

    .card-footer {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 20px;
      border-top: 1px solid rgba(201,162,39,0.1);
    }

    .online-count {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--text-muted);
    }
    .dot-online {
      width: 6px; height: 6px; border-radius: 50%;
      background: #4caf50;
      box-shadow: 0 0 8px #4caf50;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* ===== FEATURES SECTION ===== */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(22,18,10,0.9) 0%, rgba(16,12,6,0.95) 100%);
      border: 1px solid rgba(201,162,39,0.1);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .feature-card:hover { border-color: rgba(201,162,39,0.35); }
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    }

    .feature-icon {
      font-size: 36px; margin-bottom: 16px;
      filter: drop-shadow(0 0 8px rgba(201,162,39,0.4));
    }
    .feature-name {
      font-family: 'Cinzel', serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .feature-text {
      font-size: 15px; color: var(--text-muted); line-height: 1.65;
    }

    /* ===== STATS BANNER ===== */
    .stats-banner {
      background: linear-gradient(135deg, rgba(201,162,39,0.06) 0%, rgba(16,12,6,0.95) 50%, rgba(212,66,26,0.04) 100%);
      border-top: 1px solid rgba(201,162,39,0.15);
      border-bottom: 1px solid rgba(201,162,39,0.15);
      padding: 56px 48px;
    }
    .stats-inner {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 40px;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      background: linear-gradient(180deg, #f5e8a8, #c9a227);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ===== FOOTER ===== */
    footer {
      background: rgba(6,5,3,0.98);
      border-top: 1px solid rgba(201,162,39,0.12);
      padding: 56px 48px 32px;
    }
    .footer-inner {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-logo img { height: 52px; margin-bottom: 16px; filter: drop-shadow(0 0 8px rgba(201,162,39,0.3)); }
    .footer-tagline { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
    .footer-col-title {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a {
      font-size: 15px; color: var(--text-muted); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid rgba(201,162,39,0.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-copy {
      font-size: 13px; color: var(--text-muted);
      font-family: 'Cinzel', serif; letter-spacing: 0.05em;
    }
    .footer-social { display: flex; gap: 16px; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(201,162,39,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); text-decoration: none; font-size: 15px;
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .section { padding: 60px 24px; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .stats-banner { padding: 40px 24px; }
    }
    @media (max-width: 600px) {
      .footer-inner { grid-template-columns: 1fr; }
      footer { padding: 40px 24px 24px; }
    }

.showcase { max-width: 1300px; margin: 0 auto; padding: 80px 48px; }
    .showcase-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; margin-bottom: 2px; min-height: 320px;
      overflow: hidden; border: 1px solid rgba(201,162,39,0.08);
    }
    .showcase-row.reverse { direction: rtl; }
    .showcase-row.reverse > * { direction: ltr; }
    .showcase-img { position: relative; overflow: hidden; min-height: 280px; background: linear-gradient(135deg,#0d0a05,#1a1408); }
    .showcase-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      display: block; transition: transform 0.6s ease;
      filter: brightness(0.75) saturate(1.15);
    }
    .showcase-row:hover .showcase-img img { transform: scale(1.04); }
    .showcase-img::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent 55%, rgba(10,8,6,0.75) 100%);
    }
    .showcase-row.reverse .showcase-img::after {
      background: linear-gradient(270deg, transparent 55%, rgba(10,8,6,0.75) 100%);
    }
    .showcase-text {
      background: var(--bg-card); padding: 48px 52px;
      display: flex; flex-direction: column; justify-content: center; position: relative;
    }
    .showcase-text::before {
      content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
    }
    .showcase-row.reverse .showcase-text::before { left: auto; right: 0; }
    .showcase-num {
      font-family: "Cinzel Decorative", serif; font-size: 72px; font-weight: 900;
      line-height: 1; color: rgba(201,162,39,0.06);
      position: absolute; top: 20px; right: 28px; user-select: none;
    }
    .showcase-tag {
      font-family: "Cinzel", serif; font-size: 10px;
      letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .showcase-title {
      font-family: "Cinzel", serif; font-size: clamp(18px, 2.2vw, 26px);
      font-weight: 700; color: #f0dea0; line-height: 1.25; margin-bottom: 18px;
    }
    .showcase-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 420px; }
    .showcase-sep { width: 40px; height: 1px; background: var(--gold-dim); margin: 18px 0; }
    @media (max-width: 800px) {
      .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; direction: ltr; }
      .showcase-img { min-height: 200px; }
      .showcase-img::after { background: linear-gradient(180deg, transparent 50%, rgba(10,8,6,0.85) 100%) !important; }
      .showcase-text { padding: 32px 28px; }
      .showcase { padding: 60px 24px; }
    }