/* Legal Pages - Privacy Policy & Terms */
:root {
    --primary-yellow: #FFDB11;
    --bg-dark: #131313;
    --text-white: #FFFFFF;
    --text-gray: rgba(255, 255, 255, 0.7);
    --font-space: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-space);
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
}

.legal-page {
    max-width: 410px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 18px;
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    z-index: 100;
}

.back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    transition: background 0.2s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.back-btn svg {
    width: 20px;
    height: 20px;
}

.header-title {
    font-size: 20px;
    font-weight: 600;
}

/* Content */
.content {
    padding: 0 18px;
}

.last-updated {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

li {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

li strong {
    color: var(--text-white);
}

a {
    color: var(--primary-yellow);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        background: #0a0a0a;
    }

    .legal-page {
        margin: 40px auto;
        background: var(--bg-dark);
        border-radius: 30px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        min-height: auto;
    }

    .header {
        border-radius: 30px 30px 0 0;
    }
}