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

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Header styles */
/* Base Styles & Variables */
    :root {
        --primary: #6a0dad;
        --secondary: #ff9e00;
        --accent: #ff3366;
        --dark: #1a1a2e;
        --light: #f8f9fa;
        --gradient: linear-gradient(135deg, var(--primary), #9d4edd);
        --glow: 0 0 15px rgba(255, 158, 0, 0.7);
        --neon-shadow: 0 0 8px rgba(255, 51, 102, 0.8);
        --card-bg: rgba(26, 26, 46, 0.9);
        --header-height: 80px;
        --border-radius: 12px;
        --transition: all 0.3s ease;
    }

    /* Header Base */
    .casino-header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: var(--dark);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 158, 0, 0.3);
    }

    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        height: var(--header-height);
    }

    /* Logo Styling */
    .logo-area {
        display: flex;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--light);
        font-weight: 700;
        transition: var(--transition);
    }

    .logo:hover {
        transform: scale(1.05);
    }

    .logo-icon {
        font-size: 1.5rem;
        margin-right: 8px;
        display: inline-block;
        animation: pulse 3s infinite;
    }

    .logo-text {
        font-size: 1.5rem;
        background: linear-gradient(to right, var(--secondary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        letter-spacing: 0.5px;
    }

    /* Desktop Navigation */
    .desktop-nav {
        margin-left: 40px;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 5px;
    }

    .nav-link {
        display: inline-block;
        padding: 8px 15px;
        color: var(--light);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        border-radius: var(--border-radius);
        transition: var(--transition);
        position: relative;
    }

    .nav-link:hover {
        color: var(--secondary);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 30%;
    }

    /* CTA Button */
    .header-cta {
        margin-left: 20px;
    }

    .play-button {
        display: inline-block;
        padding: 10px 24px;
        background: var(--gradient);
        color: var(--light);
        text-decoration: none;
        font-weight: 600;
        border-radius: var(--border-radius);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: var(--glow);
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .play-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--glow), 0 5px 15px rgba(106, 13, 173, 0.4);
    }

    /* Mobile Toggle Button */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 20px;
    }

    .toggle-line {
        width: 100%;
        height: 3px;
        background-color: var(--secondary);
        border-radius: 5px;
        transition: var(--transition);
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        padding: 20px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
    }

    .close-menu {
        background: transparent;
        border: none;
        color: var(--light);
        font-size: 32px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: var(--transition);
    }

    .close-menu:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 15px 0;
        color: var(--light);
        text-decoration: none;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

    .mobile-nav-link:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

    .mobile-cta {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .mobile-play-button {
        display: inline-block;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
        background: var(--gradient);
        color: var(--light);
        text-decoration: none;
        font-weight: 600;
        border-radius: var(--border-radius);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: var(--glow);
        transition: var(--transition);
    }

    /* Animations */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .header-container {
            grid-template-columns: auto 1fr auto;
        }
        
        .desktop-nav {
            display: none;
        }
        
        .mobile-toggle {
            display: flex;
        }
        
        .header-cta {
            display: none;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
    }

    /* Tablet Styles */
    @media (min-width: 769px) and (max-width: 1024px) {
        .nav-link {
            padding: 8px 10px;
            font-size: 0.9rem;
        }
        
        .header-container {
            padding: 0 15px;
        }
        
        .desktop-nav {
            margin-left: 20px;
        }
        
        .play-button {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }

    /* Larger Desktop Styles */
    @media (min-width: 1025px) {
        .header-container {
            padding: 0 30px;
        }
        
        .nav-list {
            gap: 10px;
        }
    }

/* Footer styles */
/* Base Footer Styles */
  .footer-main {
    width: 100%;
    background: linear-gradient(135deg, #2a0e56 0%, #4a1070 50%, #6b1183 100%);
    color: #e0d8ff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    position: relative;
  }
  
  /* Footer Top Section */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
  }
  
  /* Footer Middle Section */
  .footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Section Styles */
  .footer-section {
    position: relative;
  }
  
  .footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
    position: relative;
    display: inline-block;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700);
    border-radius: 3px;
  }
  
  .footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc1f0;
  }
  
  /* Links List */
  .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links-list li {
    margin-bottom: 12px;
  }
  
  .footer-link {
    color: #ccc1f0;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-link::before {
    content: '♦';
    position: absolute;
    left: -18px;
    top: 0;
    color: #ff6b6b;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .footer-link:hover {
    color: #ffd700;
    transform: translateX(5px);
  }
  
  .footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Buttons */
  .footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-button:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* CTA Button */
  .footer-cta {
    margin: 20px 0;
  }
  
  .footer-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  }
  
  .footer-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
  }
  
  /* Social Media */
  .footer-social {
    margin-top: 25px;
  }
  
  .footer-social-title {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #e0d8ff;
  }
  
  .footer-social-icons {
    display: flex;
    gap: 15px;
  }
  
  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .footer-social-icon i {
    font-size: 1rem;
    color: #e0d8ff;
    transition: all 0.3s ease;
  }
  
  .footer-social-icon:hover {
    background: #ffd700;
    transform: translateY(-5px) rotate(10deg);
  }
  
  .footer-social-icon:hover i {
    color: #2a0e56;
  }
  
  /* Support Section */
  .footer-support .footer-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .footer-support i {
    color: #ffd700;
    font-size: 1.1rem;
  }
  
  .footer-contact-link {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .footer-contact-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(0);
  }
  
  /* Disclaimer Box */
  .footer-disclaimer-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 3px solid #ff6b6b;
  }
  
  .footer-disclaimer-icon {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 3px;
  }
  
  .footer-disclaimer-text {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Legal Links */
  .footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-legal-link {
    color: #ccc1f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .footer-legal-link:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.3);
  }
  
  .footer-legal-link:hover {
    color: #ffd700;
  }
  
  /* Copyright */
  .footer-copyright {
    margin-bottom: 20px;
  }
  
  .footer-copyright .footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  /* Platforms */
  .footer-platforms {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .footer-platform-icon i {
    color: #e0d8ff;
    font-size: 1rem;
  }
  
  .footer-platform-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
  }
  
  /* Casino-Themed Decorative Elements */
  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #ff6b6b, #ffd700);
    background-size: 300% 100%;
    animation: shimmer 5s infinite linear;
  }
  
  @keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .footer-container {
      padding: 50px 20px 30px;
    }
    
    .footer-top, .footer-middle {
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-top, .footer-middle {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px 20px;
    }
    
    .footer-heading {
      font-size: 1.3rem;
    }
    
    .footer-legal-links {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .footer-legal-link:not(:last-child)::after {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      padding: 40px 15px 20px;
    }
    
    .footer-buttons, .footer-social-icons {
      justify-content: center;
    }
    
    .footer-top, .footer-middle {
      text-align: center;
    }
    
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-links-list li {
      text-align: center;
    }
    
    .footer-link::before {
      display: none;
    }
    
    .footer-disclaimer-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .footer-support .footer-text {
      justify-content: center;
    }
  }

/* Cookie Banner styles */
#casino-cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #1e1a36 !important;
    color: #ffffff;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3) !important;
    font-family: 'Arial', sans-serif;
  }

  .cookie-content-wrapper {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 18px 20px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  .cookie-message {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }

  .cookie-message a {
    color: #ffcc00;
    text-decoration: underline;
  }

  .cookie-message a:hover {
    color: #ffd633;
  }

  .cookie-actions {
    display: flex !important;
    gap: 15px;
  }

  .cookie-btn {
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
  }

  .cookie-accept {
    background-color: #ff5722 !important;
    color: white;
  }

  .cookie-accept:hover {
    background-color: #ff7043 !important;
    transform: translateY(-2px);
  }

  .cookie-decline {
    background-color: #4c4c4c !important;
    color: #ffffff;
  }

  .cookie-decline:hover {
    background-color: #666666 !important;
    transform: translateY(-2px);
  }

  @media (min-width: 768px) {
    .cookie-content-wrapper {
      flex-direction: row !important;
      justify-content: space-between;
      padding: 20px 30px !important;
    }

    .cookie-message {
      margin: 0;
      text-align: left;
      max-width: 70% !important;
    }
  }

  @media (max-width: 767px) {
    .cookie-btn {
      padding: 8px 20px !important;
      font-size: 14px;
    }
  }