:root {
    --primary-dark-blue: #1a2b4a;
    --secondary-blue: #3a5a8a;
    --accent-blue: #66ccff;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-blue) 100%);
    --card-bg: rgba(26, 43, 74, 0.8);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 76px; /* Height of fixed header */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
}

a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

/* Header Section */
.header-section {
    background-color: var(--primary-dark-blue);
    border-bottom: 1px solid var(--border-color);
    z-index: 1030;
}

.header-section .logo-img {
    height: 40px;
    width: auto;
}

.header-section .site-title {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
}

.call-to-action-btn {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important; /* Remove underline */
}

.call-to-action-btn:hover {
    background-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 76px; /* Account for fixed header */
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9) 0%, rgba(58, 90, 138, 0.8) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.call-to-action-btn-large {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none !important; /* Remove underline */
}

.call-to-action-btn-large:hover {
    background-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.game-cards-stack {
    position: relative;
    width: 280px; /* Adjust as needed */
    height: 350px; /* Adjust as needed */
    margin: 0 auto;
    perspective: 1000px;
}

.game-card-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(50px);
}

.game-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-item .btn-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(102, 204, 255, 0.8);
    color: var(--primary-dark-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    text-decoration: none !important;
}

.game-card-item:hover .btn-play-overlay {
    opacity: 1;
    background-color: var(--text-white);
}

.game-card-item.card-1 {
    transform: rotateY(10deg) rotateX(5deg) translateY(0px) scale(0.95);
    top: 0;
    left: 0;
    z-index: 3;
}

.game-card-item.card-2 {
    transform: rotateY(-5deg) rotateX(-2deg) translateY(15px) scale(0.98);
    top: 0;
    left: 0;
    z-index: 2;
}

.game-card-item.card-3 {
    transform: rotateY(0deg) rotateX(0deg) translateY(30px) scale(1);
    top: 0;
    left: 0;
    z-index: 1;
}

/* JS animation classes */
.game-card-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.game-card-item.card-1.animate-in { transition-delay: 0.2s; transform: rotateY(10deg) rotateX(5deg) translateY(0px) scale(0.95); }
.game-card-item.card-2.animate-in { transition-delay: 0.4s; transform: rotateY(-5deg) rotateX(-2deg) translateY(15px) scale(0.98); }
.game-card-item.card-3.animate-in { transition-delay: 0.6s; transform: rotateY(0deg) rotateX(0deg) translateY(30px) scale(1); }

