body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

.top-header-bar {
    background-color: #0f4c75;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
}

.navbar {
    background-color: #1a1a2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6b31e;
    background: linear-gradient(45deg, #e6b31e, #f0e68c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #e6b31e;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e6b31e;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230, 179, 30, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('visuals/graphics/for_sportwear_in_exercising_fitness_media_running_and_mixed_lifestyle_man_healthy.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #e6b31e;
    font-size: 3.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-section.animate .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    color: #c0c0c0;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.hero-section.animate .hero-description {
    opacity: 1;
    transform: translateY(0);
}

.hero-advantages .badge {
    background-color: #0f4c75 !important;
    color: #e0e0e0;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.hero-section.animate .hero-advantages .badge {
    opacity: 1;
    transform: translateY(0);
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.hero-section.animate .hero-image {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-advantages .badge {
        font-size: 0.9rem;
    }
}

/* General Section Styling */
section {
    padding: 60px 0;
    position: relative;
}

.bg-light-dark {
    background-color: #2a2a40;
}

.section-title {
    color: #e6b31e;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #0f4c75;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Platform Card Styling (Block 2) */
.platform-card {
    background-color: #282844;
    border: 1px solid rgba(230, 179, 30, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.platform-card .platform-logo {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: brightness(1.2);
}

.platform-card .platform-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-card .card-title {
    color: #e6b31e;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-card .card-text {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.platform-features li {
    color: #e0e0e0;
    margin-bottom: 8px;
}

.platform-features li i {
    color: #0f4c75;
}

.platform-features .license-link {
    color: #e6b31e;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.platform-features .license-link:hover {
    color: #e6b31e;
    opacity: 0.7;
}

.payment-systems h5 {
    color: #e6b31e;
    font-weight: 600;
}

.payment-icon {
    height: 20px;
    width: auto;
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;
}

.text-muted{
    color: unset !important;
}

.btn-primary {
    background-color: #e6b31e;
    border-color: #e6b31e;
    color: #1a1a2e;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: #f0e68c;
    border-color: #f0e68c;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Comparison Table Styling (Block 3) */
.comparison-table {
    background-color: #282844;
    border-color: rgba(230, 179, 30, 0.2);
    color: #e0e0e0;
}

.comparison-table thead th {
    background-color: #0f4c75;
    color: #e0e0e0;
    font-weight: 700;
    border-color: rgba(230, 179, 30, 0.2);
}

.comparison-table tbody tr {
    transition: background-color 0.3s ease-in-out;
}

.comparison-table tbody tr:hover {
    background-color: #3a3a5a;
}

.comparison-table tbody th,
.comparison-table tbody td {
    border-color: rgba(230, 179, 30, 0.1);
}

/* User Reviews Section */
.review-card {
    background-color: #282844;
    border: 1px solid rgba(230, 179, 30, 0.2);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.review-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.review-card h4 {
    color: #e6b31e;
    font-weight: 600;
}

.review-rating i {
    color: #ffc107;
}

.review-text {
    color: #c0c0c0;
}

.review-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid rgba(230, 179, 30, 0.3);
    transition: transform 0.3s ease-in-out;
}

.review-thumbnail:hover {
    transform: scale(1.05);
}

/* Image Lightbox Modal */
#imageModal .modal-content {
    background-color: transparent;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: auto;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #121220;
}

.disclaimer-content {
    background-color: #2c0f0f;
    border: 3px solid #e74c3c;
    color: #f8d7da;
    padding: 40px;
    position: relative;
}

.disclaimer-title {
    color: #e74c3c;
    font-weight: 700;
    font-size: 2rem;
}

.disclaimer-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.disclaimer-content .fw-bold {
    color: #f8d7da;
}

/* Footer Section */
#main-footer {
    background-color: #1a1a2e;
    color: #c0c0c0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
    color: #e6b31e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
}

.footer-links li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links li a:hover {
    color: #e6b31e;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-partners h6 {
    color: #e6b31e;
    font-weight: 600;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    padding: 5px;
}

.18plus-icon {
    max-width: 60px;
    height: auto;
    filter: grayscale(0%);
}

.footer-highlights li {
    color: #c0c0c0;
    margin-bottom: 5px;
}

.footer-highlights li strong {
    color: #e6b31e;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #0f4c75;
    color: #e0e0e0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-policy-link {
    color: #e6b31e;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #f0e68c;
}

.cookie-banner .btn {
    text-decoration: none !important;
}

.cookie-banner .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.cookie-banner .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-banner .btn-outline-secondary {
    border-color: #e0e0e0;
    color: #e0e0e0;
}

.cookie-banner .btn-outline-secondary:hover {
    background-color: #e0e0e0;
    color: #0f4c75;
}

/* Age Verification Modal */
#ageVerificationModal .modal-content {
    background-color: #1a1a2e;
    color: #e0e0e0;
    border: 1px solid #e6b31e;
}

#ageVerificationModal .modal-title {
    color: #e6b31e;
    font-weight: 700;
}

#ageVerificationModal .form-control {
    background-color: #282844;
    border-color: #0f4c75;
    color: #e0e0e0;
}

#ageVerificationModal .form-control::placeholder {
    color: #a0a0a0;
}

