:root {
    --warm-brown: #5c4033;
    --coffee: #3e2723;
    --wood: #8b6f47;
    --cream: #f5f1e8;
    --sage: #87a878;
    --olive: #6b7c59;
    --forest: #4a5d3f;
    --amber: #ff8c42;
    --orange: #e67e22;
    --text-main: #3e2723;
    --text-light: #f5f1e8;
    --card-bg: rgba(245, 241, 232, 0.95);
}

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

body {
    font-family: 'VT323', monospace;
    background-color: var(--coffee);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(60, 39, 35, 0.7) 0%, rgba(75, 93, 63, 0.6) 100%);
    z-index: -1;
}

.container {
    max-width: 800px;
    width: 95%;
    padding: 2rem;
    z-index: 1;
}

.glass-card {
    background: var(--card-bg);
    border: 4px solid var(--wood);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 8px 8px 0 rgba(60, 39, 35, 0.3);
    animation: fadeIn 1s ease-out;
    position: relative;
}

.glass-card.text-center {
    text-align: center;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    border-radius: 8px;
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--coffee);
    text-shadow: 3px 3px 0 var(--amber);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.privacy-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0 var(--amber);
    text-align: center;
}

h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--forest);
}

.subtitle {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.disclaimer {
    font-size: 1.1rem;
    color: var(--text-light);
    width: fit-content;
    margin: 0 auto 1rem;
    display: block;
    padding: 0.5rem 1rem;
    background: var(--forest);
    border: 3px solid var(--olive);
    box-shadow: 4px 4px 0 rgba(60, 39, 35, 0.3);
}

.description {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--warm-brown);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

ul {
    list-style-type: square;
    margin-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

.features {
    text-align: left;
    margin-bottom: 3rem;
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1rem;
    background: rgba(139, 111, 71, 0.15);
    border: 2px solid var(--wood);
    border-radius: 6px;
    transition: transform 0.2s ease, background 0.2s;
    font-size: 1.2rem;
}

.feature-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(60, 39, 35, 0.2);
    background: rgba(139, 111, 71, 0.25);
}

.feature-icon {
    color: var(--amber);
    font-size: 1.3rem;
    line-height: 1.5;
}

.cta-button {
    font-family: 'Press Start 2P', cursive;
    display: inline-block;
    background: var(--amber);
    color: var(--coffee);
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0 var(--coffee);
    border: 3px solid var(--coffee);
}

.cta-button:hover {
    background: var(--orange);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--coffee);
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .privacy-page h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-width: 3px;
    }

    .cta-button {
        font-size: 0.7rem;
        padding: 0.8rem 1.5rem;
    }
}
