/* SCROLLBAR MODERNO */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.5) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    border: 2px solid var(--bg-dark); /* Crea un efecto de separación */
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3; /* Un azul un poco más oscuro/intenso al pasar el ratón */
}

/* Soporte para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-dark);
}

:root {
    --bg-dark: #0f1113;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --accent-color: #0d6efd;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
}

#canvas-particles {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Glassmorphism Card (General) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.text-primary {
    color: #0d6efd !important;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-content {
    position: relative;
    z-index: 1;
}

/* CURSOR PREMIUM */
.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    /* Eliminamos transform para manejarlo 100% en JS */
    transition: scale 0.3s ease;
}

.custom-cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    /* Eliminamos transform para manejarlo 100% en JS */
    transition: scale 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

@media (max-width: 991px) {
    .custom-cursor, .custom-cursor-follower {
        display: none;
    }
}

