/* Modal alapok */
.age-gdpr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.age-gdpr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.age-gdpr-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000000;
    max-height: 85vh;
    overflow-y: auto;
}

.age-gdpr-content h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    color: #333;
    text-align: center;
}

.age-gdpr-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

/* GDPR szöveg formázás */
.gdpr-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.gdpr-text ul {
    margin: 10px 0;
    padding-left: 20px;
}

.gdpr-text li {
    margin: 5px 0;
}

.gdpr-text a {
    color: #0066cc;
    text-decoration: underline;
}

.gdpr-text a:hover {
    color: #004499;
}

/* Gombok */
.age-gdpr-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.age-gdpr-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
}

.age-gdpr-yes {
    background: #28a745;
    color: white;
}

.age-gdpr-yes:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.age-gdpr-no {
    background: #dc3545;
    color: white;
}

.age-gdpr-no:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Mobilra optimalizálás */
@media (max-width: 768px) {
    .age-gdpr-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }

    .age-gdpr-content h2 {
        font-size: 22px;
    }

    .age-gdpr-content p {
        font-size: 14px;
    }

    .age-gdpr-buttons {
        flex-direction: column;
    }

    .age-gdpr-btn {
        max-width: 100%;
        width: 100%;
    }

    .gdpr-text {
        font-size: 13px;
    }
}

/* Scrollbar stílus GDPR modalhoz */
.age-gdpr-content::-webkit-scrollbar {
    width: 8px;
}

.age-gdpr-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.age-gdpr-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.age-gdpr-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}