body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a0f2b; /* Dark purple background */
    color: #f0f0f0; /* Light text color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

.top-bar {
    background-color: #6a0572; /* Darker purple for top bar */
    color: #fff;
    font-size: 0.9rem;
}

.navbar {
    background-color: #2e0d4d; /* Even darker purple for navbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.navbar-brand .site-name {
    color: #fff;
    font-weight: 700;
    font-size: clamp(16px, 4vw, 26px);
    background: linear-gradient(45deg, #e91e63, #9c27b0); /* Pink to purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff69b4; /* Bright pink on hover/active */
}

.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%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    height: 80vh;
    background-image: url('uploads/uploads/social-gaming-bg_6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 13, 77, 0.7), rgba(106, 5, 114, 0.7)); /* Dark purple gradient overlay */
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.btn-primary {
    background-color: #ff69b4; /* Bright pink */
    border-color: #ff69b4;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e91e63; /* Darker pink on hover */
    border-color: #e91e63;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #9c27b0; /* Purple */
    border-color: #9c27b0;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #6a0572; /* Darker purple on hover */
    border-color: #6a0572;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0); /* Pink to purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.games-section {
    background-color: #220c3b; /* Slightly lighter dark purple */
}

.game-card {
    background-color: #3a115e; /* Dark purple for cards */
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
}

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

.game-card .game-img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 250px; /* Fixed height for game images */
    object-fit: cover;
}

.game-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff69b4; /* Pink title */
    margin-bottom: 15px;
}

.game-card .card-text {
    font-size: 1rem;
    color: #ccc;
}

.game-link {
    text-decoration: none;
}

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

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

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

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

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

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

.about-section {
    background-color: #1a0f2b;
}

.about-section p {
    color: #ccc;
}

.about-section .lead {
    color: #e0e0e0;
}

.faq-section {
    background-color: #220c3b;
}

.faq-section .form-control {
    background-color: #3a115e;
    border: 1px solid #6a0572;
    color: #f0f0f0;
    padding: 12px 15px;
    border-radius: 8px;
}

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

.faq-section .form-control:focus {
    background-color: #4d187c;
    border-color: #ff69b4;
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
    color: #f0f0f0;
}

.faq-section .input-group-text {
    background-color: #6a0572;
    border: 1px solid #6a0572;
    color: #fff;
    border-radius: 0 8px 8px 0;
}

.accordion-item {
    background-color: #3a115e;
    border: 1px solid #6a0572;
    margin-bottom: 10px;
    border-radius: 8px;
}

.accordion-header .accordion-button {
    background-color: #4d187c;
    color: #f0f0f0;
    font-weight: 600;
    border-radius: 8px;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #6a0572;
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
    border-color: #ff69b4;
}

.accordion-body {
    background-color: #3a115e;
    color: #ccc;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.newsletter-section {
    background-color: #1a0f2b;
    padding: 60px 0;
}

.newsletter-section .form-control {
    background-color: #3a115e;
    border: 1px solid #6a0572;
    color: #f0f0f0;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
}

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

.newsletter-section .form-control:focus {
    background-color: #4d187c;
    border-color: #ff69b4;
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25);
    color: #f0f0f0;
}

.newsletter-section .btn-primary {
    border-radius: 0 8px 8px 0;
    padding: 12px 25px;
}

.newsletter-section .form-text {
    font-size: 0.85rem;
    color: #a0a0a0 !important;
}

.contact-section {
    background-color: #220c3b;
}

.contact-info {
    background-color: #3a115e;
    color: #f0f0f0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #ff69b4;
    font-size: 1.2rem;
}

.contact-info a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff69b4;
}

.disclaimer-section {
    background-color: #1a0f2b;
}

