@font-face {
    font-family: 'A4 Speed Bold';
    src: url('../fonts/A4SPEED-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  /* ====== Global Styles (NEW COLOR SCHEME) ====== */
  :root {
      --color-gold: #FFD700;
      --color-gold-dark: #b78606;
      --color-bg-dark: #0D1117;
      --color-bg-medium: #161B22;
      --color-bg-light: #21262D;
      --color-text-primary: #E6EDF3;
      --color-text-secondary: #8B949E;
      --color-text-on-gold: #3D2D00;
      --font-title: 'A4 Speed Bold', sans-serif;
      --font-body: 'A4 Speed Bold', sans-serif;
  }
  
  body {
      font-family: var(--font-body);
      color: var(--color-text-primary);
      background-color: var(--color-bg-dark);
      margin: 0;
      line-height: 1.6;
      overflow-x: hidden;
  }
  
  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }
  
  h1, h2, h3, h4 {
      font-family: var(--font-title);
      font-weight: 700;
      margin-bottom: 15px;
      text-align: center;
  }
  
  h1 { font-size: 3em; color: var(--color-gold); text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); }
  h2 { font-size: 2.5em; color: var(--color-gold); }
  h3 { font-size: 1.8em; color: var(--color-gold); }
  h4 { font-size: 1.4em; color: var(--color-gold); }
  
  p {
      text-align: center;
      color: var(--color-text-secondary);
      margin-bottom: 20px;
  }
  
  img {
      max-width: 100%;
      height: auto;
      display: block;
  }
  
  a {
      text-decoration: none;
      color: var(--color-gold);
      transition: color 0.3s ease;
  }
  
  a:hover {
      color: #FFDE2E;
  }
  
  /* ====== Buttons Styles ====== */
  .btn {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 8px;
      font-family: var(--font-title);
      font-weight: 700;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
      font-size: 1.1em;
      position: relative;
  }
  
  .btn-primary {
      background: linear-gradient(to top, #FFC700, #FFD700 50%);
      color: var(--color-text-on-gold);
      border-bottom: 3px solid var(--color-gold-dark);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
      text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  }
  
  .btn-primary:hover {
      background: linear-gradient(to top, #FFD700, #FFDF33 50%);
      color: var(--color-text-on-gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  }
  
  .btn-primary:active {
      transform: translateY(1px);
      border-bottom: 2px solid var(--color-gold-dark);
  }
  
  .btn-large {
      padding: 20px 45px;
      font-size: 1.3em;
  }
  
  .btn-secondary {
      background-color: transparent;
      border: 2px solid var(--color-gold);
      color: var(--color-gold);
      font-weight: 700;
  }
  
  .btn-secondary:hover {
      background-color: var(--color-gold);
      color: var(--color-text-on-gold);
  }
  
  
  /* ====== Hero Section ====== */
  #hero {
      position: relative;
      min-height: 100vh;
      background: url('../images/background-new.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 40px 0;
  }
  
  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(13, 17, 23, 0.8) 0%, rgba(13, 17, 23, 0) 50%, rgba(13, 17, 23, 0.8) 100%);
      z-index: 1;
  }
  
  .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
  }

  .hero-logo {
      height: 120px;
      width: auto;
      margin: 0 auto 30px auto;
  }
  
  .hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: var(--color-gold);
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
  }
  
  .hero-content h2 {
      font-size: 3em;
      margin-bottom: 10px;
      color: var(--color-gold);
      text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  }
  
  .hero-content .subtitle {
      font-size: 1.4em;
      color: var(--color-text-primary);
      font-weight: 600;
      margin-bottom: 20px;
  }

  .offer-subtitle {
      font-size: 1.2em;
      color: var(--color-gold);
      background-color: rgba(255, 215, 0, 0.1);
      border: 1px solid rgba(255, 215, 0, 0.3);
      padding: 10px 20px;
      border-radius: 8px;
      display: inline-block;
      margin-bottom: 40px;
  }
  
  .hero-cta-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
  }
  
  
  /* ====== Games Section ====== */
  #games-section {
      padding: 80px 0;
      background-color: var(--color-bg-dark);
      border-top: 1px solid #30363D;
      border-bottom: 1px solid #30363D;
  }
  
  .section-subtitle {
      font-size: 1.1em;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
      color: var(--color-text-secondary);
  }
  
  .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }
  
  .game-card {
      background-color: var(--color-bg-medium);
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      border: 1px solid #30363D;
      border-top: 4px solid var(--color-gold);
      transition: all 0.3s ease;
  }
  
  .game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
      border-color: var(--color-gold);
  }
  
  .game-card img {
      max-height: 80px;
      width: auto;
      margin: 0 auto 25px auto;
  }
  
  .game-card h3 {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: var(--color-gold);
  }
  
  .game-card p {
      color: var(--color-text-secondary);
      flex-grow: 1;
      margin-bottom: 25px;
  }
  
  
  /* ====== Final CTA Section ====== */
  #cta-section {
      padding: 50px 0;
      background: linear-gradient(135deg, rgba(39, 174, 96, 0.8) 0%, rgba(34, 153, 96, 0.8) 100%), url('../images/background-new.jpg') no-repeat center center/cover;
      position: relative;
      background-attachment: fixed;
      text-align: center;
  }
  
  #cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
  }
  
  .cta-content {
      position: relative;
      z-index: 2;
  }
  
  .cta-logo {
      height: 250px;
      margin: 0 auto 20px auto;
      filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  }
  
  .cta-content h1 {
      font-size: 2.2em;
  }

  .cta-youtube-link {
      word-break: break-all;
      display: inline-block;
      margin-top: 10px;
      color: var(--color-text-primary);
      text-decoration: underline;
  }
  
  .cta-youtube-link:hover {
      color: var(--color-gold);
  }
  
  
  /* ====== Cara Main Section ====== */
  #cara-main-section {
      padding: 80px 0;
      background-color: var(--color-bg-dark);
  }
  
  .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
  }
  
  .video-card {
      text-align: center;
  }
  
  .video-placeholder {
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: var(--color-bg-medium);
      border-radius: 8px;
      border: 1px solid #30363D;
      color: var(--color-text-secondary);
      font-size: 1.2em;
      position: relative; 
      overflow: hidden;
  }

  .video-placeholder iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
  }

  .video-placeholder:empty::before { 
      content: 'Video Coming Soon';
      font-family: var(--font-body);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  
  .video-card h4 {
      font-size: 1.4em;
      color: var(--color-gold);
      margin-bottom: 20px;
  }

  /* ====== Footer ====== */
  footer {
      padding: 60px 0 30px 0;
      background-color: var(--color-bg-medium);
      border-top: 1px solid #30363D;
  }
  
  .footer-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .footer-column {
      text-align: left;
  }
  
  .footer-column h4 {
      font-size: 1.1em;
      color: var(--color-gold);
      margin-bottom: 20px;
      text-align: left;
  }
  
  .social-links {
      display: flex;
      gap: 15px;
  }

  .social-links a img {
      width: 32px;
      height: 32px;
      opacity: 0.8;
      transition: opacity 0.3s ease;
  }

  .social-links a:hover img {
      opacity: 1;
  }

  .app-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
  }
  
  .app-badges img {
      height: 40px;
      width: auto;
  }

  .footer-bottom {
      border-top: 1px solid #30363D;
      padding-top: 30px;
      text-align: center;
  }
  
  .disclaimer {
      font-size: 0.8em;
      color: #555;
  }
  
  
  /* ====== Responsive Design ====== */
  
  /* --- Tablet & Smaller Laptops --- */
  @media (max-width: 992px) {
      h1 { font-size: 2.8em; }
      h2 { font-size: 2.2em; }
      h3 { font-size: 1.6em; }
  }
  
  /* --- Mobile Phones --- */
  @media (max-width: 768px) {
      .container {
          width: 95%;
      }
  
      h1, .hero-content h1, #cta-content h1 { font-size: 2.2em; }
      h2, .hero-content h2 { font-size: 1.8em; }
      h3 { font-size: 1.5em; }
      
      .hero-logo {
          height: 100px;
      }
      .cta-logo {
          height: 200px;
      }

      .btn-large {
          padding: 18px 30px;
          font-size: 1.1em;
      }
  
      /* Sections General Padding */
      #games-section, #cta-section, #cara-main-section {
          padding: 60px 0;
      }
  }
  
  /* --- Smaller Mobile Phones --- */
  @media (max-width: 576px) {
      h1, .hero-content h1, #cta-content h1 { font-size: 1.9em; }
      h2, .hero-content h2 { font-size: 1.6em; }
      h3 { font-size: 1.3em; }
  
      .hero-logo {
          height: 80px;
      }

      .offer-subtitle {
          font-size: 1em;
          padding: 8px 15px;
      }

      .hero-content .subtitle {
          font-size: 1em;
          padding: 0 10px;
      }

      /* Footer Stacking */
      .footer-top {
          grid-template-columns: 1fr;
      }

      .footer-column {
          text-align: center;
      }
      .footer-column h4 {
          text-align: center;
      }
      .social-links, .app-badges {
          justify-content: center;
      }
  }