/* legal-styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

:root {
    --bg-deep: #051014;
    --accent-cyan: #00F2EA;
    --text-main: #E0F7FA;
    --text-muted: #6C8D9B;
    --card-bg: #0B1E27;
}

body { 
    background-color: var(--bg-deep); 
    color: var(--text-main); 
    font-family: 'Outfit', sans-serif; 
    line-height: 1.8;
}

.legal-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 4rem 8%;
    background-color: var(--card-bg);
    border-radius: 32px;
    border: 1px solid rgba(0, 242, 234, 0.1);
}

/* --- COOKIE BANNER UI --- */
#cookie-banner {
    position: fixed;
    bottom: 30px; /* Lifted for air */
    left: 30px;
    right: 30px;
    background: #0B1E27; 
    border: 1px solid var(--accent-cyan);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    visibility: hidden;
}

#cookie-banner p { 
    margin: 0 !important; 
    font-size: 0.95rem; 
    color: #fff; 
    padding-right: 20px;
    line-height: 1.4;
}

/* Primary Accept Button */
.cookie-btn {
    background: var(--accent-cyan);
    color: #051014;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.cookie-btn:hover { transform: scale(1.05); }

/* Secondary Decline Button */
.cookie-btn-alt {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}

.cookie-btn-alt:hover {
    color: #fff;
    border-color: #fff;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    #cookie-banner { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
        bottom: 15px; left: 15px; right: 15px;
    }
    #cookie-banner p { padding-right: 0; }
}

/* --- TYPOGRAPHY --- */
h1 { color: #fff; font-size: 2.5rem; margin-bottom: 2rem; font-weight: 300; }
h2 { color: var(--accent-cyan); font-size: 1.5rem; margin-top: 3rem; margin-bottom: 1rem; font-weight: 700; border-bottom: 1px solid rgba(0, 242, 234, 0.1); padding-bottom: 10px; }
h3 { color: #fff; font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }

p, li { color: var(--text-main); margin-bottom: 1.2rem; font-size: 1rem; opacity: 0.9; }
ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }

.last-updated { font-family: monospace; color: var(--accent-cyan); font-size: 0.8rem; margin-bottom: 3rem; display: block; }

.back-home { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.back-home:hover { color: var(--accent-cyan); }

@media (max-width: 768px) {
    .legal-container { margin: 1rem; padding: 2rem 6%; }
}