/* Cookie Consent Banner Styles */

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-consent-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.cookie-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cookie-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: center;
}

.cookie-content p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px;
    text-align: center;
}

.cookie-details {
    margin: 15px 0;
}

.cookie-details details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
}

.cookie-details summary {
    color: #60a5fa;
    font-weight: 600;
    font-size: 14px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-details summary::-webkit-details-marker {
    display: none;
}

.cookie-details summary::before {
    content: '▶';
    font-size: 10px;
    transition: transform 0.2s;
}

.cookie-details details[open] summary::before {
    transform: rotate(90deg);
}

.cookie-details ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.8;
}

.cookie-details li {
    margin-bottom: 5px;
}

.cookie-details strong {
    color: #e2e8f0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cookie-actions button {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.cookie-policy-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #60a5fa;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-consent-banner {
        padding: 20px;
    }

    .cookie-icon {
        font-size: 36px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-actions {
        flex-direction: column;
    }
}