/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    z-index: 9999;
    border-top: 2px solid #FFD700;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-consent-banner.hidden {
    display: none;
}

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

.consent-text {
    flex: 1;
    padding-right: 20px;
}

.consent-text h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.consent-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consent-link:hover {
    color: #fff;
}

.consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.consent-btn.accept {
    background-color: #FFD700;
    color: #000;
}

.consent-btn.accept:hover {
    background-color: #ffeb80;
}

.consent-btn.customize {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.consent-btn.customize:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Settings modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.active {
    opacity: 1;
    visibility: visible;
}

.settings-content {
    background-color: #121212;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.settings-header h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.close-settings {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-settings:hover {
    color: #FFD700;
}

.cookie-option {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 15px;
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-title {
    font-weight: 600;
    color: #FFD700;
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #FFD700;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.option-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.settings-footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .consent-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .consent-buttons {
        justify-content: space-between;
    }
}