/* Cookie Banner Styles */
.cookie-banner {
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 3px solid #e2b43b;
    padding: 24px 32px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text p {
    margin: 0;
}

.cookie-text a {
    color: #e2b43b;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #e2b43b;
    color: #00020c;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 180, 59, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    border-color: #e2b43b;
    color: #e2b43b;
}

.btn-outline {
    background: transparent;
    color: #e2b43b;
    border: 2px solid #e2b43b;
}

.btn-outline:hover {
    background: #e2b43b;
    color: #00020c;
}

/* Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 2, 12, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.cookie-modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    background: #333333;
    padding: 24px;
    border-bottom: 2px solid #e2b43b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #e2b43b;
    color: #00020c;
}

.modal-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    background: #00020c;
    border-radius: 8px;
    border-left: 4px solid #e2b43b;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-title {
    color: #e2b43b;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.category-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-text {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: #333333;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: #e2b43b;
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.category-description {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
}

.modal-footer {
    padding: 24px;
    background: #333333;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Demo Content */
.demo-content {
    text-align: center;
    padding: 40px;
}

.demo-content h1 {
    color: #e2b43b;
    margin-bottom: 20px;
    font-size: 32px;
}

.demo-content p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
}

.demo-btn {
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 140px;
    }
}