body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A192F;
    color: #E0E0E0;
    line-height: 1.6;
}

section{
    overflow-y: hidden;
}


:root {
    --primary-blue: #007bff;
    --dark-blue: #0A192F;
    --light-blue: #1A2E47;
    --accent-blue: #00BFFF;
    --black: #000000;
    --white: #FFFFFF;
    --light-grey: #B0B0B0;
    --warning-yellow: #ffc107;
}


.bg-gradient-dark {
    background: linear-gradient(135deg, #0A192F 0%, #1A2E47 100%);
}
.bg-dark-blue {
    background-color: var(--dark-blue);
}
.bg-footer {
    background-color: #050E1A;
}

.text-primary-gradient {
    background: linear-gradient(90deg, #00BFFF, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #00BFFF, #007bff);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary-gradient:hover {
    background: linear-gradient(90deg, #007bff, #00BFFF);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    color: var(--white);
}

.text-light-grey {
    color: var(--light-grey);
}


section {
    padding: 80px 0;
}

h2, h3, h4, h5, h6 {
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--accent-blue);
}

.max-w-800 {
    max-width: 800px;
}
.max-w-900 {
    max-width: 900px;
}


.header-section {
    background-color: var(--dark-blue);
    border-bottom: 1px solid var(--light-blue);
}
.header-section .navbar-brand .logo-img {
    height: 40px;
    width: auto;
}
.header-section .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 400;
    padding: 0.5rem 1rem;
    position: relative;
}
.header-section .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.header-section .navbar-nav .nav-link:hover::after,
.header-section .navbar-nav .nav-link.active::after {
    width: 100%;
}
.header-warning-strip {
    background-color: var(--warning-yellow);
    color: var(--dark-blue);
    font-size: 0.95rem;
}


.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hero-section .container {
    z-index: 2;
}
.hero-section h1 {
    font-size: 3.5rem;
}
.hero-section p {
    font-size: 1.25rem;
}


.about-section .about-features li {
    font-size: 1.1rem;
}
.about-section .about-features i {
    font-size: 1.2rem;
}
.about-section img {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
}


.responsible-gaming-section .responsible-card {
    background-color: var(--light-blue);
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.responsible-gaming-section .responsible-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}


.platform-card {
    background-color: var(--light-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent !important;
}
.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
    border-color: var(--primary-blue) !important;
}
.platform-card .card-img-top {
    height: 200px;
    object-fit: contain;
    width: 100%;
    padding: 10px;
}
.platform-card .card-img-link {
    display: block;
}
.platform-card .star-rating i {
    font-size: 1.1rem;
}
.platform-card .platform-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}


.comparison-table {
    border: 1px solid var(--light-blue);
}
.comparison-table thead th {
    background-color: var(--light-blue);
    border-color: var(--dark-blue);
    padding: 15px;
}
.comparison-table tbody td {
    border-color: var(--light-blue);
    padding: 15px;
}
.comparison-table .feature-col {
    width: 25%;
    font-weight: 600;
    background-color: rgba(0, 123, 255, 0.1);
}
.comparison-table .platform-col {
    width: 25%;
}
.comparison-table .comparison-logo {
    height: 50px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}


.review-card {
    background-color: var(--light-blue);
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}
.review-card .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}
.review-card .star-rating i {
    font-size: 1rem;
}


.editor-verdict-box {
    background-color: var(--light-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}
.editor-verdict-box::before {
    content: '\f05a'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0, 123, 255, 0.2);
    z-index: 0;
}
.editor-verdict-box .editor-list li i {
    font-size: 1.1rem;
}


.bonus-card {
    background-color: var(--light-blue);
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}
.bonus-card .badge {
    padding: 0.5em 0.8em;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 0.3rem;
}
.bonus-card .badge.bg-primary-gradient {
    background: linear-gradient(45deg, #00BFFF, #007bff) !important;
}


.disclaimer-section {
    border-top: 5px solid var(--warning-yellow);
    background-color: #0A192F;
}
.disclaimer-section .disclaimer-box {
    background-color: #1A2E47;
    border: 1px solid var(--warning-yellow);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.3);
}
.disclaimer-section .disclaimer-box h3 {
    color: var(--warning-yellow);
}
.disclaimer-section .disclaimer-box h4 {
    color: var(--primary-blue);
}
.disclaimer-section .disclaimer-box ul li i {
    font-size: 1.1rem;
}


