* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Rubik', sans-serif;
    background-color: #0e1712;
    color: white;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
  }
  
  /* Background and glow effects */
  .background-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .background-image {
    position: absolute;
    inset: 0;
    background-image: url('./images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.5;
  }
  
  .glow-effect {
    position: absolute;
    width: 546px;
    height: 546px;
    pointer-events: none;
  }
  
  .glow-left {
    left: -122px;
    top: -173px;
  }
  
  .glow-right {
    right: -122px;
    top: -173px;
  }
  
  .glow-circle {
    width: 100%;
    height: 100%;
    filter: blur(250px);
    background: radial-gradient(circle, rgba(19, 221, 127, 0.3) 0%, transparent 70%);
  }
  
  /* Logo */
  .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
  }
  
  .logo {
    width: 148.56px;
    height: 61.22px;
  }
  
  .logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Hero section */
  .hero-section {
    padding-top: 96px;
    padding-bottom: 96px;
    text-align: center;
  }
  
  .main-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 80px;
  }
  
  /* Country selection */
  .country-grid {
    max-width: 768px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
  }
  
  .country-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .country-card {
    position: relative;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: border-color 0.3s ease;
    overflow: hidden;
  }
  
  .country-card:hover {
    border-color: #13DD7F;
  }
  
  .country-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 80px;
    text-align: center;
  }
  
  /* Flags are images now */
  .country-flag {
    font-size: 0; /* prevent stray whitespace */
  }
  
  .country-flag img {
    width: 45px; /* matches previous emoji size */
    height: auto;
    display: block;
  }
  
  .country-name {
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
  }
  
  .all-world-button {
    position: relative;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  
  .all-world-button:hover {
    border-color: #13DD7F;
  }
  
  .all-world-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
  }
  
  .all-world-text {
    font-size: 24px;
    font-weight: 400;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }
  
  /* Generic inline icon (globe/soccer) */
  .icon-inline {
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.2em;
    margin-right: 0.4em;
    display: inline-block;
  }
  
  /* Arrow as image now */
  .arrow-icon {
    width: 24px;
    height: 24px;
    display: block;
  }
  
  /* Game cards section */
  .games-section {
    padding-bottom: 96px;
  }
  
  .games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 768px;
    margin: 0 auto;
  }
  
  .game-card {
    position: relative;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
  
  .game-card:hover {
    border-color: #13DD7F;
  }
  
  .game-image {
    aspect-ratio: 1456/816;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
  
  .sportsbook-image {
    background-image: url('./images/sportsbook.png');
  }
  
  .casino-image {
    background-image: url('./images/casino.png');
  }
  
  .game-content {
    padding: 24px;
  }
  
  .game-title {
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 16px;
  }
  
  .game-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
  }
  
  /* SEO Content */
  .seo-section {
    padding-bottom: 96px;
  }
  
  .seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .seo-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .seo-bold {
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .seo-paragraph {
    margin-bottom: 24px;
  }
  
  .seo-heading {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }
  
  .seo-heading .icon-inline {
    margin-right: 8px;
  }
  
  /* Footer */
  .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    text-align: center;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .container {
      padding: 0 24px;
    }
  
    .glow-effect {
      width: 400px;
      height: 400px;
    }
  
    .glow-left {
      left: -100px;
      top: -150px;
    }
  
    .glow-right {
      right: -100px;
      top: -150px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      padding-top: 48px;
      padding-bottom: 64px;
    }
  
    .main-title {
      font-size: 32px;
      margin-bottom: 48px;
    }
  
    .logo {
      width: 120px;
      height: 49px;
    }
  
    .country-row {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .country-grid {
      gap: 24px;
    }
  
    .country-card-content {
      padding: 16px 48px;
    }
  
    .country-flag img {
      width: 35px;
    }
  
    .country-name {
      font-size: 16px;
    }
  
    .all-world-text {
      font-size: 20px;
    }
  
    .games-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .games-section {
      padding-bottom: 64px;
    }
  
    .seo-section {
      padding-bottom: 64px;
    }
  
    .seo-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      font-size: 14px;
    }
  
    .game-title {
      font-size: 18px;
    }
  
    .footer-text {
      font-size: 12px;
    }
  
    .glow-effect {
      width: 300px;
      height: 300px;
    }
  
    .glow-left {
      left: -150px;
      top: -100px;
    }
  
    .glow-right {
      right: -150px;
      top: -100px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
  
    .country-card-content {
      padding: 16px 24px;
    }
  
    .all-world-content {
      padding: 20px;
      gap: 16px;
    }
  
    .icon-inline {
      width: 1.1em;
      height: 1.1em;
    }
  }
  