
body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gradient-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.game-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #dc2626;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%),
                url('/assets/img/pinco-ledy.jpg');
    background-size: cover;
    background-position: center;
}

.feature-icon {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: block;
    }
    .main-btn {
        display: none;
    }
}

.promo-banner {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.stats-card {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    backdrop-filter: blur(10px);
}
