* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('https://cdn.custom-cursor.com/db/8183/32/neon-money-pointer.png'), auto !important;
}

body {
    background: linear-gradient(90deg, #0d1f2d, #44627c, #445264);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    color: #f4c542;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;


}
button, select, .options {
    cursor: url('https://sweezy-cursors.com/wp-content/uploads/cursor/money/money-pointer-32x32.png'), pointer !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1 {
    color: #f4c542;
    font-size: 48px;
    margin-bottom: 30px;
}

.intro-screen {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #f4c542;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
}

.intro-screen button {
    padding: 10px 20px;
    background-color: #f4c542;
    color: #0d1f2d;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.intro-screen button:hover {
    background-color: #f1b423;
}

.question-box {
    background-color: #003366;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.question-box img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.option {
    background-color: #f4c542;
    color: #0d1f2d;
    padding: 20px;
    width: 48%;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
    text-align: center;
    box-sizing: border-box;
}

.option:hover {
    background-color: #f1b423;
}

.result {
    font-size: 30px;
    margin-top: 30px;
}

.prize {
    font-size: 24px;
    color: #f4c542;
}

.btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f4c542;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #f1b423;
}

.content-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .option {
        width: 100%;
        font-size: 16px;
        padding: 15px;
    }

    .question-box img {
        width: 150px;
        height: 150px;
    }
}

/* Winning Animation */
.celebration {
    animation: partyLights 3s ease-in-out infinite, popperEffect 2s ease-out;
    z-index: 200;
}

@keyframes partyLights {
    0% { background-color: #ffeb3b; }
    25% { background-color: #ff9800; }
    50% { background-color: #9c27b0; }
    75% { background-color: #3f51b5; }
    100% { background-color: #4caf50; }
}

@keyframes popperEffect {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
