/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #3e1da8 0%, #1a0e3a 50%, #1d0848 100%);
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Age Warning Banner */
  .age-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fe3838 0%, #bd2d23 100%);
    color: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .age-warning-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  
  .age-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
  }
  
  .age-text {
    flex: 1;
    font-size: 14px;
    text-align: center;
  }
  
  .age-text a {
    color: #ffd700;
    text-decoration: underline;
  }
  
  .age-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
  }
  
  .age-close:hover {
    opacity: 0.7;
  }
  
  /* Header */
  .header {
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(10px);
    margin-top: 52px;
    border-bottom: 3px solid #ffd700;
    position: relative;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .logo h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .logo .france {
    color: #6a4c93;
  }
  
  .tagline {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-style: italic;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
  }
  
  .hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  /* Desktop Navigation */
  .desktop-nav {
    display: flex;
    gap: 30px;
  }
  
  .nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .nav a:hover {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #2d1b69;
    transform: translateY(-2px);
  }
  
  /* Mobile Navigation Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0e3a 50%, #0f0621 100%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.3s ease;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    transform: translateY(0);
  }
  
  .mobile-nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 20px;
    margin: 10px 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-nav a:hover,
  .mobile-nav a:active {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #2d1b69;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  }
  
  .mobile-nav-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .mobile-nav-footer p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin: 5px 0;
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(
      ellipse at center,
      rgba(106, 76, 147, 0.3) 0%,
      transparent 70%
    );
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  /* Casino Cards */
  .casinos {
    padding: 80px 0;
  }
  
  .casinos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .casino-card {
    background: linear-gradient(
      135deg,
      rgba(106, 76, 147, 0.4) 0%,
      rgba(45, 27, 105, 0.6) 100%
    );
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .casino-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  }
  
  .casino-rank {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #2d1b69;
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .casino-info {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .casino-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
  }
  
  .casino-logo img {
    width: 120px;
    object-fit: contain;
    filter: brightness(1.2);
  }
  
  .casino-logo h3 {
    font-size: 1.4rem;
    color: #ffd700;
  }
  
  .casino-details {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .bonus-info h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .bonus-info p {
    color: #e0e0e0;
    font-size: 1rem;
  }
  
  .rating {
    text-align: center;
    min-width: 120px;
  }
  
  .rating-score {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
  }
  
  .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .votes {
    font-size: 0.8rem;
    color: #b8b8b8;
  }
  
  .casino-action {
    text-align: center;
    min-width: 180px;
  }
  
  .play-btn {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .play-btn:hover {
    background: linear-gradient(45deg, #45a049, #4caf50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  }
  
  .casino-action small {
    display: block;
    color: #b8b8b8;
    font-size: 0.7rem;
    margin-top: 8px;
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
    background: rgba(106, 76, 147, 0.2);
  }
  
  .about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .about-card {
    background: rgba(45, 27, 105, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .about-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
  }
  
  .about-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .about-card p {
    color: #e0e0e0;
    line-height: 1.7;
  }
  
  /* Responsible Gambling Section */
  .responsible-gambling {
    padding: 60px 0;
    background: rgba(211, 47, 47, 0.1);
    border-top: 3px solid #d32f2f;
    text-align: center;
  }
  
  .responsible-gambling h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .responsible-gambling p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
  }
  
  .responsibility-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .responsibility-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 60px;
  }
  
  .responsibility-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .responsibility-links img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
  }
  
  .anj-logo,
  .jis-logo {
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
  }
  
  .help-numbers {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-top: 20px;
  }
  
  /* Footer */
  .footer {
    background: rgba(15, 6, 33, 0.8);
    padding: 50px 0 30px;
    border-top: 3px solid #ffd700;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    color: #e0e0e0;
    line-height: 1.7;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ffd700;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #b8b8b8;
  }
  
  .footer-bottom p {
    margin-bottom: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .age-warning {
      position: relative;
    }
  
    .age-icon {
      display: none;
    }
  
    .age-close {
      position: absolute;
      top: 0;
      right: 0;
    }
  
    .age-warning-content {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    .age-text {
      font-size: 12px;
    }
  
    .header {
      margin-top: 0;
    }
  
    .header .container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      text-align: left;
    }
  
    /* Show mobile menu button, hide desktop nav */
    .mobile-menu-btn {
      display: flex;
    }
  
    .desktop-nav {
      display: none;
    }
  
    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
      overflow: hidden;
    }
  
    .logo h1 {
      font-size: 2rem;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-features {
      gap: 20px;
    }
  
    .feature {
      padding: 10px 15px;
      font-size: 0.9rem;
    }
  
    .casino-card {
      flex-direction: column;
      text-align: center;
      padding: 20px;
      gap: 20px;
    }
  
    .casino-info {
      flex-direction: column;
      gap: 20px;
    }
  
    .casino-details {
      flex-direction: column;
      gap: 20px;
    }
  
    .casino-logo {
      justify-content: center;
      min-width: auto;
    }
  
    .responsibility-links {
      gap: 15px;
    }
  
    .responsibility-links a {
      min-width: 100px;
      height: 50px;
      padding: 10px 15px;
    }
  
    .responsibility-links img {
      max-width: 80px;
      max-height: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .hero {
      padding: 60px 0;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .casinos,
    .about {
      padding: 60px 0;
    }
  
    .casino-card {
      padding: 15px;
    }
  
    .play-btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
  
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .casino-card {
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .casino-card:nth-child(2) {
    animation-delay: 0.1s;
  }
  .casino-card:nth-child(3) {
    animation-delay: 0.2s;
  }
  .casino-card:nth-child(4) {
    animation-delay: 0.3s;
  }
  .casino-card:nth-child(5) {
    animation-delay: 0.4s;
  }
  .casino-card:nth-child(6) {
    animation-delay: 0.5s;
  }
  