/* ============================================
   SixMods - Vice City / GTA VI Design System
   Clean & Flat — No gradients, no glow
   ============================================ */

:root {
    --vc-cyan: #5ce0d2;
    --vc-pink: #e8639a;
    --vc-violet: #9a7bd4;
    --vc-lavender: #b8a9d9;
    --vc-peach: #f0a07a;
    --vc-bg: #0d1120;
    --vc-card: #131829;
    --vc-card-hover: #181e33;
    --vc-surface: #1a2035;
}

* {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* === Cards === */
.card-modern {
    background: var(--vc-card);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.card-modern:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--vc-card-hover);
    transform: translateY(-2px);
}

/* === Buttons — Flat solid === */
.btn-primary {
    background: var(--vc-cyan);
    color: #0d1120;
    padding: 0.8rem 1.8rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--vc-cyan);
    padding: 0.8rem 1.8rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(92, 224, 210, 0.15);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(92, 224, 210, 0.06);
    border-color: rgba(92, 224, 210, 0.25);
}

/* === Badge Premium === */
.badge-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #FFD700;
    color: #000;
    border-radius: 0.5rem;
}

/* === Text accent (no gradient, solid) === */
.text-gradient {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: unset;
}

.text-gradient-vice {
    color: var(--vc-cyan);
    background: none;
    -webkit-text-fill-color: unset;
}

/* === Stat Values === */
.stat-value {
    color: #ffffff;
}

/* === Category Tag === */
.tag-category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 0.4rem;
    background: rgba(92, 224, 210, 0.08);
    color: var(--vc-cyan);
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* === Rating Stars === */
.rating-stars {
    color: var(--vc-pink);
}

/* === Mod Card Image === */
.mod-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

/* === Download Button on Hover === */
.mod-download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vc-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1120;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.group:hover .mod-download-btn {
    opacity: 1;
    transform: translateY(0);
}

/* === Notification Dot === */
.notif-dot {
    position: relative;
}

.notif-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: var(--vc-pink);
    border-radius: 50%;
    border: 2px solid var(--vc-bg);
}

/* === Simple divider === */
.glow-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
}

/* === Neon box (stats) — just a border box === */
.neon-box {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    background: var(--vc-card);
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Carousel Utilities === */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    cursor: grab;
}

.carousel-container.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
}

.carousel-container.dragging .carousel-item * {
    pointer-events: none;
}

.carousel-item {
    flex: 0 0 calc(25% - 1rem);
    scroll-snap-align: start;
    min-width: 280px;
}

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .carousel-item {
        flex: 0 0 calc(100% - 1rem);
    }
}

/* === Hero particles — remove completely === */
.hero-particles {
    display: none;
}
