/* Cookie Notification Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 1001;
    transition: bottom 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-content p {
    color: #d1d5db;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.6;
}

.cookie-details {
    margin-top: 10px;
}

.cookie-details small {
    color: #9ca3af;
    font-size: 12px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    min-height: 44px;
    min-width: 44px;
    text-decoration: none;
}

.btn-primary {
    background: #7c3aed;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        padding: 0 10px;
    }

    .cookie-content h3 {
        font-size: 18px;
    }

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

@media (max-width: 480px) {
    .cookie-content {
        padding: 0 10px;
    }

    .cookie-content h3 {
        font-size: 18px;
    }

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-banner {
        background: #000;
        border-top: 2px solid #fff;
    }

    .btn-primary {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        transition: none;
    }

    .btn-primary:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .cookie-banner {
        display: none !important;
    }
}