/* GDPR Popup Styles */
.gdpr-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1rem;
    backdrop-filter: blur(8px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.gdpr-overlay.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.gdpr-overlay.hidden {
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
}

.gdpr-container {
    background: rgba(15, 15, 15, 0.9);
    border: 2px solid #e3fc02;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
    width: 100%;
    color: #fff;
    box-shadow: 0 0 20px rgba(227, 252, 2, 0.7);
    position: relative;
    overflow: hidden;
    animation: glow 4s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(227, 252, 2, 0.7); }
    to { box-shadow: 0 0 25px rgba(227, 252, 2, 1); }
}

.gdpr-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e3fc02, #00ffff, #e3fc02);
    z-index: -2;
    background-size: 400%;
    animation: glowing 20s linear infinite;
    filter: blur(3px);
    opacity: 0.3;
    border-radius: 8px;
}

.gdpr-container h2 {
    color: #e3fc02;
    margin-top: 0;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(227, 252, 2, 0.7);
    position: relative;
}

/*.gdpr-container h2::before, .gdpr-container h2::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    height: 2px;*/
/*    width: 15%;*/
/*    background: linear-gradient(90deg, transparent, #e3fc02, transparent);*/
/*}*/

.gdpr-container h2::before {
    left: 5%;
}

.gdpr-container h2::after {
    right: 5%;
}

.gdpr-container p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gdpr-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 1rem;
}

.gdpr-button {
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gdpr-button::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(227, 252, 2, 0.3), transparent);
    transition: 0.5s;
}

.gdpr-button:hover::before {
    top: 100%;
}

.gdpr-button.primary {
    background: rgba(30, 30, 30, 0.9);
    color: #e3fc02;
    border: 1px solid #e3fc02;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gdpr-button.primary:hover {
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gdpr-button.secondary {
    background: transparent;
    border: 1px solid rgba(227, 252, 2, 0.5);
    color: white;
}

.gdpr-button.secondary:hover {
    border-color: #e3fc02;
    color: #e3fc02;
    transform: translateY(-3px);
}

.customize-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid rgba(227, 252, 2, 0.2);
    backdrop-filter: blur(5px);
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    margin-left: 0.5rem;
    font-weight: bold;
}

.cookie-description {
    margin-left: 1.8rem;
    font-size: 0.85rem;
    color: #cccccc;
    margin-top: 0.3rem;
}

.gdpr-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.gdpr-footer a {
    color: #e3fc02;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(227, 252, 2, 0.3);
}

.gdpr-footer a:hover {
    text-shadow: 0 0 8px rgba(227, 252, 2, 0.7);
}

.gdpr-footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #e3fc02;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.gdpr-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 600px) {
    .gdpr-options {
        flex-direction: column;
    }
    
    .gdpr-button {
        width: 100%;
    }
    
    .gdpr-container h2::before, .gdpr-container h2::after {
        width: 10%;
    }
}