:root {
    --primary-color: #f39c12;
    --background-color: #2c3e50;
    --text-color: #ecf0f1;
    --container-bg: transparent;
    --transition-speed: 0.3s;
}

body.light-mode {
    --background-color: #f5f6fa;
    --text-color: #2f3640;
    --primary-color: #e67e22;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s;
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.lotto-numbers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    min-height: 60px;
}

lotto-ball {
    display: block;
    width: 60px;
    height: 60px;
}

#generate-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#generate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#generate-button:active {
    transform: translateY(-1px);
}
