:root {
        --primary-color: #d4920a;
        --secondary-color: #b5711c;
        --bg-dark: #0c0c0e;
        --bg-surface: #161618;
        --border-color: #2a2720;
        --text-primary: #f0e8d5;
        --text-secondary: #9a8f7a;
        --gradient-gold: linear-gradient(135deg, #d4920a 0%, #f5c842 100%);

        --font-display: "Cinzel Decorative", serif;
        --font-body: "DM Sans", sans-serif;
        --font-accent: "Bebas Neue", sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        background-color: var(--bg-dark);
        color: var(--text-primary);
        font-family: var(--font-body);
        line-height: 1.6;
        overflow-x: hidden;
        scroll-behavior: smooth;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h2 {
        border-left: 3px solid var(--primary-color);
        padding-left: 1rem;
        text-transform: uppercase;
        margin-bottom: 2rem;
        font-size: 32px;
        font-family: var(--font-body);
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-family: var(--font-body);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
      }
      .btn-type-a {
        background-color: var(--primary-color);
        color: #000;
        border: none;
      }
      .btn-type-a:hover {
        filter: brightness(1.1);
      }
      .btn-type-b {
        background-color: transparent;
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
      }
      .btn-type-b:hover {
        background-color: rgba(212, 146, 10, 0.12);
      }

      /* Navbar */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        z-index: 1000;
        background-color: rgba(12, 12, 14, 0.5);
        backdrop-filter: blur(10px);
        transition: background-color 0.3s ease;
      }
      .navbar.scrolled {
        background-color: var(--bg-dark);
      }
      .nav-brand img {
        height: 40px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        gap: 2rem;
      }
      .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
      }
      .nav-links a:hover {
        color: var(--primary-color);
      }
      .nav-actions {
        display: flex;
        gap: 1rem;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
      }
      .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        transition: 0.3s;
      }

      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding: 100px 5% 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
      }
      .mobile-menu.active {
        transform: translateY(0);
      }

      /* General Layout */
      .section {
        padding: 80px 5%;
      }
      .bg-dark {
        background-color: var(--bg-dark);
      }
      .bg-surface {
        background-color: var(--bg-surface);
      }

      /* HERO - Games Specific */
      .hero-games {
        position: relative;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        text-align: center;
        background-color: var(--bg-dark);
        overflow: hidden;
      }
      .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.25;
      }
      .hero-bg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .hero-games-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 0 5%;
      }
      .hero-games h1 {
        font-size: 44px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }
      .hero-games p {
        font-size: 18px;
        color: var(--text-primary);
        max-width: 640px;
        margin: 0 auto 2.5rem;
      }
      .hero-anchors {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
      }
      .anchor-tag {
        border: 1px solid var(--primary-color);
        border-radius: 20px;
        padding: 8px 24px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
      }
      .anchor-tag:hover {
        background-color: var(--primary-color);
        color: #000;
      }

      /* Split Section Layout (Left/Right alternates) */
      .split-wrapper {
        display: flex;
        align-items: center;
        gap: 48px;
      }
      .img-right {
        flex-direction: row-reverse;
      }
      .split-img {
        width: 45%;
        position: relative;
        z-index: 1;
      }
      .split-content {
        width: 55%;
        z-index: 2;
      }

      .split-img img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 0 40px rgba(212, 146, 10, 0.15);
      }
      .img-left .split-img {
        margin-left: -24px;
      }
      .img-right .split-img {
        margin-right: -24px;
      }

      /* Content Specific Elements */
      .content-intro {
        color: var(--text-secondary);
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
      }

      /* Slots 2x2 Grid */
      .slots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 2rem 0;
      }
      .slot-card {
        background-color: #0c0c0e;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 16px 20px;
        transition: box-shadow 0.3s ease;
      }
      .slot-card:hover {
        box-shadow: 0 0 20px rgba(212, 146, 10, 0.12);
      }
      .slot-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        font-family: var(--font-body);
      }
      .slot-card .provider {
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
      }
      .slot-card p {
        font-size: 0.85rem;
        color: var(--text-secondary);
      }

      /* Live Casino List */
      .lc-list {
        margin: 2rem 0;
      }
      .lc-item {
        border-left: 3px solid var(--primary-color);
        padding-left: 16px;
        margin-bottom: 20px;
      }
      .lc-item-title {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 17px;
        color: var(--text-primary);
        margin-bottom: 4px;
        display: block;
      }
      .lc-item-desc {
        font-size: 15px;
        color: var(--text-secondary);
      }

      .license-container {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
      }
      .license-badge {
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        padding: 0.4rem 0.8rem;
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 600;
      }

      /* Fish Shooting Badges */
      .fish-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
      }
      .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-family: var(--font-body);
      }
      .feature-item p {
        font-size: 0.85rem;
        color: var(--text-secondary);
      }
      .feature-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--primary-color);
        fill: none;
        margin-bottom: 0.5rem;
      }

      /* Sabong Section */
      .sabong-section {
        border-top: 1px solid var(--border-color);
        margin: 24px 0 1.5rem;
        padding-top: 24px;
      }
      .sabong-section h3 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 1rem;
      }

      /* Game Providers Marquee */
      .marquee-wrapper {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        width: 100%;
        padding: 2rem 0;
      }
      .marquee-track {
        display: inline-block;
        animation: scrollMarquee 30s linear infinite;
      }
      .provider-item {
        display: inline-block;
        padding: 0 2rem;
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--text-primary);
        opacity: 0.7;
      }
      @keyframes scrollMarquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* Trust Badges (Why Our Games) */
      .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 3rem;
      }
      .trust-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .trust-icon svg {
        width: 40px;
        height: 40px;
        stroke: var(--primary-color);
        stroke-width: 1.5;
        fill: none;
      }
      .trust-item h3 {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 700;
      }
      .trust-item p {
        font-size: 14px;
        color: var(--text-secondary);
      }

      /* FAQ */
      .faq-wrapper {
        max-width: 800px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--border-color);
      }
      .faq-question {
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 600;
      }
      .faq-icon {
        color: var(--primary-color);
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-answer-inner {
        padding: 0 24px 20px 24px;
        color: var(--text-secondary);
      }

      /* Footer */
      .footer {
        background-color: #000;
        padding: 80px 5% 40px;
        border-top: 1px solid var(--border-color);
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
      }
      .footer-links li {
        margin-bottom: 0.75rem;
      }
      .footer-links a {
        color: var(--text-secondary);
        font-size: 0.9rem;
        transition: color 0.3s;
      }
      .footer-links a:hover {
        color: var(--primary-color);
      }
      .footer-bottom {
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
        text-align: center;
        color: var(--text-secondary);
        font-size: 0.85rem;
      }

      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999;
        background-color: var(--primary-color);
        color: #000;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(212, 146, 10, 0.4);
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0.4);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(212, 146, 10, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(212, 146, 10, 0);
        }
      }

      /* Responsive */
      @media (max-width: 1023px) {
        .hero-games h1 {
          font-size: 36px;
        }
        .split-wrapper {
          gap: 32px;
        }
        .img-left .split-img,
        .img-right .split-img {
          margin-left: 0;
          margin-right: 0;
        }
        .trust-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        .section {
          padding: 48px 5%;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: flex;
        }

        .hero-games {
          min-height: auto;
          padding-top: 120px;
          padding-bottom: 60px;
        }
        .hero-games h1 {
          font-size: 28px;
        }
        .hero-anchors {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }
        .anchor-tag {
          padding: 8px 12px;
          font-size: 0.85rem;
        }

        .split-wrapper,
        .img-right {
          flex-direction: column;
          gap: 24px;
        }
        .split-img,
        .split-content {
          width: 100%;
        }
        .split-content {
          order: 2;
        }
        .split-img {
          order: 1;
        }

        h2 {
          font-size: 26px;
        }
        .slots-grid,
        .fish-features {
          grid-template-columns: 1fr;
        }

        .trust-grid,
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .floating-cta {
          bottom: 1rem;
          right: 1rem;
          padding: 0.75rem 1.5rem;
        }

        .btn {
          width: 100%;
        }
      }