.scroll-indicator {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* About Game Section */
.about-section {
    background-color: var(--secondary-blue);
    padding: 6rem 0;
}

.about-section .lead {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.features-list {
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(26, 43, 74, 0.95);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Game Selection Section */
.game-selection-section {
    background-color: var(--primary-dark-blue);
    padding: 6rem 0;
}

.game-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-card-img-wrapper {
    height: 200px; /* Fixed height for image wrapper */
    overflow: hidden;
}

.game-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-img-wrapper img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.btn-play-game {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.btn-play-game:hover {
    background-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
}

.game-rating i {
    color: gold;
    font-size: 1.2rem;
}

.game-card .card-body {
    padding: 1.5rem;
}

.game-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.game-card .card-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-modal.show {
    opacity: 1;
    visibility: visible;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1060;
    transition: background-color 0.3s ease;
}

.game-modal-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tournaments Section */
.tournaments-section {
    background-color: var(--secondary-blue);
    padding: 6rem 0;
}

.tournament-table {
    color: var(--text-light);
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tournament-table thead th {
    background-color: var(--primary-dark-blue);
    color: var(--text-white);
    border-bottom: none;
    padding: 1rem;
}

.tournament-table tbody tr {
    transition: background-color 0.3s ease;
}

.tournament-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.tournament-table tbody td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Leaderboards Section */
.leaderboards-section {
    background-color: var(--primary-dark-blue);
    padding: 6rem 0;
}

.leaderboard-table {
    color: var(--text-light);
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.leaderboard-table thead th {
    background-color: var(--secondary-blue);
    color: var(--text-white);
    border-bottom: none;
    padding: 1rem;
}

.leaderboard-table tbody tr {
    transition: background-color 0.3s ease;
}

.leaderboard-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.leaderboard-table tbody td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Daily Challenges Section */
.daily-challenges-section {
    background-color: var(--secondary-blue);
    padding: 6rem 0;
}

.daily-challenges-row {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.daily-challenges-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.challenge-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px; /* Ensure cards are wide enough on mobile */
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.challenge-card .card-title {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.challenge-card .card-text {
    font-size: 0.95rem;
}

.challenge-card .progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.challenge-card .progress-bar {
    background-color: var(--accent-blue);
    transition: width 0.6s ease;
    font-size: 0.75rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.challenge-card .progress-bar.bg-success {
    background-color: #28a745 !important;
    color: var(--text-white);
}

.btn-complete-challenge {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.btn-complete-challenge:hover:not(:disabled) {
    background-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
}

.btn-complete-challenge:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* FAQ Social Section */
.faq-section {
    background-color: var(--primary-dark-blue);
    padding: 6rem 0;
}

.search-input {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem 0 0 0.375rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    background-color: rgba(26, 43, 74, 0.9);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(102, 204, 255, 0.25);
    color: var(--text-white);
}

.search-icon {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 0 0.375rem 0.375rem 0;
    padding: 0.75rem 1rem;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 0.375rem;
    overflow: hidden;
}

.accordion-header .accordion-button {
    background-color: var(--card-bg);
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--secondary-blue);
    color: var(--accent-blue);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-blue);
}

.accordion-body {
    background-color: rgba(26, 43, 74, 0.7);
    color: var(--text-light);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

/* Support Section */
.support-section {
    background-color: var(--secondary-blue);
    padding: 6rem 0;
}

.support-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    padding: 2rem;
}

.support-btn {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.support-btn:hover {
    background-color: var(--text-white);
    border-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.support-modal-content {
    background-color: var(--card-bg);
    color: var(--text-light);
    border-radius: 15px;
    border: none;
}

.support-modal-content .modal-header {
    border-bottom: none;
}

.support-modal-content .modal-title {
    color: var(--text-white);
}

.support-modal-content .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make close button white */
}

/* Testimonials Social Section */
.testimonials-section {
    background-color: var(--primary-dark-blue);
    padding: 6rem 0;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
}

.testimonial-badge {
    font-size: 0.9rem;
    padding: 0.5em 0.8em;
    border-radius: 50px;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-blue) !important;
    color: var(--primary-dark-blue) !important;
}

.testimonial-badge .bi {
    font-size: 1.1em;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--accent-blue);
    border-radius: 50%;
    padding: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #2c3e50; /* A slightly different dark blue/gray to stand out */
    border-top: 5px solid #e74c3c; /* Red border for warning */
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: rgba(44, 62, 80, 0.9);
    border: 1px solid #e74c3c;
    color: var(--text-white);
}

.disclaimer-title {
    color: #e74c3c;
    font-size: 1.8rem;
}

.disclaimer-title .bi {
    font-size: 1.5em;
    vertical-align: middle;
}

.disclaimer-link {
    color: #e74c3c !important;
    font-weight: 600;
}

.disclaimer-link:hover {
    color: var(--text-white) !important;
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-dark-blue);
    padding: 3rem 0 1rem;
    color: var(--text-light);
}

.footer-section .logo-img {
    height: 40px;
    width: auto;
}

.footer-section .site-title-footer {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

.check-achievements-btn {
    background-color: var(--accent-blue);
    color: var(--primary-dark-blue);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.check-achievements-btn:hover {
    background-color: var(--text-white);
    color: var(--primary-dark-blue);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: var(--border-color);
}

.responsible-gaming-logos {
    gap: 20px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block; /* Ensures proper centering with flex */
    margin: auto; /* Ensures proper centering with flex */
}

.footer-logo-18plus {
    max-width: 60px;
    height: auto;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1040;
    border-top: 1px solid var(--border-color);
    animation: slideUp 0.5s ease-out;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.cookie-modal-content {
    background-color: var(--card-bg);
    color: var(--text-light);
    border-radius: 15px;
    border: none;
}

.cookie-modal-content .modal-header {
    border-bottom: none;
}

.cookie-modal-content .modal-title {
    color: var(--text-white);
}

.cookie-modal-content .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make close button white */
}

.cookie-modal-content .form-check-label {
    color: var(--text-white);
}

.text-muted-custom {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
}

/* General utility for hidden elements */
.hidden-on-load {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .game-cards-stack {
        width: 250px;
        height: 300px;
        margin-top: 3rem;
    }
    .game-card-item.card-1 { transform: rotateY(10deg) rotateX(5deg) translateY(0px) scale(0.9); }
    .game-card-item.card-2 { transform: rotateY(-5deg) rotateX(-2deg) translateY(10px) scale(0.95); }
    .game-card-item.card-3 { transform: rotateY(0deg) rotateX(0deg) translateY(20px) scale(1); }

    .section-title {
        font-size: 2rem;
    }
    .feature-item {
        margin-bottom: 1rem;
    }
    .daily-challenges-row {
        flex-wrap: nowrap;
    }
    .daily-challenges-row > .col-12 {
        flex: 0 0 auto;
        width: 85%; /* Adjust width for horizontal scroll on mobile */
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        width: 100%;
    }
    .cookie-banner p {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .header-section .site-title {
        font-size: 1.5rem;
    }
    .hero-section {
        padding-top: 60px; /* Adjust for smaller header */
    }
    body {
        padding-top: 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .call-to-action-btn-large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    .game-cards-stack {
        width: 220px;
        height: 270px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .feature-item {
        padding: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .footer-section .site-title-footer {
        font-size: 1.2rem;
    }
    .disclaimer-title {
        font-size: 1.5rem;
    }
    .disclaimer-content p {
        font-size: 0.9rem;
    }
}
/* Styles for the main content frame */
.dataTrustFrame {
    padding: 3rem 1.5rem; /* Top/bottom padding and left/right padding for the content area */
    max-width: 1200px; /* Maximum width for better readability on large screens */
    margin-left: auto; /* Center the content frame horizontally */
    margin-right: auto; /* Center the content frame horizontally */
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

/* Heading 1 styles within the content frame */
.dataTrustFrame h1 {
    font-size: 2.2rem; /* Font size for H1 */
    margin-top: 2rem; /* Top margin for H1 */
    margin-bottom: 1rem; /* Bottom margin for H1 */
    color: var(--text-white); /* White text color for headings */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for better readability */
}

/* Heading 2 styles within the content frame */
.dataTrustFrame h2 {
    font-size: 1.8rem; /* Font size for H2 */
    margin-top: 1.8rem; /* Top margin for H2 */
    margin-bottom: 0.9rem; /* Bottom margin for H2 */
    color: var(--text-white); /* White text color for headings */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3; /* Line height for better readability */
}

/* Heading 3 styles within the content frame */
.dataTrustFrame h3 {
    font-size: 1.5rem; /* Font size for H3 */
    margin-top: 1.6rem; /* Top margin for H3 */
    margin-bottom: 0.8rem; /* Bottom margin for H3 */
    color: var(--text-white); /* White text color for headings */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.4; /* Line height for better readability */
}

/* Heading 4 styles within the content frame */
.dataTrustFrame h4 {
    font-size: 1.3rem; /* Font size for H4 */
    margin-top: 1.4rem; /* Top margin for H4 */
    margin-bottom: 0.7rem; /* Bottom margin for H4 */
    color: var(--text-white); /* White text color for headings */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5; /* Line height for better readability */
}

/* Heading 5 styles within the content frame */
.dataTrustFrame h5 {
    font-size: 1.15rem; /* Font size for H5 */
    margin-top: 1.2rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    color: var(--text-white); /* White text color for headings */
    font-weight: 500; /* Medium font weight */
    line-height: 1.6; /* Line height for better readability */
}

/* Paragraph styles within the content frame */
.dataTrustFrame p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.7; /* Line height for improved readability */
    margin-bottom: 1.2rem; /* Bottom margin for paragraphs */
    color: var(--text-light); /* Light text color for paragraphs */
}

/* Unordered and Ordered list styles within the content frame */
.dataTrustFrame ul,
.dataTrustFrame ol {
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.8rem; /* Left padding for list indentation */
    color: var(--text-light); /* Light text color for list items */
}

/* Specific style for unordered lists */
.dataTrustFrame ul {
    list-style-type: disc; /* Default disc style for unordered lists */
}

/* Specific style for ordered lists */
.dataTrustFrame ol {
    list-style-type: decimal; /* Default decimal style for ordered lists */
}

/* List item styles within the content frame */
.dataTrustFrame li {
    margin-bottom: 0.6rem; /* Bottom margin for individual list items */
    color: var(--text-light); /* Light text color for list items */
}

/* No bottom margin for the last list item to prevent extra space */
.dataTrustFrame li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .dataTrustFrame {
        padding: 2rem 1rem; /* Adjust padding for smaller screens */
    }

    .dataTrustFrame h1 {
        font-size: 1.8rem; /* Smaller H1 on mobile */
    }

    .dataTrustFrame h2 {
        font-size: 1.5rem; /* Smaller H2 on mobile */
    }

    .dataTrustFrame h3 {
        font-size: 1.3rem; /* Smaller H3 on mobile */
    }

    .dataTrustFrame h4 {
        font-size: 1.1rem; /* Smaller H4 on mobile */
    }

    .dataTrustFrame h5 {
        font-size: 1rem; /* Smaller H5 on mobile */
    }

    .dataTrustFrame p {
        font-size: 0.95rem; /* Slightly smaller paragraphs on mobile */
    }

    .dataTrustFrame ul,
    .dataTrustFrame ol {
        padding-left: 1.5rem; /* Adjust list padding on mobile */
    }
}


.game-card h5, .challenge-card .card-text{
    color: #fff !important;
}


 #age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000;
    background: rgb(0 0 0 / 96%);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  #age-popup.active {
    display: flex;
  }

  .popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }


  .buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-yes {
    background-color: green;
    color: white;
    margin-right: 10px;
}

.btn-no {
    background-color: red;
    color: white;
}

