/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA; /* Light gray background */
    color: #333333; /* Dark gray for general text */
    line-height: 1.6;
    overflow-x: hidden;
}

.text-primary-dark { color: #1A2A44; } /* Deep Blue */
.text-teal { color: #00A896; } /* Teal */
.text-gold { color: #FFC300; } /* Gold Accent */
.text-secondary-dark { color: #555555; } /* Slightly lighter dark gray */
.bg-primary-dark { background-color: #1A2A44; } /* Deep Blue */
.bg-light-gray { background-color: #F8F9FA; } /* Light gray */
.bg-dark-transparent { background-color: rgba(26, 42, 68, 0.8); } /* Semi-transparent deep blue */
.bg-warning-light { background-color: #FFF3CD; } /* Light yellow for disclaimer */

.btn-primary {
    background-color: #00A896;
    border-color: #00A896;
}
.btn-primary:hover {
    background-color: #008F7E;
    border-color: #008F7E;
}
.btn-gold {
    background-color: #FFC300;
    border-color: #FFC300;
    color: #1A2A44;
}
.btn-gold:hover {
    background-color: #E6B000;
    border-color: #E6B000;
    color: #1A2A44;
}
.btn-outline-gold {
    color: #FFC300;
    border-color: #FFC300;
}
.btn-outline-gold:hover {
    background-color: #FFC300;
    color: #1A2A44;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1A2A44;
}

.display-3, .display-5 {
    font-weight: 700;
    letter-spacing: -0.05em;
}

a {
    color: #00A896;
    text-decoration: none;
}
a:hover {
    color: #008F7E;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease-in-out;
}
.navbar-brand .text-gold {
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #FFC300;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 90px; /* Adjust for fixed navbar */
    background-color: #1A2A44;
    overflow: hidden;
}
.hero-background-img {
    z-index: 0;
    filter: brightness(0.4);
}
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 42, 68, 0.7) 0%, rgba(26, 42, 68, 0.9) 100%);
    z-index: 1;
}
.hero-content {
    z-index: 2;
}
.hero-section h1 {
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.hero-section p.lead {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages in Hero */
.bg-dark-transparent {
    background-color: rgba(26, 42, 68, 0.7);
    backdrop-filter: blur(5px);
}

.bg-dark-transparent div:last-child {
    border-right: none;
}
@media (max-width: 767.98px) {
    .bg-dark-transparent div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .bg-dark-transparent div:last-child {
        border-bottom: none;
    }
}

/* Rating Criteria Section */
.criterion-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}
.criterion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Rating List Section (Horizontal Card) */
.rating-card.horizontal-card {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.rating-card .platform-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
}
.card-body  {
    gap: 30px;

    p {
        color: #fff;
    }
}
.rating-card .card-body {
    flex-grow: 1;
}
.rating-card .rating-stars i {
    font-size: 1.2rem;
}
.rating-card .btn-gold {
    margin-bottom: 20px;
    white-space: nowrap;
}

/* User Reviews Section */
.review-card {
    max-width: 450px; /* Limit width for review cards */
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1);
}

/* Newsletter Form */
.newsletter-section .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.newsletter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-section .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFC300;
    box-shadow: 0 0 0 0.25rem rgba(255, 195, 0, 0.25);
}
.newsletter-section .invalid-feedback {
    color: #FFC300;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #FFF3CD; /* Light yellow */
    border-top: 5px solid #FFC300; /* Gold top border */
    border-bottom: 5px solid #FFC300; /* Gold bottom border */
    padding: 3rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}
.disclaimer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="pattern-chevrons" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 0 L10 10 L0 20 L0 0 Z M10 0 L20 10 L10 20 L10 0 Z" fill="rgba(255,195,0,0.1)"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23pattern-chevrons)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}
.disclaimer-block .container {
    position: relative;
    z-index: 1;
}
.disclaimer-block h3 {
    color: #1A2A44;
}
.disclaimer-block p {
    color: #333333;
}
.disclaimer-block .text-warning {
    color: #FFC300 !important;
}

/* Footer */
footer {
    background-color: #1A2A44;
    color: rgba(255, 255, 255, 0.7);
}
footer a {
    color: rgba(255, 255, 255, 0.5);
}
footer a:hover {
    color: #FFC300;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.footer-logo {
    max-width: 120px; /* Adjusted from 100-150px to fit 4 images well */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.footer-logo-18plus {
    max-width: 60px;
    height: auto;
    filter: grayscale(0%); /* Ensure it's always colored */
}

/* 18+ Pop-up */
#ageVerificationModal .modal-content {
    background-color: #1A2A44;
    border-radius: 15px;
}
#ageVerificationModal .text-gold {
    color: #FFC300;
}
#ageVerificationModal .btn-primary {
    background-color: #00A896;
    border-color: #00A896;
}
#ageVerificationModal .btn-outline-secondary {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    max-width: 350px;
    background-color: #1A2A44 !important;
    border: 1px solid #00A896;
}
.cookie-banner .text-gold {
    color: #FFC300;
}
.cookie-banner .btn-primary {
    background-color: #00A896;
    border-color: #00A896;
}
.cookie-banner .btn-outline-secondary {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}
.cookie-banner .btn-close-white {
    filter: invert(1);
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: #1A2A44;
}
#cookieSettingsModal .text-gold {
    color: #FFC300;
}
#cookieSettingsModal .form-check-input:checked {
    background-color: #00A896;
    border-color: #00A896;
}
#cookieSettingsModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 150, 0.25);
}
#cookieSettingsModal .btn-primary {
    background-color: #00A896;
    border-color: #00A896;
}
#cookieSettingsModal .btn-secondary {
    background-color: #555555;
    border-color: #555555;
}
/* Styles for .infoGuardBlock container */
.infoGuardBlock {
    padding: 3rem 1.5rem; /* Top/bottom padding, left/right padding */
    margin-top: 4rem;    /* Top margin for separation from previous section */
    margin-bottom: 4rem; /* Bottom margin for separation from next section */
    background-color: #ffffff; /* White background for the block */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

/* Heading styles within .infoGuardBlock */
.infoGuardBlock h1 {
    font-size: 2.25rem; /* Approximately 36px */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1A2A44; /* Deep Blue from general styles */
}

.infoGuardBlock h2 {
    font-size: 1.875rem; /* Approximately 30px */
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #1A2A44;
}

.infoGuardBlock h3 {
    font-size: 1.5rem; /* Approximately 24px */
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1A2A44;
}

.infoGuardBlock h4 {
    font-size: 1.25rem; /* Approximately 20px */
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: #1A2A44;
}

.infoGuardBlock h5 {
    font-size: 1.125rem; /* Approximately 18px */
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #1A2A44;
}

/* Paragraph styles within .infoGuardBlock */
.infoGuardBlock p {
    font-size: 1rem; /* Base font size, approximately 16px */
    line-height: 1.7;
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #333333; /* Dark gray from general styles */
}

/* Unordered list styles within .infoGuardBlock */
.infoGuardBlock ul {
    list-style-type: disc; /* Default disc for unordered lists */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space after the list */
}

/* List item styles within .infoGuardBlock */
.infoGuardBlock li {
    font-size: 1rem; /* Base font size for list items */
    line-height: 1.7;
    margin-bottom: 0.5rem; /* Space between list items */
    color: #333333;
}

/* Specific adjustment for the last element in a block to avoid extra margin */
.infoGuardBlock h1:last-child,
.infoGuardBlock h2:last-child,
.infoGuardBlock h3:last-child,
.infoGuardBlock h4:last-child,
.infoGuardBlock h5:last-child,
.infoGuardBlock p:last-child,
.infoGuardBlock ul:last-child {
    margin-bottom: 0;
}

.navbar-collapse, .filled {
    background-color: #1A2A44;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background-color: transparent;
    }
}
.payment-logos {
    display: flex;
    gap: 10px;
}
.payment-logo {
    max-width: 50px;
    width: 25%;
    height: 40px;

    object-fit: contain;
}

.card-body .card-text  {
    color: #555555;
}

@media (min-width: 1200px) {
    .card-body {
        div {
            flex: 1;
        }
    }
}