/* ========================================
   GusPad Soundboard - Legal Pages Styles
   For Privacy Policy and Terms of Use
   ======================================== */

/* CSS Variables */
:root {
    --primary-blue: #3873D9;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.8;
}

/* ========================================
   Header
   ======================================== */
header {
    padding: 1.5rem 2rem;
    background: var(--dark-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.lang-switch {
    background: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.lang-switch:hover {
    color: var(--text-primary);
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ========================================
   Typography
   ======================================== */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ========================================
   Links
   ======================================== */
a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: var(--dark-surface);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.3s;
}

.back-link:hover {
    background: var(--primary-blue);
    text-decoration: none;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--dark-surface);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}
