/* =====================================================
   BCVR PREMIUM CSS v2.0
   World-Class FiveM Gaming Site Styles
   ===================================================== */

/* =====================================================
   ADVANCED CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0a14 0%, #12121f 100%);
    border-left: 1px solid rgba(99, 102, 241, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: inset 0 0 6px rgba(99, 102, 241, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #818cf8 0%, #a78bfa 50%, #f472b6 100%);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6366f1 #0a0a14;
}

/* =====================================================
   PREMIUM CURSOR EFFECTS
   ===================================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(99, 102, 241, 0.2);
    border-color: #8b5cf6;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
}

/* =====================================================
   NEON GLOW TEXT EFFECTS
   ===================================================== */
.neon-text {
    text-shadow:
        0 0 5px #6366f1,
        0 0 10px #6366f1,
        0 0 20px #6366f1,
        0 0 40px #8b5cf6,
        0 0 80px #8b5cf6;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px #6366f1,
            0 0 10px #6366f1,
            0 0 20px #6366f1,
            0 0 40px #8b5cf6;
    }
    to {
        text-shadow:
            0 0 10px #818cf8,
            0 0 20px #818cf8,
            0 0 40px #818cf8,
            0 0 80px #a78bfa,
            0 0 120px #a78bfa;
    }
}

.neon-text-cops {
    text-shadow:
        0 0 5px #3b82f6,
        0 0 10px #3b82f6,
        0 0 20px #3b82f6,
        0 0 40px #06b6d4;
}

.neon-text-robbers {
    text-shadow:
        0 0 5px #ef4444,
        0 0 10px #ef4444,
        0 0 20px #ef4444,
        0 0 40px #f97316;
}

/* =====================================================
   PREMIUM CARD EFFECTS
   ===================================================== */
.premium-card {
    position: relative;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Holographic card effect */
.holo-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.1) 0%,
        rgba(139, 92, 246, 0.1) 25%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(139, 92, 246, 0.1) 75%,
        rgba(99, 102, 241, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: holoShift 8s ease infinite;
    border: 1px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.5),
        rgba(139, 92, 246, 0.5),
        rgba(236, 72, 153, 0.5)
    ) 1;
}

@keyframes holoShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =====================================================
   ANIMATED GRADIENT BORDERS
   ===================================================== */
.gradient-border {
    position: relative;
    background: rgba(15, 15, 25, 0.9);
    border-radius: 16px;
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        #6366f1,
        #8b5cf6,
        #ec4899,
        #f97316,
        #22c55e,
        #06b6d4,
        #6366f1
    );
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: borderGradient 6s linear infinite;
    filter: blur(4px);
    opacity: 0.7;
}

.gradient-border::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 25, 0.95);
    border-radius: 16px;
    z-index: -1;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================================================
   PREMIUM BUTTON EFFECTS
   ===================================================== */
.btn-premium {
    position: relative;
    padding: 16px 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

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

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 0 40px rgba(99, 102, 241, 0.3);
}

.btn-premium:active {
    transform: translateY(-1px);
}

