/* Legal Pages Specific Styles */

body.legal-page {
    background-color: #0a0a0f;
    color: #e0e0e0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.legal-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.legal-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h2 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #00f2ff;
}

.legal-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content ul,
.legal-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.legal-content a {
    color: #00f2ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #a35bff;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #00f2ff;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-title {
    font-family: 'Orbitron', sans-serif;
    color: #00f2ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00f2ff 0%, #0099ff 100%);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
    transform: translateY(-1px);
}

.cookie-btn-refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}