.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--light-gray);
}

.cookie-content a {
    color: var(--cyan);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--cyan-hover);
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: var(--cyan);
    color: var(--navy);
}

.cookie-btn.accept:hover {
    background-color: var(--cyan-hover);
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.customize {
    background-color: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

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

.cookie-customizer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-customizer.show {
    display: block;
}

.cookie-customizer-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-customizer-header {
    margin-bottom: 24px;
}

.cookie-customizer-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.cookie-customizer-header p {
    font-size: 13px;
    color: var(--light-gray);
    line-height: 1.5;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-option {
    background-color: rgba(26, 41, 66, 0.5);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.cookie-option-info p {
    font-size: 12px;
    color: var(--light-gray);
    line-height: 1.5;
    margin: 0;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch {
    position: relative;
    width: 44px;
    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: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

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

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--cyan);
}

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

.toggle-switch input:disabled + .toggle-slider {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-customizer-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-customizer-actions .cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-customizer {
        padding: 20px 16px;
    }

    .cookie-option {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-toggle {
        justify-content: space-between;
    }

    .cookie-customizer-actions {
        flex-direction: column;
    }

    .cookie-customizer-actions .cookie-btn {
        width: 100%;
    }
}