:root {
    --color-background: #121212;
    --color-surface: #1E1E1E;
    --color-text: #E0E0E0;
    --color-text-secondary: #A0A0A0;
    --color-accent: #00aaff; /* Azul de la web principal de ApkVox */
    --font-body: 'Roboto', sans-serif; /* Usamos una fuente más legible */
}

/* Importamos la fuente Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    padding: 2rem 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 2rem 3rem;
    border: 1px solid #333;
    border-radius: 8px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.effective-date {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

p, ul {
    font-size: 1rem;
    margin-bottom: 1rem;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #fff;
}

strong {
    color: #fff;
    font-weight: 700;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    font-weight: 700;
    border: 1px solid var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.back-link:hover {
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
}