body {
    background: linear-gradient(135deg, #1a1926 0%, #2a2438 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hero-bg {
    background: linear-gradient(rgba(26, 25, 38, 0.8), rgba(42, 36, 56, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23152238"/><circle cx="200" cy="150" r="80" fill="%23fdb634" opacity="0.1"/><circle cx="800" cy="350" r="60" fill="%23fdb634" opacity="0.1"/><circle cx="1000" cy="100" r="40" fill="%23fdb634" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}
.gold-gradient {
    background: linear-gradient(135deg, #fdb634 0%, #ffdd3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-bg {
    background: linear-gradient(135deg, #fdb634 0%, #ffdd3b 100%);
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(253, 182, 52, 0.2);
}
.percentage-badge {
    background: linear-gradient(135deg, #fdb634 0%, #ffdd3b 100%);
    color: #1a1926;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}
.section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fdb634 50%, transparent 100%);
    margin: 3rem 0;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
