@font-face {
    font-family: 'Cera Stencil';
    src: url('/fonts/CeraStencil.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cera Stencil';
    src: url('/fonts/CeraStencilBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --velvet: #750851;
    --velvet-light: #a00a72;
    --olive: #808000;
    --olive-light: #b3b300;
    --gradient-primary: linear-gradient(135deg, var(--velvet) 0%, var(--olive) 100%);
    --bg-dark: #0a0a0a;
    --card-bg: #141414;
    --text-muted: #a0a0a0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img {
    height: 32px;
    width: auto;
}
.logo-text {
    font-family: 'Cera Stencil', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--velvet);
}
.logo-text span {
    color: var(--olive);
}
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-ghost:hover {
    border-color: var(--olive);
    color: #fff;
    background: rgba(128, 128, 0, 0.06);
}
.legal-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 48px 40px;
    margin: 40px 0 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.legal-card h1 {
    font-family: 'Cera Stencil', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.legal-card .last-updated {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}
.legal-card h2 {
    font-family: 'Cera Stencil', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--olive);
    margin: 32px 0 12px 0;
}
.legal-card p, .legal-card li {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}
.legal-card ul {
    padding-left: 24px;
    margin: 8px 0 16px 0;
}
.legal-card li {
    margin-bottom: 6px;
}
.legal-card a {
    color: var(--olive);
    text-decoration: none;
}
.legal-card a:hover {
    text-decoration: underline;
}
.legal-card strong {
    color: #fff;
}
footer {
    margin-top: auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #0a0a0a;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #666;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--olive);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-load {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}
@media (max-width: 768px) {
    .legal-card {
        padding: 32px 20px;
    }
    .legal-card h1 {
        font-size: 28px;
    }
    .legal-card h2 {
        font-size: 20px;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}