/* Global Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #ffd700;
    font-weight: 700;
}

.lead {
    color: #cccccc;
}

.card {
    border: 2px solid #444444;
    border-radius: 12px;
}

.btn-warning {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #ffed4e;
    border-color: #ffed4e;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Cookie Banner Overlay */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content {
    background-color: #1a1a1a;
    border: 3px solid #ffd700;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.cookie-banner.show .cookie-banner-content {
    transform: scale(1);
}

.cookie-banner-header {
    margin-bottom: 20px;
    text-align: center;
}

.cookie-banner-header h4 {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0;
}

.cookie-banner-body {
    margin-bottom: 24px;
}

.cookie-banner-body p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-categories {
    background-color: #2d2d2d;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.cookie-category {
    padding: 16px 0;
    border-bottom: 1px solid #444444;
}

.cookie-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-check {
    padding-left: 2.5rem;
}

.form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin-top: 0.25rem;
    cursor: pointer;
    background-color: #444444;
    border: 2px solid #666666;
}

.form-check-input:checked {
    background-color: #ffd700;
    border-color: #ffd700;
}

.form-check-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-check-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-check-label {
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

.form-check-label strong {
    display: block;
    margin-bottom: 4px;
    color: #ffd700;
}

.form-check-label small {
    color: #999999;
    font-size: 0.85rem;
}

.cookie-banner-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
    margin-top: 20px;
}

.btn-outline-light {
    border: 2px solid #cccccc;
    color: #cccccc;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.btn-outline-light:hover {
    background-color: #cccccc;
    color: #1a1a1a;
    border-color: #cccccc;
}

.btn-warning-solid {
    background-color: #ffd700;
    border: 2px solid #ffd700;
    color: #1a1a1a;
    font-weight: 700;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-warning-solid:hover {
    background-color: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-content {
        padding: 24px 20px;
        max-height: 85vh;
    }
    
    .cookie-banner-header h4 {
        font-size: 1.5rem;
    }
    
    .cookie-banner-footer {
        flex-direction: column;
    }
    
    .cookie-banner-footer button {
        width: 100%;
    }
    
    .form-check {
        padding-left: 2rem;
    }
    
    .form-check-input {
        width: 2.5rem;
        height: 1.25rem;
    }
}

/* Custom Scrollbar for Cookie Banner */
.cookie-banner-content::-webkit-scrollbar {
    width: 8px;
}

.cookie-banner-content::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 4px;
}

.cookie-banner-content::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

.cookie-banner-content::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #1a1a1a;
}