:root {
    --bg-primary: #060816;
    --bg-secondary: #0B0F2A;
    --neon-cyan: #00C8FF;
    --neon-purple: #8A2BE2;
    --neon-pink: #FF2CFB;
    --gold: #C8A95B;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-primary);
    color: #fff;
    overflow-x: hidden;
    cursor: default;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
}

/* Glass Effect */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 200, 255, 0.1);
}

.glass-strong {
    background: rgba(6, 8, 22, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
}

/* Neon Glow Effects */
.neon-cyan { box-shadow: 0 0 20px rgba(0, 200, 255, 0.5), 0 0 40px rgba(0, 200, 255, 0.3); }
.neon-purple { box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(138, 43, 226, 0.3); }
.neon-pink { box-shadow: 0 0 20px rgba(255, 44, 251, 0.5), 0 0 40px rgba(255, 44, 251, 0.3); }

.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before { left: 100%; }
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-animation { animation: float 6s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* Grid Background */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

/* Card Hover Effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-8px) scale(1.02); }

/* Champion Card */
.champion-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.champion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 200, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.champion-card:hover::after { left: 100%; }
.champion-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
}

/* Hexagon */
.hexagon { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Nexus Orb */
.nexus-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse-glow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
   .nexus-orb { width: 200px; height: 200px; }
}

/* Dashboard Mock */
.dashboard-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Stats Counter */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu.active { transform: translateX(0); }

.lg\:ml-64 {
    margin-left: 16rem; /* 256px = ancho del sidebar */
}

.sidebar-link{
    display:flex;
    align-items:center;
    gap:12px;

    width:100%;

    padding:14px 16px;

    border-radius:14px;

    color:#e5e7eb;

    text-decoration:none;

    transition:0.25s;

    font-weight:600;
}

.sidebar-link:hover{
    background:rgba(255,255,255,0.06);
    color:white;
}

.support-link{
    background:linear-gradient(135deg,#ec4899,#ff4d6d);
    color:white;
    box-shadow:0 0 20px rgba(236,72,153,0.35);
}

.support-link:hover{
    transform:translateY(-2px);
    opacity:0.95;
}

.icon{
    font-size:18px;
}