/* Liquid button effect */
.btn-liquid {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-liquid::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn-liquid:hover::after {
    transform: scale(1);
}

/* =====================================================
   ANIMATED BACKGROUND PATTERNS
   ===================================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* Grid pattern overlay */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-slow {
    animation: floating 6s ease-in-out infinite;
}

.floating-delay-1 {
    animation-delay: -1s;
}

.floating-delay-2 {
    animation-delay: -2s;
}

.floating-delay-3 {
    animation-delay: -3s;
}

/* =====================================================
   PARALLAX LAYERS
   ===================================================== */
.parallax-container {
    perspective: 1000px;
    overflow: hidden;
}

.parallax-layer {
    transform-style: preserve-3d;
    will-change: transform;
}

.parallax-layer-back {
    transform: translateZ(-100px) scale(1.1);
}

.parallax-layer-front {
    transform: translateZ(50px) scale(0.95);
}

/* =====================================================
   GLITCH TEXT EFFECT
   ===================================================== */
.glitch {
    position: relative;
    animation: glitchSkew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitchAnim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitchAnim2 1s infinite linear alternate-reverse;
}

@keyframes glitchAnim {
    0% { clip: rect(31px, 9999px, 94px, 0); transform: skew(0.5deg); }
    5% { clip: rect(70px, 9999px, 71px, 0); transform: skew(0.5deg); }
    10% { clip: rect(29px, 9999px, 24px, 0); transform: skew(0.5deg); }
    15% { clip: rect(64px, 9999px, 51px, 0); transform: skew(0.5deg); }
    20% { clip: rect(28px, 9999px, 89px, 0); transform: skew(0.5deg); }
    25% { clip: rect(5px, 9999px, 74px, 0); transform: skew(0.5deg); }
    30% { clip: rect(100px, 9999px, 30px, 0); transform: skew(0.5deg); }
    35% { clip: rect(13px, 9999px, 97px, 0); transform: skew(0.5deg); }
    40% { clip: rect(72px, 9999px, 21px, 0); transform: skew(0.5deg); }
    45% { clip: rect(89px, 9999px, 6px, 0); transform: skew(0.5deg); }
    50% { clip: rect(1px, 9999px, 69px, 0); transform: skew(0.5deg); }
    55% { clip: rect(85px, 9999px, 42px, 0); transform: skew(0.5deg); }
    60% { clip: rect(49px, 9999px, 62px, 0); transform: skew(0.5deg); }
    65% { clip: rect(41px, 9999px, 11px, 0); transform: skew(0.5deg); }
    70% { clip: rect(2px, 9999px, 35px, 0); transform: skew(0.5deg); }
    75% { clip: rect(16px, 9999px, 64px, 0); transform: skew(0.5deg); }
    80% { clip: rect(99px, 9999px, 77px, 0); transform: skew(0.5deg); }
    85% { clip: rect(58px, 9999px, 23px, 0); transform: skew(0.5deg); }
    90% { clip: rect(37px, 9999px, 85px, 0); transform: skew(0.5deg); }
    95% { clip: rect(91px, 9999px, 8px, 0); transform: skew(0.5deg); }
    100% { clip: rect(24px, 9999px, 91px, 0); transform: skew(0.5deg); }
}

@keyframes glitchAnim2 {
    0% { clip: rect(65px, 9999px, 99px, 0); transform: skew(0.5deg); }
    5% { clip: rect(17px, 9999px, 37px, 0); transform: skew(0.5deg); }
    10% { clip: rect(79px, 9999px, 59px, 0); transform: skew(0.5deg); }
    15% { clip: rect(25px, 9999px, 4px, 0); transform: skew(0.5deg); }
    20% { clip: rect(87px, 9999px, 76px, 0); transform: skew(0.5deg); }
    25% { clip: rect(43px, 9999px, 23px, 0); transform: skew(0.5deg); }
    30% { clip: rect(8px, 9999px, 84px, 0); transform: skew(0.5deg); }
    35% { clip: rect(52px, 9999px, 39px, 0); transform: skew(0.5deg); }
    40% { clip: rect(96px, 9999px, 15px, 0); transform: skew(0.5deg); }
    45% { clip: rect(33px, 9999px, 67px, 0); transform: skew(0.5deg); }
    50% { clip: rect(71px, 9999px, 48px, 0); transform: skew(0.5deg); }
    55% { clip: rect(19px, 9999px, 92px, 0); transform: skew(0.5deg); }
    60% { clip: rect(54px, 9999px, 28px, 0); transform: skew(0.5deg); }
    65% { clip: rect(82px, 9999px, 3px, 0); transform: skew(0.5deg); }
    70% { clip: rect(46px, 9999px, 73px, 0); transform: skew(0.5deg); }
    75% { clip: rect(11px, 9999px, 56px, 0); transform: skew(0.5deg); }
    80% { clip: rect(63px, 9999px, 19px, 0); transform: skew(0.5deg); }
    85% { clip: rect(38px, 9999px, 81px, 0); transform: skew(0.5deg); }
    90% { clip: rect(94px, 9999px, 44px, 0); transform: skew(0.5deg); }
    95% { clip: rect(27px, 9999px, 61px, 0); transform: skew(0.5deg); }
    100% { clip: rect(77px, 9999px, 12px, 0); transform: skew(0.5deg); }
}

@keyframes glitchSkew {
    0% { transform: skew(0deg); }
    20% { transform: skew(0deg); }
    21% { transform: skew(1deg); }
    22% { transform: skew(-1deg); }
    23% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* =====================================================
   SCANNER LINE EFFECT
   ===================================================== */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.8) 50%,
        transparent 100%
    );
    animation: scanLine 3s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* =====================================================
   CYBER CORNERS
   ===================================================== */
