/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 30, 50, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 16px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text h4 {
    color: #00d4ff;
    font-size: 1rem;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-text p {
    color: #a0a0b0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #4de8ff;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #0a0a0f;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #4de8ff, #00b8e6);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #a0a0b0;
    border: 1px solid rgba(160, 160, 176, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(160, 160, 176, 0.5);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .cookie-consent-banner {
        padding: 14px 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-consent-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}

/* Login Consent Checkbox */
.login-consent-section {
    margin: 16px 0 8px 0;
    padding: 0 4px;
    text-align: center;
}

.consent-checkbox-label {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #a0a0b0;
    line-height: 1.4;
}

.consent-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #00d4ff;
    cursor: pointer;
    flex-shrink: 0;
}

.consent-checkbox-label a {
    color: #00d4ff;
    text-decoration: underline;
}

.consent-checkbox-label a:hover {
    color: #4de8ff;
}