:root {
    --bg-color: #f0f2f5;
    --text-color: #333;
    --container-bg: white;
    --primary-color: #4CAF50;
    --primary-hover: #45a049;
    --shadow: rgba(0, 0, 0, 0.1);
}

.dark-theme {
    --bg-color: #18191a;
    --text-color: #e4e6eb;
    --container-bg: #242526;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 0;
    gap: 2rem;
    transition: background 0.3s, color 0.3s;
}

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

.contact-form {
    text-align: left;
}

.contact-form h2 {
    text-align: center;
    margin-top: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

#submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

#submit-btn:hover {
    background: var(--primary-hover);
}

h1 {
    margin-bottom: 2rem;
}

.lotto-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.lotto-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

#generate-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

#generate-btn:hover {
    background: var(--primary-hover);
}

#theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--container-bg);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}