/* styles.css */
body {
    font-family: Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom, #044a91, #1900fa);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
}

.container {
    background: #eae8e8; /* Changed to solid white */
    padding: 22px;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 500px;
    height: auto;
    padding: auto;
    margin-top: 0%;
    margin-bottom: 10px; /* Space between logo and title */
}

.title {
    color: #140065;
    font-size: 2em;
    margin: 0;
}

.raffle-container {
    margin-top: 20px;
    position: relative;
}

.raffle-display {
    font-size: 5em; /* Decreased font size */
    font-family: 'Helvetica', sans-serif; /* Font set to Helvetica */
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

button {
    padding: 15px 30px; /* Reduced button size */
    font-size: 1.2em; /* Reduced button text size */
    border: none;
    border-radius: 10px;
    background: #1e90ff;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px; /* Margin between buttons */
}

button:hover {
    background: #0f78d4;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

.winner-announcement {
    display: none;
    font-size: 4em; /* Increased font size for winner */
    color: #000;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hidden {
    display: none;
}

#replay-button {
    padding: 15px 30px; /* Reduced button size */
    font-size: 1.2em; /* Reduced button text size */
    border: none;
    border-radius: 10px;
    background: #1e90ff;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px; /* Added margin to ensure it doesn’t overlap the result */
    display: none; /* Initially hidden */
}
