:root {
    --primary: #12a16b;
    --primary-light: #1bc483;
    --primary-dark: #0e8356;
    --secondary: #66bb6a;
    --soft-green: #e8f5e9;
    --mint: #f1f8e9;
    --emerald: #2e7d32;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --gray-800: #343a40;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background-color: #fcfdfc;
    color: var(--gray-800);
}

.card-pro {
    background: var(--white);
    border: 1px solid rgba(18, 161, 107, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(18, 161, 107, 0.15);
}

.btn-pro-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pro-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 161, 107, 0.3);
    color: var(--white);
}

.btn-soft-success {
    background: var(--mint);
    color: var(--primary);
    border: none;
    transition: all 0.2s ease;
}

.btn-soft-success:hover {
    background: var(--soft-green);
    color: var(--primary-dark);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .card-pro {
        padding: 1.5rem !important;
    }

    .text-gradient {
        font-size: 1.5rem;
    }

    .roulette-wrapper canvas {
        width: 100% !important;
        height: auto !important;
    }
}

.fw-800 {
    font-weight: 800;
}

.opacity-10 {
    opacity: 0.1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Roulette Specific Styles */
.roulette-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--primary);
    position: relative;
    transition: transform 4s cubic-bezier(0.15, 0, 0.15, 1);
}

/* UI Helpers */
.badge-pro {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-pro-success {
    background-color: var(--mint);
    color: var(--emerald);
}