/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(25, 25, 25, 0.95));
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(191, 0, 255, 0.3);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out;
}

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

.cookie-banner-text {
    flex: 1;
    color: #ffffff;
}

.cookie-banner-text h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #ff00bf, #bf00ff);
    color: white;
}

.cookie-accept-btn:hover {
    background: linear-gradient(135deg, #ff5ec7, #d633ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 0, 255, 0.4);
}

.cookie-decline-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.cookie-decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #999;
    transform: translateY(-2px);
}

.cookie-info-btn {
    background: transparent;
    color: #bf00ff;
    border: 2px solid #bf00ff;
}

.cookie-info-btn:hover {
    background: rgba(191, 0, 255, 0.1);
    transform: translateY(-2px);
}

/* Cookie Information Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(191, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.cookie-modal-close {
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: #ff00bf;
}

.cookie-modal-body {
    padding: 20px 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.cookie-modal-body h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.cookie-modal-body h3:first-child {
    margin-top: 0;
}

.cookie-modal-body h4 {
    color: #bf00ff;
    font-size: 16px;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.cookie-modal-body p {
    margin: 10px 0;
    font-size: 14px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #bf00ff;
}

.cookie-category p strong {
    color: #ffffff;
}

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

.cookie-links a {
    color: #bf00ff;
    text-decoration: none;
    font-weight: 600;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 12px 18px;
        font-size: 13px;
        min-width: 90px;
    }
    
    .cookie-modal {
        padding: 10px;
    }
    
    .cookie-modal-content {
        max-height: 95vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-modal-header h2 {
        font-size: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-category {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin: 0;
    }
    
    .cookie-modal-header {
        padding: 20px 15px 15px;
    }
    
    .cookie-modal-body {
        padding: 15px;
    }
    
    .cookie-modal-footer {
        padding: 15px;
    }
}
