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

  :root {
    --accent1: #ff6e6e;
    --accent2: #ffc67b;
    --bg-dark: #200606;
  }

  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }

  body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: #baa1a4;
    color-scheme: dark;
  }

  .ng-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    background: rgba(32,6,6,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .ng-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #ff6e6e;
    font-weight: 700;
    text-decoration: none;
  }

  .ng-nav-links { display: flex; gap: 28px; }
  .ng-nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    cursor: pointer;
  }
  .ng-nav-links a:hover { color: #ff6e6e; }

  .ng-hero {
    padding: 80px 32px 60px;
    text-align: center;
    background:
      radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255,60,60,0.12), transparent),
      radial-gradient(ellipse 60% 50% at 80% 80%, rgba(120,0,0,0.18), transparent);
  }

  .ng-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,110,110,0.1);
    border: 1px solid rgba(255,110,110,0.2);
    font-size: 13px;
    color: #ff9a9a;
    margin-bottom: 20px;
  }

  .ng-hero h1 {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 10px;
    color: white;
    letter-spacing: -1px;
  }

  .ng-hero h1 span {
    background: linear-gradient(90deg, #ff6e6e, #c17, #ffc67b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .ng-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 16px auto 32px;
    max-width: 480px;
    line-height: 1.6;
  }

  .ng-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  .ng-btn {
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    border: none;
  }
  .ng-btn:hover { opacity: 0.85; transform: translateY(-1px); }
  .ng-btn.primary { background: linear-gradient(90deg, #ff6e6e, #ff3a6e); color: white; }
  .ng-btn.ghost { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.1); }

  .ng-section { padding: 48px 32px; }

  .ng-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 24px;
  }

  .ng-game-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .ng-game-card:hover { border-color: rgba(255,110,110,0.3); }

  .ng-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
  }

  .ng-game-header h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: white;
  }

  .ng-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,60,60,0.15);
    color: #ff8a8a;
    border: 1px solid rgba(255,60,60,0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
  }

  .ng-countdown {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    min-width: 110px;
    text-align: center;
  }

  .ng-badge--live {
    background: rgba(60,255,120,0.15);
    color: #6fffa0;
    border-color: rgba(60,255,120,0.3);
  }
  .ng-game-preview {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 4px;
  }

  .ng-arrow {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: transform 0.3s;
  }

  .ng-game-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }

  .ng-game-card.open .ng-game-body { max-height: 600px; }
  .ng-game-card.open .ng-arrow { transform: rotate(180deg); }

  .ng-game-inner {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .ng-placeholder-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
  }

  .ng-game-inner img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
  }

  .ng-img-placeholder {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 13px;
  }

  .ng-video-placeholder {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    gap: 8px;
  }

  .ng-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .ng-social-card {
    flex: 1;
    min-width: 140px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .ng-social-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,110,110,0.3);
  }

  .ng-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ng-social-icon.instagram { background: rgba(225,48,108,0.2); }
  .ng-social-icon.facebook { background: rgba(24,119,242,0.2); }

  .ng-social-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
  }
  .ng-social-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
  }

  .ng-footer {
    padding: 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
  }

  .ng-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0 32px;
  }

  .ng-scroll-hint {
    text-align: center;
    padding: 16px;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
