/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(75, 255, 165, 0.2);
    padding: 20px 50px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: "DM Sans", sans-serif;
}

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

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

.cookie-consent-text {
    flex: 1;
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text strong {
    color: #4bffa5;
    font-weight: 600;
}

.cookie-consent-text a {
    color: #4bffa5;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    text-decoration: none;
}

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

.cookie-consent-btn {
    padding: 12px 24px;
    border: 2px solid #4bffa5;
    background: transparent;
    color: #4bffa5;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.cookie-consent-btn:hover {
    background: #4bffa5;
    color: #101010;
}

.cookie-consent-btn.secondary {
    border-color: #666;
    color: #666;
}

.cookie-consent-btn.secondary:hover {
    background: #666;
    color: #fff;
}

.cookie-consent-btn.primary {
    background: #4bffa5;
    color: #101010;
    font-weight: 600;
}

.cookie-consent-btn.primary:hover {
    background: #3de694;
    color: #101010;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #101010;
    border: 1px solid rgba(75, 255, 165, 0.2);
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    margin-bottom: 30px;
}

.cookie-settings-header h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.cookie-settings-header p {
    color: #bbb;
    font-size: 14px;
    margin: 0;
}

.cookie-settings-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-settings-group h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-settings-group p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #4bffa5;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 30px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
    
    .cookie-settings-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 15px 20px;
    }
    
    .cookie-consent-text {
        font-size: 13px;
    }
    
    .cookie-consent-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
