/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #00ff9d;
    /* Techy cyan/green */
    --accent-dim: rgba(0, 255, 157, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Subtle background mesh/grid */
body::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #111 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Layout */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    text-align: center;
    padding: 60px 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 90%;
}

.hero-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

h1 {
    font-weight: 600;
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff 20%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 8px 16px;
    background: var(--accent-dim);
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px var(--accent-color);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 15px var(--accent-color);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 5px var(--accent-color);
    }
}

footer {
    padding: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
}

a {
    color: #888;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

a:hover {
    color: var(--accent-color);
}

/* Privacy Page Specifics */
.content-wrapper {
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
    padding: 40px 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.content-wrapper p {
    line-height: 1.8;
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.content-wrapper strong {
    color: white;
}

.legal-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.back-link {
    display: inline-block;
    margin: 40px 0 0 40px;
    /* Top Left positioning-ish */
    color: #888;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.back-link:hover {
    color: white;
    transform: translateX(-5px);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        padding: 40px 20px;
        width: 85%;
    }

    .content-wrapper {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }
}