@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
    --gold: #D4AF37;
    --light-grey: #f8f9fa;
    --text-dark: #2c3e50;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-grey);
    color: var(--text-dark);
    overflow-x: hidden;
}
.bg-shape {
    position: fixed;
    top: -20%; left: -10%;
    width: 50vw; height: 50vw;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1; z-index: -1;
    filter: blur(80px);
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}
.btn-premium {
    background: var(--primary-gradient);
    border: none; color: white;
    padding: 12px 30px; border-radius: 50px;
    font-weight: 600; letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.4);
    transition: all 0.3s ease;
}
.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(86, 171, 47, 0.6);
    color: white;
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold); border-radius: 50px;
    padding: 10px 28px; font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold); color: white;
}