#ageVerificationModal .form-control:focus {
    background-color: #3a3a5a;
    border-color: #e6b31e;
    box-shadow: 0 0 0 0.25rem rgba(230, 179, 30, 0.25);
}

#ageVerificationModal .btn-primary {
    background-color: #e6b31e;
    border-color: #e6b31e;
    color: #1a1a2e;
}

#ageVerificationModal .btn-primary:hover {
    background-color: #f0e68c;
    border-color: #f0e68c;
}

#ageVerificationModal .invalid-feedback {
    color: #e74c3c;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 90vh;
    }
    .hero-title {
        font-size: 4.5rem;
    }
}
/* Parent container styles for padding and spacing */
.securePolicyGrid {
    padding-top: 60px;    /* Top padding for the section */
    padding-bottom: 60px; /* Bottom padding for the section */
    padding-left: 20px;   /* Left padding for content inside the grid */
    padding-right: 20px;  /* Right padding for content inside the grid */
    /* Optional: Add max-width and margin: auto for centering on larger screens */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within .securePolicyGrid - modest sizes */
.securePolicyGrid h1 {
    font-size: 32px;      /* Main heading, not overly large */
    line-height: 1.2;     /* Improved readability */
    font-weight: 700;     /* Bold font weight */
    margin-top: 0;        /* Reset default browser margin */
    margin-bottom: 24px;  /* Space below the heading */
}

.securePolicyGrid h2 {
    font-size: 28px;      /* Secondary heading */
    line-height: 1.25;    /* Improved readability */
    font-weight: 600;     /* Semi-bold font weight */
    margin-top: 28px;     /* Space above, if following other content */
    margin-bottom: 20px;  /* Space below the heading */
}

.securePolicyGrid h3 {
    font-size: 24px;      /* Tertiary heading */
    line-height: 1.3;     /* Improved readability */
    font-weight: 600;     /* Semi-bold font weight */
    margin-top: 24px;     /* Space above */
    margin-bottom: 16px;  /* Space below */
}

.securePolicyGrid h4 {
    font-size: 20px;      /* Quaternary heading */
    line-height: 1.4;     /* Improved readability */
    font-weight: 500;     /* Medium font weight */
    margin-top: 20px;     /* Space above */
    margin-bottom: 12px;  /* Space below */
}

.securePolicyGrid h5 {
    font-size: 18px;      /* Fifth-level heading */
    line-height: 1.4;     /* Improved readability */
    font-weight: 500;     /* Medium font weight */
    margin-top: 18px;     /* Space above */
    margin-bottom: 10px;  /* Space below */
}

/* Paragraph styles within .securePolicyGrid */
.securePolicyGrid p {
    font-size: 16px;      /* Standard body text size */
    line-height: 1.6;     /* Generous line height for readability */
    margin-top: 0;        /* Reset default browser margin */
    margin-bottom: 16px;  /* Space between paragraphs */
}

/* Unordered list styles within .securePolicyGrid */
.securePolicyGrid ul {
    list-style: disc;     /* Default disc bullet points */
    margin-top: 16px;     /* Space above the list */
    margin-bottom: 16px;  /* Space below the list */
    padding-left: 24px;   /* Indent for bullet points */
}

/* Ordered list styles within .securePolicyGrid (added for completeness, though not explicitly asked) */
.securePolicyGrid ol {
    list-style: decimal;  /* Default decimal numbering */
    margin-top: 16px;     /* Space above the list */
    margin-bottom: 16px;  /* Space below the list */
    padding-left: 24px;   /* Indent for numbers */
}

/* List item styles within .securePolicyGrid */
.securePolicyGrid li {
    font-size: 16px;      /* List item text size */
    line-height: 1.6;     /* Consistent line height with paragraphs */
    margin-bottom: 8px;   /* Space between list items */
}

/* Remove bottom margin from the last paragraph or list item in the grid for cleaner spacing */
.securePolicyGrid p:last-child,
.securePolicyGrid ul:last-child,
.securePolicyGrid ol:last-child {
    margin-bottom: 0;
}