.footer-section {
    background-color: #050E1A;
    border-top: 1px solid var(--light-blue);
}
.footer-section .footer-link {
    color: var(--light-grey);
    transition: color 0.3s ease;
}
.footer-section .footer-link:hover {
    color: var(--primary-blue);
}
.footer-section .footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.footer-section .footer-logos img {
    height: auto;
    max-width: 120px; 
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease;
}
.footer-section .footer-logos img:hover {
    transform: scale(1.05);
}
.footer-section .footer-18plus-icon {
    max-width: 60px;
    height: auto;
    filter: none;
}


#ageVerificationModal .modal-content {
    background-color: var(--dark-blue);
    border: 1px solid var(--primary-blue);
}
#ageVerificationModal .modal-header {
    border-bottom: none;
}
#ageVerificationModal .modal-title {
    font-size: 2.2rem;
}
#ageVerificationModal .modal-body p {
    color: var(--light-grey);
}


.cookie-banner {
    background-color: var(--light-blue);
    border: 1px solid var(--primary-blue);
    color: var(--white);
    z-index: 1050;
    max-width: 350px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
}
.cookie-banner .btn {
    text-decoration: none;
}


#cookieSettingsModal .modal-content {
    background-color: var(--dark-blue);
    border: 1px solid var(--primary-blue);
}
#cookieSettingsModal .modal-title {
    color: var(--primary-blue);
}
#cookieSettingsModal .form-check-label {
    color: var(--white);
}
#cookieSettingsModal .form-text {
    font-size: 0.85rem;
    color: var(--light-grey);
}
#cookieSettingsModal .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}
#cookieSettingsModal .btn-close-white {
    filter: invert(1);
}


@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .header-section .navbar-nav {
        text-align: center;
        margin-top: 15px;
        background-color: var(--dark-blue);
        padding: 10px 0;
        border-radius: 8px;
    }
    .header-section .navbar-nav .nav-link::after {
        right: 0;
        width: 50%;
        margin: 0 auto;
    }
    .about-section img {
        margin-top: 30px;
    }
    .footer-section .footer-logos {
        justify-content: center;
    }
    .disclaimer-section .disclaimer-box {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .footer-section .footer-logos img {
        max-width: 100px;
    }
    .cookie-banner {
        max-width: 90%;
        left: 5%;
        right: 5%;
        bottom: 15px;
    }
    #ageVerificationModal .modal-title {
        font-size: 1.8rem;
    }
    #ageVerificationModal .modal-body p {
        font-size: 0.95rem;
    }
    #ageVerificationModal .modal-body .fs-4 {
        font-size: 1.8rem !important;
    }
    #ageVerificationModal .btn-lg {
        padding: 10px 30px;
        font-size: 1rem;
    }
}


html {
    scroll-behavior: smooth;
}


.btn {
    text-decoration: none !important;
}
.policyScopeWrap {
    
    margin-top: 2rem; 
    
    margin-left: 1.5rem; 
    margin-right: 1.5rem;
    
    
    
    
    
}


.policyScopeWrap h1 {
    font-size: 1.8rem; 
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700; 
}

.policyScopeWrap h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 600; 
}

.policyScopeWrap h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.policyScopeWrap h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500; 
}

.policyScopeWrap h5 {
    font-size: 1rem; 
    line-height: 1.6;
    margin-top: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}


.policyScopeWrap p {
    font-size: 1rem; 
    line-height: 1.6; 
    margin-top: 0; 
    margin-bottom: 1rem; 
}


.policyScopeWrap ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; 
    list-style-type: disc; 
}


.policyScopeWrap ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; 
    list-style-type: decimal; 
}


.policyScopeWrap li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem; 
}

.col-12.text-center{
    margin-top: 30px;
}