* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
}

.prize-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logo-container {
    margin-bottom: 30px;
}

.prize-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}



.button-container {
    margin-bottom: 30px;
}

.prize-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.prize-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.prize-button:active {
    transform: scale(0.95);
}

.button-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    display: block;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.result-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.result-container.show {
    opacity: 1;
    transform: translateY(0);
}

.result-container.win {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.result-container.lose {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .prize-card {
        padding: 30px 20px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .prize-logo {
        max-height: 250px;
    }
    

    
    .button-image {
        max-height: 200px;
    }
    
    .result-container {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .prize-card {
        padding: 20px 15px;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .prize-logo {
        max-height: 200px;
    }
    

    
    .button-image {
        max-height: 160px;
    }
    
    .result-container {
        font-size: 14px;
        padding: 12px;
    }
} 