.controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

button {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff0080 0%, #8a2be2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 20px rgba(255, 0, 128, 0.4),
        0 0 40px rgba(138, 43, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

button:hover::before {
    left: 100%;
}

button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(255, 0, 128, 0.6),
        0 0 60px rgba(138, 43, 226, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

button:active {
    transform: translateY(-1px) scale(1.02);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.secondary-btn {
    font-size: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
}

.info-btn {
    font-size: 18px;
    padding: 12px 30px;
    margin-top: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.stats {
    display: flex;
    gap: 40px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 150px;
}

.stat-label {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lucky-stat {
    border: 2px solid #FFD700;
    background: rgba(255, 215, 0, 0.1);
}