.cyber-corners {
    position: relative;
}

.cyber-corners::before,
.cyber-corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #6366f1;
    border-style: solid;
}

.cyber-corners::before {
    top: -5px;
    left: -5px;
    border-width: 2px 0 0 2px;
}

.cyber-corners::after {
    bottom: -5px;
    right: -5px;
    border-width: 0 2px 2px 0;
}

/* =====================================================
   TYPING TEXT EFFECT
   ===================================================== */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #6366f1;
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: #6366f1; }
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* =====================================================
   SPLIT TEXT ANIMATION
   ===================================================== */
.split-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: splitReveal 0.5s forwards;
}

@keyframes splitReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   3D TRANSFORM EFFECTS
   ===================================================== */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.card-3d-back {
    transform: rotateY(180deg);
}

/* =====================================================
   MORPHING SHAPES
   ===================================================== */
.morph-shape {
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* =====================================================
   PREMIUM TOOLTIPS
   ===================================================== */
.tooltip-premium {
    position: relative;
}

.tooltip-premium::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 10px 16px;
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tooltip-premium::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(99, 102, 241, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-premium:hover::after,
.tooltip-premium:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =====================================================
   LOADING SKELETON
   ===================================================== */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =====================================================
   SPOTLIGHT EFFECT
   ===================================================== */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(99, 102, 241, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight:hover::after {
    opacity: 1;
}

/* =====================================================
   BADGE EFFECTS
   ===================================================== */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}

.badge-cops {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.badge-robbers {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* =====================================================
   IMAGE HOVER EFFECTS
   ===================================================== */
.img-zoom {
    overflow: hidden;
    border-radius: 12px;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

.img-shine {
    position: relative;
    overflow: hidden;
}

.img-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.img-shine:hover::after {
    transform: translateX(100%);
}

/* =====================================================
   SELECTION STYLES
   ===================================================== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* =====================================================
   FOCUS STYLES
   ===================================================== */
:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 3px;
}

/* =====================================================
   POLICE SIREN ANIMATION
   ===================================================== */
.siren-effect {
    animation: sirenFlash 1s infinite;
}

@keyframes sirenFlash {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 40px rgba(239, 68, 68, 0.4);
    }
}

/* =====================================================
   STATS COUNTER
   ===================================================== */
.stat-counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

/* =====================================================
   PERFORMANCE OPTIMIZATIONS
   ===================================================== */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.reduced-motion {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   RESPONSIVE ENHANCEMENTS
   ===================================================== */
@media (max-width: 768px) {
    .neon-text {
        text-shadow:
            0 0 3px #6366f1,
            0 0 6px #6366f1,
            0 0 12px #8b5cf6;
    }

    .premium-card:hover {
        transform: translateY(-5px);
    }

    .gradient-border::before {
        filter: blur(2px);
    }
}
