/* Global Styles */
:root {
    --primary-color: #f59e0b;
    --secondary-color: #111827;
    --text-color: #f3f4f6;
    --glass-bg: rgba(31, 41, 55, 0.7);
    --glass-border: rgba(75, 85, 99, 0.3);
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97706;
}

/* Form Styles */
.form-input {
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.3);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Spin Wheel Styles */
.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 8px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 10;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(var(--rotation));
    }
}

.spinning {
    animation: spin var(--duration) cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wheel-container {
        width: 250px;
        height: 250px;
    }
}