

/* Age Gate Overlay - Covers the entire screen */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 32, 47, 0.95); /* #20202f with opacity */
    display: flex; /* Hidden by default, shown by JS if needed */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(5px); /* Optional: blurs content behind */
}

/* Age Gate Modal - The pop-up box */
#age-gate-modal {
    background-color: #2a2a3a; /* ოდნავ ღია ფონი მოდულისთვის */
    padding: 35px 45px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    color: #e4b95b; /* მითითებული ტექსტის ფერი */
    border: 1px solid #3a3a4a;
}

#age-gate-modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#age-gate-modal p {
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #d0d0d0; /* ოდნავ ღია ფერი ძირითადი ტექსტისთვის მოდულში */
}

#age-gate-modal p strong {
    color: #e4b95b; /* კითხვის ტექსტი */
    font-weight: 700;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 30px;
}

#age-gate-modal button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    min-width: 120px;
    letter-spacing: 0.5px;
}

#age-yes {
    background-color: #e4b95b; /* მითითებული ფერი */
    color: #20202f; /* ფონის ფერი ტექსტად */
}

#age-yes:hover {
    background-color: #d3a84a; /* ოდნავ მუქი */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 185, 91, 0.3);
}

#age-no {
    background-color: transparent;
    color: #e4b95b;
    border: 2px solid #e4b95b;
}

#age-no:hover {
    background-color: rgba(228, 185, 91, 0.1);
    color: #f4c86b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 185, 91, 0.1);
}

#age-restriction-message {
    color: #ff6b6b; /* წითელი შეტყობინებისთვის */
    margin-top: 20px;
    font-weight: bold;
    min-height: 20px; /* სიმაღლის დასაჭერად, რომ არ იხტუნაოს */
}

/* Main Site Content Styling (Example) */
#site-content {
    padding: 20px;
    text-align: center;
    max-width: 960px;
    margin: 40px auto;
}

#site-content header h1 {
    color: #e4b95b;
    margin-bottom: 30px;
}

#site-content footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #3a3a4a;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #age-gate-modal {
        padding: 25px 20px;
    }

    #age-gate-modal h2 {
        font-size: 1.6em;
    }

    #age-gate-modal p {
        font-size: 1em;
    }

    .button-container {
        flex-direction: column; /* Stack buttons on small screens */
        gap: 15px;
    }

    #age-gate-modal button {
        width: 100%;
        padding: 15px;
    }
}