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

* {
    box-sizing: border-box;
}

.bg-dark {
    background-color: #0f0f1a !important;
}

.bg-dark-light {
    background-color: #1a1a2e !important;
}

.bg-secondary-dark {
    background-color: #2c0b4e !important;
}

.bg-primary {
    background-color: #6a0572 !important;
}

.bg-warning-dark {
    background-color: #3d0a0a !important;
}

.text-primary {
    color: #9d00ff !important;
}

.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-primary {
    background-color: #9d00ff;
    border-color: #9d00ff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #7b00cc;
    border-color: #7b00cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-outline-info {
    color: #00bcd4;
    border-color: #00bcd4;
}

.btn-outline-info:hover {
    background-color: #00bcd4;
    color: #fff;
}

.btn-light {
    color: #9d00ff !important;
}

.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.header {
    background-color: #0f0f1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

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

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

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #9d00ff !important;
}

.offcanvas {
    --bs-offcanvas-width: 250px;
}

.offcanvas .nav-link {
    padding: 0.75rem 1rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-section .container-fluid {
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.1rem;
}

.trust-badge {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    font-weight: 600;
}

.certification-icons i {
    text-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

.game-preview-card {
    height: 200px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-preview-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e0e0e0;
    background: linear-gradient(45deg, #9d00ff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    background-color: #1a1a2e;
    border: 1px solid rgba(157, 0, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    color: #9d00ff;
}

.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1a1a2e !important;
    border: 1px solid rgba(157, 0, 255, 0.3) !important;
}

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

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

.game-card .game-link {
    display: block;
    height: 300px;
    overflow: hidden;
}

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

.game-card .card-title {
    font-size: 1.5rem;
}

.play-game-btn {
    text-decoration: none;
}

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

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

.game-iframe-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-iframe-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-game-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1050;
    transition: color 0.3s ease;
}

.close-game-modal:hover {
    color: #dc3545;
}

.call-to-action h2 {
    font-size: 2rem;
}

.testimonial-card {
    background-color: #0f0f1a !important;
    border: 1px solid rgba(0, 188, 212, 0.3) !important;
}

.testimonial-card .avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid #9d00ff;
}

.testimonial-card .blockquote-footer {
    font-size: 0.9rem;
}

.disclaimer-box {
    background-color: #2a0808;
    border: 2px solid #dc3545 !important;
}

.disclaimer-box p {
    font-size: 0.95rem;
}

.disclaimer-box .disclaimer-email {
    word-break: break-all;
}

.footer {
    background-color: #0f0f1a;
}

.footer-email {
    word-break: break-all;
}

.footer-logos {
    gap: 1.5rem;
}

.footer-partner-logo {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-partner-logo:hover {
    transform: scale(1.05);
}

.age-modal, .cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.active, .cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.age-modal-content, .cookie-modal-content {
    background-color: #1a1a2e;
    border: 1px solid #9d00ff;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1070;
}

@media (max-width: 1100px) {
    .navbar-nav {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p.lead {
        font-size: 0.95rem;
    }
    .navbar-brand .site-name {
        font-size: 1.4rem;
    }
    .navbar-brand .site-logo {
        height: 30px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .call-to-action h2 {
        font-size: 1.8rem;
    }
    .game-card .card-img-top {
        height: 250px;
    }
    .testimonial-card .avatar {
        width: 50px;
        height: 50px;
    }
    .disclaimer-box p {
        font-size: 0.85rem;
    }
    .footer-partner-logo {
        max-width: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .hero-section h1 {
        font-size: 1.9rem;
    }
    .navbar-brand .site-name {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .call-to-action h2 {
        font-size: 2rem;
    }
    .game-card .card-img-top {
        height: 350px;
    }
    .footer-partner-logo {
        max-width: 100px;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .navbar-brand .site-name {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .call-to-action h2 {
        font-size: 2.5rem;
    }
    .game-card .card-img-top {
        height: 400px;
    }
    .footer-partner-logo {
        max-width: 150px;
    }
}
/* Base padding for the content frame */
.dataClauseFrame {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Heading styles */
.dataClauseFrame h1 {
    font-size: 1.8rem; /* Not too large, clearly a main heading */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

.dataClauseFrame h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

.dataClauseFrame h5 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

/* Paragraph styles */
.dataClauseFrame p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Improved readability for text */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.dataClauseFrame ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; /* Indentation for bullets */
}

/* List item styles */
.dataClauseFrame li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.6; /* Improved readability for list text */
    margin-bottom: 0.5rem; /* Space between list items */
}
.offcanvas {
   height: 100vh !important;
   max-height: 100vh !important;
}
