:root {
    --primary-color: #990066;
    --primary-hover: #770050;
    --secondary-color: #007A00;
    --text-color: #666;
    --text-dark: #333;
    --text-light: #999;
    --bg-color: #f5f5f5;
    --card-bg: white;
    --border-color: #ddd;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: var(--bg-color);
}

.container {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-hover);
    text-decoration: none;
}

/* Home page specific */
.home-container {
    padding: 3rem;
}

.home-container h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.cta {
    margin-top: 2rem;
}

.privacy-link {
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

/* Email highlight */
.email {
    font-weight: 500;
    color: var(--text-dark);
}

/* Language preference buttons */
.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lang-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background-color: #fdf0f7;
}

.lang-btn.current {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.lang-btn.current:hover {
    background-color: var(--primary-hover);
}

.lang-name {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.lang-label {
    font-size: 0.85rem;
    color: #888;
}

.lang-btn.current .lang-label {
    color: rgba(255, 255, 255, 0.8);
}

.current-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

/* Privacy page */
.privacy-container {
    text-align: left;
    max-width: 700px;
    width: 100%;
}

.privacy-container h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-container h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-container section {
    margin-bottom: 1.5rem;
}

.privacy-container ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}
