:root {
    --bg-midnight: #0b1121;
    --bg-card: #1e293b;
    --accent-red: #ef4444;
    --text-head: #f8fafc;
    --text-body: #94a3b8;
    --max-width: 800px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-midnight);
    color: var(--text-body);
    line-height: 1.6;
}

h1,
h2,
h3 {
    color: var(--text-head);
}
a {
    color: var(--accent-red);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

header {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-head);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover {
    color: var(--accent-red);
    text-decoration: none;
}

.back-btn::before {
    content: '←';
    margin-right: 10px;
    font-size: 1.2rem;
}

section {
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 5px;
}

h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}
p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
}

.agb-header-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .lang-switch {
        top: 20px;
        right: 20px;
    }
}
