/* CUSTOM STYLESHEET - QUÉ NIVEL LANDING PAGE (URBAN KINETIC & EFECTO CACAO STYLE) */

/* Core Reset and Base Variables */
:root {
    --color-electric-blue: #002BFF;
    --color-acid-lime: #D9FF00;
    --color-vivid-pink: #FF007A;
    --color-off-white: #FDF7E7;
    --color-dark-charcoal: #1C1B1B;
}

/* Custom Dot Grid Pattern Background */
.bg-dot-pattern {
    background-color: #FDF7E7;
    background-image: radial-gradient(#1C1B1B 0.75px, transparent 0.75px), radial-gradient(#1C1B1B 0.75px, #FDF7E7 0.75px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    background-opacity: 0.05;
}

/* Urban Kinetic Hard Shadow & Borders */
.hard-border {
    border: 2px solid #1C1B1B !important;
}

.hard-shadow {
    box-shadow: 4px 4px 0px 0px #1C1B1B;
}

.hard-shadow-sm {
    box-shadow: 2px 2px 0px 0px #1C1B1B;
}

.hard-shadow-acid {
    box-shadow: 5px 5px 0px 0px #D9FF00, 5px 5px 0px 2px #1C1B1B;
}

.hard-shadow-pink {
    box-shadow: 5px 5px 0px 0px #FF007A, 5px 5px 0px 2px #1C1B1B;
}

.hard-shadow-blue {
    box-shadow: 5px 5px 0px 0px #002BFF, 5px 5px 0px 2px #1C1B1B;
}

/* Interactive Hover States */
.hard-shadow:hover {
    box-shadow: 6px 6px 0px 0px #1C1B1B;
}

/* Floating Right Side Navigation Dot Styling (Efecto Cacao Inspired) */
aside .side-dot {
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

aside .side-dot.active {
    background-color: #FF007A !important;
    transform: scale(1.35);
    box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.3);
}

aside .side-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #1C1B1B;
    color: #FDF7E7;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    white-space: nowrap;
    border: 1px solid #D9FF00;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

aside .side-dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Route Tabs Active Styles */
.route-tab.active {
    background-color: #002BFF !important;
    color: #FFFFFF !important;
    box-shadow: 4px 4px 0px 0px #FF007A;
}

.media-tab-btn.active {
    background-color: #1C1B1B !important;
    color: #D9FF00 !important;
}

/* Smooth Transitions for Modals */
#modal-registro, #modal-articulo, #modal-video, #modal-documento {
    transition: opacity 0.25s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDF7E7;
}
::-webkit-scrollbar-thumb {
    background: #1C1B1B;
    border: 2px solid #FDF7E7;
}
::-webkit-scrollbar-thumb:hover {
    background: #002BFF;
}
