@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Roboto:wght@400;500;700&display=swap");

:root {
      --dusty-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f5f5;
      --border-gray: #e5e5e5;
      --text-dark: #2a2a2a;
      --text-light: #666666;
    }

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

    html, body {
      height: 100%;
      background-color: #ffffff;
      color: var(--text-dark);
    }

    body {
      font-family: 'Roboto', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      font-size: 16px;
    }

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

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--dark-brown);
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 3.5rem;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.5rem;
      margin-top: 0;
      margin-bottom: 0.75rem;
    }

    h3 {
      font-size: 1.5rem;
    }

    p {
      color: var(--text-light);
      margin-bottom: 1rem;
      font-size: 1rem;
      line-height: 1.7;
    }

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

    a:hover {
      color: var(--dark-brown);
    }

    /* Header & Navigation */
    header {
      background-color: #ffffff;
      border-bottom: 1px solid var(--border-gray);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-brand h1 {
      font-size: 1.5rem;
      margin: 0;
      color: var(--dark-brown);
    }

    .nav-brand p {
      font-size: 0.75rem;
      color: var(--text-light);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-dark);
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--dusty-rose);
    }

    .nav-links a.active {
      color: var(--dusty-rose);
      border-bottom: 2px solid var(--dusty-rose);
      padding-bottom: 0.25rem;
    }

    /* Main Content */
    main {
      flex: 1;
    }

    section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Hero Compact */
    #hero_compact {
      padding: 5rem 2rem;
      text-align: center;
      background-color: #ffffff;
    }

    #hero_compact h1 {
      margin-bottom: 1rem;
    }

    #hero_compact .subheading {
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-block;
      padding: 0.85rem 2rem;
      background-color: var(--dusty-rose);
      color: #ffffff;
      font-weight: 600;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: none;
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: var(--dark-brown);
      color: #ffffff;
    }

    /* Experience Intro */
    #experience_intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    #experience_intro .content {
      padding-right: 2rem;
    }

    #experience_intro .content p {
      font-size: 1.05rem;
      line-height: 1.8;
    }

    #experience_intro .image-container {
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--light-gray);
    }

    #experience_intro .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Who Plays */
    #who_plays {
      background-color: var(--cream);
      text-align: center;
    }

    #who_plays h2 {
      color: var(--dark-brown);
    }

    #who_plays .subheading {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto 2rem;
    }

    #who_plays .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature-card {
      background-color: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      border-left: 4px solid var(--dusty-rose);
    }

    .feature-card h3 {
      color: var(--dark-brown);
      margin-bottom: 1rem;
    }

    .feature-card p {
      color: var(--text-light);
      font-size: 0.95rem;
    }

    /* Gameplay Journey */
    #gameplay_journey {
      background-color: #ffffff;
    }

    #gameplay_journey .journey-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .journey-step {
      padding: 2rem;
      border: 1px solid var(--border-gray);
      border-radius: 8px;
      text-align: center;
    }

    .journey-step .step-number {
      display: inline-block;
      width: 50px;
      height: 50px;
      background-color: var(--dusty-rose);
      color: #ffffff;
      border-radius: 50%;
      line-height: 50px;
      text-align: center;
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .journey-step h3 {
      color: var(--dark-brown);
      margin-bottom: 0.75rem;
    }

    .journey-step p {
      color: var(--text-light);
      font-size: 0.95rem;
    }

    /* CTA Footer */
    #cta_footer_index {
      background-color: var(--cream);
      text-align: center;
      padding: 5rem 2rem;
    }

    #cta_footer_index h2 {
      color: var(--dark-brown);
      margin-bottom: 1rem;
    }

    #cta_footer_index .subheading {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    #cta_footer_index .cta-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-secondary {
      display: inline-block;
      padding: 0.85rem 2rem;
      background-color: transparent;
      color: var(--dusty-rose);
      font-weight: 600;
      border: 2px solid var(--dusty-rose);
      border-radius: 4px;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .cta-secondary:hover {
      background-color: var(--dusty-rose);
      color: #ffffff;
    }

    /* Footer */
    footer {
      background-color: var(--dark-brown);
      color: #ffffff;
      padding: 3rem 2rem 1rem;
      margin-top: 4rem;
    }

    footer .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h3 {
      color: #ffffff;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .footer-column p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.8);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--dusty-rose);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      header nav {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }

      .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
      }

      section {
        padding: 2.5rem 1.5rem;
      }

      #hero_compact {
        padding: 3rem 1.5rem;
      }

      #experience_intro {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      #experience_intro .content {
        padding-right: 0;
      }

      #experience_intro .image-container {
        height: 300px;
      }

      #cta_footer_index .cta-group {
        flex-direction: column;
        align-items: center;
      }

      .cta-button, .cta-secondary {
        width: 100%;
        max-width: 300px;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
