:root {
    --primary-bg: #0a0f1c;
    --secondary-bg: #141c33;
    --accent-gold: #F7D358;
    --accent-gold-hover: #f9dd7e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --sidebar-bg: #0c1225;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.logo {
    font-family: 'Montserrat', cursive;
    color: var(--accent-gold);
    font-weight: 700;
    font-style: italic;
    position: relative;
    text-shadow: 0 0 10px rgba(247, 211, 88, 0.3);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 211, 88, 0.4);
}

.card {
    background-color: var(--secondary-bg);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.provider-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: var(--secondary-bg);
}

.provider-card img {
    transition: transform 0.5s ease;
}

.provider-card:hover img {
    transform: scale(1.05);
}

.provider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.sidebar {
    background-color: var(--sidebar-bg);
    border-radius: 0.75rem;
}

.nav-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.feature-icon {
    background-color: rgba(247, 211, 88, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--sidebar-bg);
    z-index: 60;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.gradient-bg {
    background: linear-gradient(135deg, #0a0f1c 0%, #141c33 100%);
}

.heading-underline {
    position: relative;
    padding-bottom: 0.5rem;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .main-content {
        order: 1;
    }
    .sidebar-container {
        order: 2;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.bonus {
    background: url('/assets/img/bonus.webp') no-repeat center / cover;
}