.disclaimer-content {
    background-color: #4d187c; /* Distinct background for disclaimer */
    border: 2px solid #ff69b4; /* Pink border */
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.disclaimer-title {
    color: #ff69b4;
    font-size: 2.2rem;
    font-weight: 700;
}

.disclaimer-title i {
    color: #fff;
}

.disclaimer-subtitle {
    color: #e91e63;
    font-size: 1.6rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.disclaimer-content p,
.disclaimer-content ul {
    font-size: 1rem;
    color: #e0e0e0;
}

.disclaimer-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.disclaimer-content ul li {
    margin-bottom: 8px;
}

.footer {
    background-color: #2e0d4d; /* Dark purple, same as navbar */
    color: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer .logo-img {
    height: 35px;
}

.footer .site-name-footer {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links li a {
    color: #e0e0e0;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.footer-partners {
    margin-top: 20px;
    gap: 2rem;
}

.footer-partner-logo {
    max-width: 120px;
    height: auto;
    display: block;
    filter: none; /* Ensure no grayscale */
}

.footer-18plus-icon {
    max-width: 60px; /* Smaller for 18+ icon */
    height: auto;
}

.copyright-text {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 20px;
}

/* Age Verification Modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: visible;
    opacity: 1;
}

.age-verification-overlay.hidden {
    visibility: hidden;
    opacity: 0;
}

.age-verification-content {
    background-color: #2e0d4d;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
}

.age-verification-content h2 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.age-verification-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Cookie Consent Modal */
.cookie-consent-modal {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
}

.cookie-consent-modal .modal-content {
    background-color: #2e0d4d;
    color: #f0f0f0;
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
}

.cookie-consent-modal .modal-header {
    border-bottom: 1px solid #6a0572;
    padding: 20px;
}

.cookie-consent-modal .modal-title {
    color: #ff69b4;
    font-weight: 700;
    font-size: 1.8rem;
}

.cookie-consent-modal .modal-body {
    padding: 20px;
}

.cookie-consent-modal .form-check-input:checked {
    background-color: #ff69b4;
    border-color: #ff69b4;
}

.cookie-consent-modal .form-check-label {
    color: #e0e0e0;
}

.cookie-consent-modal .modal-footer {
    border-top: 1px solid #6a0572;
    padding: 20px;
}

.cookie-consent-modal .btn-outline-secondary {
    color: #e0e0e0;
    border-color: #6a0572;
}

.cookie-consent-modal .btn-outline-secondary:hover {
    background-color: #6a0572;
    color: #fff;
}

.cookie-consent-modal .btn-info {
    background-color: #9c27b0;
    border-color: #9c27b0;
}

.cookie-consent-modal .btn-info:hover {
    background-color: #6a0572;
    border-color: #6a0572;
}

.cookie-consent-modal .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

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

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .section-description {
        font-size: 0.9rem;
    }

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

    .game-card .game-img {
        height: 200px;
    }

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

    .disclaimer-subtitle {
        font-size: 1.4rem;
    }

    .footer-partners {
        gap: 1.5rem;
    }

    .footer-partner-logo {
        max-width: 100px;
    }

    .footer-18plus-icon {
        max-width: 50px;
    }

    .age-verification-content {
        padding: 25px;
    }

    .age-verification-content h2 {
        font-size: 1.8rem;
    }

    .age-verification-content p {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {


    .navbar-brand .logo-img {
        height: 35px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

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

    .game-card .card-text {
        font-size: 0.9rem;
    }

    .newsletter-section .input-group .form-control,
    .newsletter-section .input-group .btn {
        border-radius: 8px;
    }

    .newsletter-section .input-group {
        flex-direction: column;
    }

    .newsletter-section .input-group .form-control {
        margin-bottom: 10px;
    }

    .newsletter-section .btn-primary {
        width: 100%;
    }

    .disclaimer-title {
        font-size: 18px;
    }

    .disclaimer-subtitle {
        font-size: 1.2rem;
    }

    .footer-links li {
        width: 100%;
        text-align: center;
    }

    .footer-partners {
        gap: 1rem;
    }

    .footer-partner-logo {
        max-width: 80px;
    }

    .footer-18plus-icon {
        max-width: 40px;
    }
}
/* Styles for the main container */
.consentTunnelGrid {
    margin-top: 2rem; /* Top margin for the container */
    margin-inline: 1rem; /* Left and right margins for the container */
    /* You might want to add max-width and center it for better readability on large screens */
    /* max-width: 768px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within the consent tunnel grid */
.consentTunnelGrid h1 {
    font-size: 1.8rem; /* Slightly smaller H1 for a compact look */
    margin-top: 1.5rem; /* Top margin for H1 */
    margin-bottom: 1rem; /* Bottom margin for H1 */
    line-height: 1.2; /* Line height for better readability */
    font-weight: 600; /* A bit lighter than default bold */
}

.consentTunnelGrid h2 {
    font-size: 1.5rem; /* H2 font size */
    margin-top: 1.4rem; /* Top margin for H2 */
    margin-bottom: 0.9rem; /* Bottom margin for H2 */
    line-height: 1.25; /* Line height for H2 */
    font-weight: 600; /* A bit lighter than default bold */
}

.consentTunnelGrid h3 {
    font-size: 1.3rem; /* H3 font size */
    margin-top: 1.3rem; /* Top margin for H3 */
    margin-bottom: 0.8rem; /* Bottom margin for H3 */
    line-height: 1.3; /* Line height for H3 */
    font-weight: 600; /* A bit lighter than default bold */
}

.consentTunnelGrid h4 {
    font-size: 1.15rem; /* H4 font size */
    margin-top: 1.2rem; /* Top margin for H4 */
    margin-bottom: 0.7rem; /* Bottom margin for H4 */
    line-height: 1.35; /* Line height for H4 */
    font-weight: 600; /* A bit lighter than default bold */
}

.consentTunnelGrid h5 {
    font-size: 1rem; /* H5 font size, close to body text */
    margin-top: 1.1rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    line-height: 1.4; /* Line height for H5 */
    font-weight: 600; /* A bit lighter than default bold */
}

/* Paragraph styles */
.consentTunnelGrid p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-top: 0.8rem; /* Top margin for paragraphs */
    margin-bottom: 0.8rem; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Standard line height for readability */
}

/* Unordered list styles */
.consentTunnelGrid ul {
    margin-top: 1rem; /* Top margin for the list */
    margin-bottom: 1rem; /* Bottom margin for the list */
    padding-left: 1.5rem; /* Indentation for list markers */
    list-style-type: disc; /* Default disc bullet points */
}

/* List item styles */
.consentTunnelGrid li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.5; /* Line height for text within list items */
}

.modal-dialog{
    max-width: 800px;
    width: 100%;

}

.modal-content{
    transform: translateY(10%);
    overflow-y: auto;
    max-height: 90vh;
}
.modal-footer.d-flex.justify-content-between{
    gap: 10px;
    justify-content: center !important;
    align-items: center;
}

.fade:not(.show) {
  opacity: 0;
  visibility: hidden;
}

.accordion-button::after{
    filter: invert(1);
}

.accordion-body{
    word-break: break-all;
}

.contact-info a{
    font-size: clamp(14px, 4vw, 16px) !important;
    word-break: break-all;
}

.body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}