:root {
    --dark-blue: #0A1128;      /* Darker, richer blue for backgrounds */
    --light-blue: #F8FAFF;     /* Slightly brighter off-white */
    --accent-green: #00C853;   /* More vibrant green for CTAs */
    --rating-gold: #FFD700;    /* Richer gold for ratings/jackpots */
    --accent-blue: #1E3A8A;    /* Deeper royal blue for accents */
    --accent-red: #D90429;     /* New: vibrant red for promotions */
    --accent-purple: #9D4EDD;  /* New: purple for VIP/premium content */
    --text-white: #FFFFFF;     /* Pure white for better contrast */
}
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }
        
        .navbar {
            background-color: var(--dark-blue);
            padding: 15px 0;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .hero-section {
            background-image: linear-gradient(rgba(21, 31, 46, 0.8), rgba(21, 31, 46, 0.8)), url('../images/bg.jpg');
            background-size: cover;
            background-position: center;
            padding: 70px 0;
            position: relative;
            /* height: 100vh; */
        }
        
        .hero-content {
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .flag-icon {
            width: 24px;
            height: auto;
            vertical-align: middle;
            margin: 0 5px;
        }
        
        .features-list {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: 30px 0;
            color: white;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin: 0 15px;
            font-size: 0.9rem;
        }
        
        .feature-icon {
            margin-right: 8px;
            color: var(--accent-green);
        }
        
        .warning-text {
            color: white;
            text-align: center;
            margin-top: 20px;
            font-size: 1.1rem;
        }
        
        .casinos-table {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: -50px;
            position: relative;
            z-index: 3;
        }
        
        .table-header {
            background-color: var(--light-blue);
            padding: 15px 25px;
            font-weight: 600;
            display: flex;
        }
        .card_list{
            display:flex;
            flex-direction: column;
            gap:10px
        }
        
        .casino-row {
            display: flex;
            align-items: center;
            padding: 20px 25px;
            border-bottom: 1px solid #eee;
        }
        
        .casino-logo {
            /* width: 100px; */
            margin-right: 15px;
        }
        
        .casino-logo img {
            max-width: 70%;
           border-radius: 10px!important;
        }
        .img-fluid{
            max-width: 70%;
        }
        
        .rating-stars {
            color: var(--rating-gold);
            margin-bottom: 5px;
        }
        
        .reviews-count {
            font-size: 0.8rem;
            color: #777;
        }
        
        .rating-score {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 25px;
        }
        
        .btn-play {
            background-color: var(--accent-green);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .btn-play:hover {
            background-color: #0e9456;
            transform: translateY(-2px);
        }
        
        .col-site {
            flex: 1;
        }
        
        .col-bonus {
            flex: 2;
            display: flex;
            justify-content: center;
        }
        
        .col-rating {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .col-action {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        @media (max-width: 768px) {
            .casino-row {
                flex-direction: column;
                text-align: center;
            }
            
            .col-site, .col-bonus, .col-rating, .col-action {
                width: 100%;
                justify-content: center;
                margin: 10px 0;
            }
            
            .table-header {
                display: none;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .features-list {
                flex-direction: column;
            }
            
            .feature-item {
                margin: 5px 0;
            }
        }

        /*  */
        .info-section{
          
                /* background-image: linear-gradient(rgba(21, 31, 46, 0.8), rgba(21, 31, 46, 0.8)), url('/api/placeholder/1920/800'); */
                background-size: cover;
                background-position: center;
                padding: 70px 0;
                position: relative;
        
        }

        /* footer */

        .footer-container {
            background-color: var(--dark-blue);
            color: var(--text-white);
            padding: 2.5rem 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer-top, .footer-middle, .footer-bottom {
            padding: 1.5rem 0;
        }
        
        .footer-top {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-middle {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .warning-banner {
            background-color: var(--dark-blue);
            padding: 1rem 0;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .footer-link {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--accent-blue);
            text-decoration: underline;
        }
        
        .responsible-gaming {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .footer-top .col-md-3, .footer-middle .col-md-4 {
                margin-bottom: 1.5rem;
            }
        
            .footer-bottom .col-md-6 {
                text-align: center;
            }
        
            .footer-bottom .d-flex {
                justify-content: center;
            }
        }
       
        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo img {
            max-width: 180px;
            transition: transform 0.3s ease;
        }
        
        .footer-logo img:hover {
            transform: scale(1.05); /* Subtle hover effect on logo */
        }
        
        .tagline {
            font-size: 0.9rem;
            opacity: 0.9;
            font-style: italic;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        @media (max-width: 768px) {
            .footer-brand {
                align-items: center; /* Center content on mobile */
                text-align: center;
            }
        }

        /* policy */

        .policy-content{
            /* padding: 10px 30px; */
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Roboto', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            margin: 0;
            padding: 0;
        }
    

       
    
          .privacy-policy {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            margin-bottom: 40px;
          }
    
          .privacy-policy h2 {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
            font-size: 30px;
          }
    
          .privacy-policy h3 {
            color: #34495e;
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaecef;
            font-size: 20px;
          }
    
          .privacy-policy p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 20px;
          }
    
          a {
            color: #3498db;
            text-decoration: none;
          }
    
          a:hover {
            color: #2980b9;
            text-decoration: underline;
          }
    
          .footer {
            background: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-top: 40px;
          }
    
          .footer a {
            color: #3498db;
          }
    
          .footer a:hover {
            color: #2980b9;
          }
    
          /* Back to Top Button */
          .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
          }
    
          .back-to-top.show {
            opacity: 1;
          }
    /* Model */


 /* Model */
.modal-backdrop {
  --bs-backdrop-zindex: 0 !important;
  z-index: var(--bs-backdrop-zindex) !important; /* ✅ Must NOT be commented */
}
.modal{
    background : #000000ba !important;
}



.age-verification-modal .modal-content {
    background-color: #0a0404e3!important ;
    color: #fff;
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 30px;
    box-shadow: none;
    border-radius: 20px;
}

.age-restriction-icon {
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 25px;
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.verification-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-yes {
    background-color: #068845;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
}

.btn-no {
    background-color: #ff0000;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
}

    
    .btn-container {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .content {
        max-width: 600px;
        padding: 20px;
    }

    .icon {
        font-size: 50px;
        font-weight: bold;
        border: 3px solid white;
        border-radius: 50%;
        display: inline-block;
        padding: 20px 30px;
        margin-bottom: 20px;
    }

    .message {
        font-size: 22px;
        font-weight: bold;
    }
    .age-restriction-page {
        width: 100%;
        height: 100vh;
        background-color: #111;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }