/* === BASE STYLES === */:root {
      --primary: #D4AF37;
      --primary-dark: #B8941F;
      --secondary: #2C1810;
      --accent: #FF6B35;
      --dark: #1A0F0A;
      --light: #F8F5F0;
      --text: #2C1810;
      --text-light: #6B5D52;
      --border: rgba(212, 175, 55, 0.2);
      --shadow: rgba(26, 15, 10, 0.15);
      --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
      --gradient-dark: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
      --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8F6B 100%);
    }

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

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      color: var(--text);
      background: var(--light);
      line-height: 1.7;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      color: var(--secondary);
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(1.75rem, 4vw, 3rem);
      letter-spacing: -0.01em;
    }

    h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
    }

    h4 {
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    p {
      margin-bottom: 1.5rem;
      color: var(--text);
    }

    .bg-dark,
    .bg-dark .card-title,
    .bg-dark .card-text,
    .card.bg-dark,
    .card.bg-dark .card-title,
    .card.bg-dark .card-text {
      color: #fff;
    }

    .bg-dark p,
    .card.bg-dark .card-text {
      color: rgba(248, 245, 240, 0.9);
    }

    a {
      color: var(--primary-dark);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--accent);
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      width: auto;
    }

    .btn-primary {
      display: inline-block;
      padding: 18px 40px;
      background: var(--gradient-primary);
      color: var(--dark);
      font-weight: 700;
      font-size: 1.125rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
      color: var(--dark);
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .cta-button {
      text-decoration: none;
    }

    section {
      padding: 100px 0;
      position: relative;
    }

    .overview.stats-grid .container > p {
      text-align: left;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    section:nth-child(even) {
      background: #FFF;
    }

    .feature-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 2rem 0;
      background: #FFF;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px var(--shadow);
    }

    .feature-table thead {
      background: var(--gradient-dark);
      color: var(--primary);
    }

    .feature-table th,
    .feature-table td {
      padding: 20px 24px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .feature-table th {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.875rem;
    }

    .feature-table tbody tr {
      transition: background 0.3s ease;
    }

    .feature-table tbody tr:hover {
      background: rgba(212, 175, 55, 0.05);
    }

    .feature-table tbody tr:last-child td {
      border-bottom: none;
    }

    .checklist {
      list-style: none;
      padding-left: 0;
      margin: 2rem 0;
    }

    .checklist li {
      padding: 12px 0 12px 40px;
      position: relative;
      font-size: 1.0625rem;
      color: var(--text);
    }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--dark);
      font-size: 0.875rem;
    }

    .feature-block,
    .highlight-box,
    .info-card {
      background: #FFF;
      padding: 40px;
      border-radius: 20px;
      margin: 2rem 0;
      box-shadow: 0 8px 32px var(--shadow);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .feature-block:hover,
    .highlight-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(26, 15, 10, 0.2);
    }

    .info-card {
      background: var(--gradient-dark);
      color: var(--light);
      border-left: 6px solid var(--primary);
    }

    .info-card p,
    .info-card ul {
      color: var(--light);
    }

    .info-card ul {
      list-style: none;
      padding-left: 0;
    }

    .info-card ul li {
      padding: 8px 0 8px 32px;
      position: relative;
    }

    .info-card ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
    }

    .game-card {
      background: #FFF;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px var(--shadow);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .game-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 0;
      transition: transform 0.6s ease;
    }

    .game-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 60px rgba(26, 15, 10, 0.25);
    }

    .game-card:hover img {
      transform: scale(1.1);
    }

    .game-card h3,
    .game-card h4,
    .game-card p {
      padding: 0 28px;
    }

    .game-card h3,
    .game-card h4 {
      margin-top: 24px;
    }

    .game-card p {
      padding-bottom: 28px;
      flex-grow: 1;
    }

    .accordion-item {
      background: #FFF;
      border-radius: 16px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 4px 16px var(--shadow);
      transition: box-shadow 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: 0 8px 24px rgba(26, 15, 10, 0.2);
    }

    .accordion-header {
      padding: 28px 32px;
      cursor: pointer;
      position: relative;
      user-select: none;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 0;
      transition: background 0.3s ease;
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 32px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--dark);
      transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-header {
      background: rgba(212, 175, 55, 0.08);
    }

    .accordion-item.active .accordion-header::after {
      content: '−';
      transform: translateY(-50%) rotate(180deg);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      display: none;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .accordion-body p,
    .accordion-body ul {
      padding: 0 32px 28px;
      margin-bottom: 0;
    }

    .accordion-item.active .accordion-body {
      max-height: 1000px;
      display: block;
    }

    /* === LAYOUT STYLES === */
    .site-header {
      background: var(--gradient-dark);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .logo-link img {
      max-height: 48px;
      width: auto;
    }

    .main-nav {
      flex-grow: 1;
      display: flex;
      justify-content: center;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      gap: 6px;
    }

    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 40px;
      margin: 0;
      padding: 0;
    }

    .nav-list a {
      color: var(--light);
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

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

    .site-header .cta-button {
      flex-shrink: 0;
    }

    .site-footer {
      background: var(--gradient-dark);
      color: var(--light);
      padding: 60px 0 30px;
      margin-top: 100px;
    }

    .footer-nav ul {
      display: flex;
      list-style: none;
      gap: 32px;
      justify-content: center;
      margin-bottom: 32px;
      padding: 0;
      flex-wrap: wrap;
    }

    .footer-nav a {
      color: var(--light);
      font-weight: 500;
      transition: color 0.3s ease;
    }

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

    .footer-info {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      color: var(--light);
    }

    .footer-info p {
      color: var(--light);
      margin: 0;
    }

@media (max-width: 768px) {
      .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
      }

      .site-header .container {
        flex-wrap: wrap;
        position: relative;
        padding: 0 16px;
      }

      .hamburger {
        display: flex;
        order: 2;
        position: absolute;
        top: 16px;
        right: 20px;
        margin-left: 0;
      }

      .logo {
        order: 1;
        flex: 1 1 auto;
      }

      .site-header .cta-button {
        order: 3;
        width: 100%;
        margin: 12px 0 0;
        text-align: center;
        display: block;
      }

      .main-nav {
        order: 4;
        width: 100%;
        margin-top: 20px;
      }

      .nav-list {
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .nav-list.active {
        max-height: 500px;
      }

      .nav-list li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      }

      .nav-list a {
        display: block;
        padding: 16px 0;
      }

      section {
        padding: 60px 0;
      }

      .hero-section {
        padding: 20px 0 60px;
        margin-top: 0;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.75rem;
      }

      .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
      }

      .feature-table th,
      .feature-table td {
        padding: 16px;
        font-size: 0.9375rem;
      }

      .feature-block,
      .highlight-box,
      .info-card {
        padding: 28px;
      }

      .game-card h3,
      .game-card h4,
      .game-card p {
        padding: 0 20px;
      }

      .accordion-header {
        padding: 20px 24px;
        font-size: 1.125rem;
      }

      .accordion-header::after {
        right: 24px;
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
      }

      .accordion-body p,
      .accordion-body ul {
        padding: 0 24px 20px;
      }

      .footer-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .cta-section {
        padding: 80px 0;
      }

      .cards-grid-3 .container {
        grid-template-columns: 1fr;
      }
    }