/* ================================================================
   ULTRA-SEXY.CSS — Premium Touch, Hover, Neon & UI Enhancements
   NO DELETIONS — PURE ADDITIVE LAYER
   ================================================================ */

/* ── Custom CSS Variables ─────────────────────────────────── */
:root {
    --neon-purple: #8b5cf6;
    --neon-pink: #ec4899;
    --neon-cyan: #06b6d4;
    --neon-green: #10b981;
    --neon-gold: #f59e0b;
    --neon-red: #ef4444;
    --glow-purple: rgba(139, 92, 246, 0.6);
    --glow-pink: rgba(236, 72, 153, 0.6);
    --glow-cyan: rgba(6, 182, 212, 0.6);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   1. TOUCH RIPPLE EFFECT
   ================================================================ */
.touch-ripple {
    position: relative;
    overflow: hidden;
}

.touch-ripple::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    padding-top: 100%;
    top: calc(var(--ripple-y, 50%) - 50%);
    left: calc(var(--ripple-x, 50%) - 50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s var(--transition-smooth), opacity 0.6s ease;
}

.touch-ripple:active::after {
    transform: scale(2.5);
    opacity: 1;
    transition: transform 0s, opacity 0s;
}

/* ── Ripple wave on buttons ───────────────────────────────── */
button, .neon-btn, .theme-chip {
    position: relative;
    overflow: hidden;
}

button::before,
.neon-btn::before,
.theme-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

button:hover::before,
.neon-btn:hover::before,
.theme-chip:hover::before {
    opacity: 1;
}

/* ================================================================
   2. IMAGE ZOOM ON HOVER — ALL IMAGES
   ================================================================ */

/* Gallery images */
#public-gallery-grid .group\/gallery,
#public-gallery-grid [class*="group"] {
    overflow: hidden !important;
    border-radius: 1rem !important;
    position: relative;
}

#public-gallery-grid img,
[id*="gallery"] img,
.gallery-thumb img {
    transition: transform 0.5s var(--transition-smooth),
                filter 0.5s ease,
                box-shadow 0.5s ease !important;
    transform-origin: center center;
    will-change: transform;
    cursor: zoom-in;
}

#public-gallery-grid .group\/gallery:hover img,
#public-gallery-grid [class*="group"]:hover img,
[id*="gallery"]:hover img {
    transform: scale(1.12) !important;
    filter: brightness(1.08) saturate(1.2) !important;
}

/* Campus images */
[id*="campus"] img,
.campus-img {
    transition: transform 0.55s var(--transition-smooth),
                filter 0.55s ease !important;
    cursor: zoom-in;
    transform-origin: center center;
}

[id*="campus"] .group\/campus:hover img,
.campus-img:hover {
    transform: scale(1.1) !important;
    filter: brightness(1.06) saturate(1.15) contrast(1.04) !important;
}

/* Profile Avatar zoom-on-hover */
.rotating-neon-halo:hover .rotating-neon-halo-inner img {
    transform: scale(1.08) !important;
    filter: brightness(1.1) saturate(1.2) !important;
    transition: transform 0.5s var(--transition-bounce), filter 0.5s ease !important;
}

/* Any standalone img not inside avatar */
.premium-card img:not([id="profile-avatar"]):not(.emoji-img) {
    transition: transform 0.45s var(--transition-smooth),
                filter 0.4s ease !important;
    cursor: zoom-in;
}

.premium-card:hover img:not([id="profile-avatar"]):not(.emoji-img) {
    transform: scale(1.06) !important;
    filter: brightness(1.05) saturate(1.1) !important;
}

/* Zoom overlay label on hover */
#public-gallery-grid .group\/gallery::after {
    content: '🔍';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s var(--transition-bounce);
    transform: scale(0.6);
    pointer-events: none;
}

#public-gallery-grid .group\/gallery:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ================================================================
   3. CARD HOVER TILT + GLOW (3D lift)
   ================================================================ */
.premium-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.premium-card:hover {
    transform: translateY(-6px) scale(1.008) !important;
    box-shadow:
        0 24px 60px rgba(139, 92, 246, 0.22),
        0 8px 20px rgba(236, 72, 153, 0.1),
        0 0 0 1px rgba(139, 92, 246, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* ── Card inner shine on hover ────────────────────────────── */
.premium-card::after {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.07) 0%,
        rgba(139, 92, 246, 0.06) 40%,
        rgba(236, 72, 153, 0.04) 70%,
        transparent 100%
    ) !important;
    opacity: 0;
    transition: opacity 0.4s ease !important;
}

.premium-card:hover::after {
    opacity: 1 !important;
}

/* ================================================================
   4. MEGA NEON EFFECTS — Extended
   ================================================================ */

/* ── Neon border animation — rotary gradient ─────────────── */
@keyframes neon-border-rotate {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes neon-pulse-ultra {
    0%, 100% {
        box-shadow:
            0 0 8px var(--neon-purple),
            0 0 20px rgba(139,92,246,0.4),
            0 0 40px rgba(139,92,246,0.2),
            0 0 80px rgba(139,92,246,0.08);
    }
    50% {
        box-shadow:
            0 0 15px var(--neon-pink),
            0 0 35px rgba(236,72,153,0.5),
            0 0 70px rgba(236,72,153,0.25),
            0 0 120px rgba(236,72,153,0.1);
    }
}

@keyframes neon-cyan-pulse {
    0%, 100% {
        box-shadow: 0 0 8px var(--neon-cyan), 0 0 22px rgba(6,182,212,0.4);
    }
    50% {
        box-shadow: 0 0 16px var(--neon-cyan), 0 0 45px rgba(6,182,212,0.6), 0 0 80px rgba(6,182,212,0.2);
    }
}

@keyframes neon-gold-pulse {
    0%, 100% {
        box-shadow: 0 0 8px var(--neon-gold), 0 0 20px rgba(245,158,11,0.35);
    }
    50% {
        box-shadow: 0 0 16px var(--neon-gold), 0 0 40px rgba(245,158,11,0.55), 0 0 70px rgba(245,158,11,0.2);
    }
}

@keyframes text-neon-flicker-ultra {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 22px var(--neon-purple),
            0 0 40px var(--neon-purple),
            0 0 80px var(--neon-pink),
            0 0 100px var(--neon-pink);
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

@keyframes rainbow-text-shift {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes neon-border-sweep {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Ultra neon class ─────────────────────────────────────── */
.ultra-neon {
    animation: neon-pulse-ultra 2.5s ease-in-out infinite;
}

.ultra-neon-cyan {
    animation: neon-cyan-pulse 2s ease-in-out infinite;
}

.ultra-neon-gold {
    animation: neon-gold-pulse 2.2s ease-in-out infinite;
}

/* ── Neon text with flicker ───────────────────────────────── */
.neon-glow-text {
    animation: text-neon-flicker-ultra 6s infinite, text-pulse 3s ease-in-out infinite alternate !important;
}

/* ── Scrollbar ultra neon ─────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px !important;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6) !important;
    box-shadow: inset 0 0 6px rgba(139,92,246,0.12) !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan)) !important;
    box-shadow: 0 0 8px rgba(139,92,246,0.7), 0 0 16px rgba(236,72,153,0.4) !important;
    border-radius: 99px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink)) !important;
    box-shadow: 0 0 14px rgba(6,182,212,0.8), 0 0 28px rgba(139,92,246,0.5) !important;
}

/* ── Header neon border glow ──────────────────────────────── */
header {
    border-bottom: 1px solid transparent !important;
    background-image: linear-gradient(
        rgba(8, 5, 20, 0.85),
        rgba(8, 5, 20, 0.85)
    ), linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-purple)) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    background-size: 200% 200% !important;
    animation: neon-border-sweep 5s linear infinite !important;
}

/* ── Button ultra-neon hover ──────────────────────────────── */
.neon-btn:hover {
    box-shadow:
        0 0 12px var(--neon-purple),
        0 0 28px rgba(139,92,246,0.5),
        0 0 56px rgba(139,92,246,0.25),
        0 0 100px rgba(139,92,246,0.1),
        0 8px 24px rgba(236,72,153,0.2) !important;
    transform: translateY(-3px) scale(1.02) !important;
    filter: brightness(1.1) !important;
}

/* ── Skills bars neon ─────────────────────────────────────── */
[class*="bg-brand"],
[class*="bg-indigo"],
[class*="bg-purple"] {
    box-shadow: 0 0 8px rgba(139,92,246,0.5), 0 0 16px rgba(139,92,246,0.25) !important;
}

/* ── Neon profile ring enhancement ───────────────────────── */
.rotating-neon-halo {
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.65),
        0 0 45px rgba(236, 72, 153, 0.4),
        0 0 80px rgba(6, 182, 212, 0.2) !important;
}

.rotating-neon-halo::before {
    background: conic-gradient(
        #c4b5fd, #8b5cf6, #ec4899, #06b6d4, #10b981, #f59e0b, #c4b5fd
    ) !important;
    animation: spin-border 4s linear infinite !important;
}

/* ── Neon active nav links ────────────────────────────────── */
.nav-link-active,
a.text-brand-600,
a.text-brand-500 {
    text-shadow:
        0 0 8px rgba(139,92,246,0.9),
        0 0 18px rgba(139,92,246,0.5),
        0 0 35px rgba(236,72,153,0.3) !important;
    position: relative;
}

/* ── Floating nav neon ────────────────────────────────────── */
.floating-nav {
    box-shadow:
        0 0 20px rgba(139,92,246,0.35),
        0 0 40px rgba(236,72,153,0.15),
        0 18px 42px rgba(2,6,23,0.5) !important;
    border: 1px solid rgba(139,92,246,0.3) !important;
}

.floating-nav-btn:hover {
    background: rgba(139,92,246,0.2) !important;
    box-shadow: 0 0 12px rgba(139,92,246,0.5), 0 0 24px rgba(139,92,246,0.2) !important;
    color: #c4b5fd !important;
}

/* ================================================================
   5. HOVER AFTER-GLOW EFFECTS
   ================================================================ */

/* ── Card bottom glow puddle ──────────────────────────────── */
@keyframes glow-spread {
    0%   { transform: scaleX(0.6); opacity: 0; }
    50%  { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.6); opacity: 0; }
}

.premium-card {
    --glow-color: rgba(139,92,246,0.3);
}

/* ── Section heading icon glow ────────────────────────────── */
h3 .w-8.rounded-lg,
h3 .w-9.rounded-xl,
h3 span[class*="rounded"] {
    transition: box-shadow 0.35s ease, transform 0.35s var(--transition-bounce) !important;
}

h3:hover .w-8.rounded-lg,
h3:hover .w-9.rounded-xl,
h3:hover span[class*="rounded"] {
    box-shadow: 0 0 0 4px rgba(139,92,246,0.2), 0 0 12px rgba(139,92,246,0.4) !important;
    transform: scale(1.12) rotate(-4deg) !important;
}

/* ── Link hover glow underline ────────────────────────────── */
a[href]:not([class*="neon-btn"]):not([class*="theme-chip"]) {
    text-decoration: none;
    background-image: linear-gradient(var(--neon-purple), var(--neon-pink));
    background-size: 0% 1.5px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.35s var(--transition-smooth),
                color 0.25s ease,
                text-shadow 0.25s ease !important;
}

a[href]:not([class*="neon-btn"]):not([class*="theme-chip"]):hover {
    background-size: 100% 1.5px !important;
    text-shadow: 0 0 8px rgba(139,92,246,0.4) !important;
}

/* ── Social/link card hover ───────────────────────────────── */
#dynamic-links-container a,
#dynamic-links-container [role="link"],
#dynamic-links-container [onclick] {
    transition: all 0.3s var(--transition-smooth) !important;
    position: relative;
}

#dynamic-links-container a:hover,
#dynamic-links-container [onclick]:hover {
    transform: translateX(4px) !important;
    box-shadow: -4px 0 0 var(--neon-purple), 0 8px 20px rgba(139,92,246,0.15) !important;
}

/* ── Tag / badge hover ────────────────────────────────────── */
.mini-badge {
    transition: all 0.25s var(--transition-bounce) !important;
    cursor: default;
}

.mini-badge:hover {
    background: rgba(139,92,246,0.15) !important;
    border-color: rgba(139,92,246,0.5) !important;
    color: #c4b5fd !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 0 10px rgba(139,92,246,0.3) !important;
}

/* ================================================================
   6. TOUCH FEEDBACK — Mobile Ripple & Active States
   ================================================================ */

/* Ripple burst on all interactive elements */
@keyframes ripple-burst {
    0%   { transform: scale(0); opacity: 0.8; }
    100% { transform: scale(4); opacity: 0; }
}

.premium-card:active {
    transform: translateY(-3px) scale(1.003) !important;
}

button:active:not(:disabled),
.neon-btn:active,
.theme-chip:active {
    transform: scale(0.94) !important;
    filter: brightness(1.15) !important;
    box-shadow: 0 0 20px rgba(139,92,246,0.6) !important;
}

a[href]:active {
    opacity: 0.85;
}

/* ── Touch highlight color ────────────────────────────────── */
* {
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15) !important;
}

/* ================================================================
   7. ULTRA HOVER SHIMMER ON CARDS
   ================================================================ */

@keyframes shimmer-wave {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.premium-card {
    background-image: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.035) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    background-position: -200% center;
    transition: background-position 0s;
}

.premium-card:hover {
    background-position: 200% center !important;
    transition: background-position 0.8s ease !important;
}

/* ================================================================
   8. SECTION ICON PULSE — Heading Icons
   ================================================================ */

@keyframes icon-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139,92,246,0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(139,92,246,0.05);
        transform: scale(1.04);
    }
}

.premium-card:hover h3 i.fa-regular,
.premium-card:hover h3 i.fa-solid {
    animation: icon-glow-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 6px currentColor);
}

/* ================================================================
   9. NEON BADGE GLOW ON SECTION HEADINGS
   ================================================================ */

.premium-card h3,
.premium-card h2 {
    position: relative;
}

.premium-card:hover h3::after,
.premium-card:hover h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), transparent);
    border-radius: 99px;
    animation: shimmer-wave 1.5s linear infinite;
    background-size: 200% 100%;
}

/* ================================================================
   10. FLOATING PARTICLES ON CARD HOVER
   ================================================================ */

@keyframes float-particle {
    0%   { transform: translateY(0) scale(1); opacity: 0.7; }
    100% { transform: translateY(-60px) scale(0); opacity: 0; }
}

/* ── Pseudo-particle behind avatar ───────────────────────── */
.rotating-neon-halo::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(139,92,246,0.9), transparent);
    border-radius: 50%;
    top: 5%;
    right: 5%;
    animation: float-particle 2.5s ease-out infinite;
    pointer-events: none;
}

/* ================================================================
   11. QUOTE BAR — NEON MARQUEE ENHANCEMENT
   ================================================================ */

#neon-quote-container {
    text-shadow:
        0 0 6px rgba(255,255,255,0.5),
        0 0 14px rgba(139,92,246,0.7),
        0 0 28px rgba(236,72,153,0.5),
        0 0 50px rgba(6,182,212,0.3) !important;
    animation: text-neon-flicker-ultra 8s infinite,
               rainbow-text-shift 10s linear infinite !important;
}

/* ================================================================
   12. SEARCH BAR — NEON GLOW FOCUS
   ================================================================ */

#site-search:focus {
    box-shadow:
        0 0 0 2px rgba(139,92,246,0.5),
        0 0 20px rgba(139,92,246,0.3),
        0 0 40px rgba(139,92,246,0.1) !important;
    border-color: rgba(139,92,246,0.7) !important;
    transition: all 0.3s ease !important;
}

.search-shell:focus-within {
    box-shadow:
        0 0 0 1px rgba(139,92,246,0.3),
        0 12px 40px rgba(139,92,246,0.15),
        0 0 60px rgba(139,92,246,0.08) !important;
    border-color: rgba(139,92,246,0.35) !important;
}

/* ================================================================
   13. THEME CHIP NEON HOVER
   ================================================================ */

.theme-chip {
    transition: all 0.25s var(--transition-bounce) !important;
    position: relative;
    overflow: hidden;
}

.theme-chip:hover {
    border-color: rgba(139,92,246,0.8) !important;
    box-shadow:
        0 0 10px rgba(139,92,246,0.5),
        0 0 25px rgba(139,92,246,0.25),
        0 6px 16px rgba(139,92,246,0.15) !important;
    transform: translateY(-2px) scale(1.06) !important;
    color: #c4b5fd !important;
}

.theme-chip.is-active {
    box-shadow:
        0 0 15px rgba(139,92,246,0.6),
        0 0 35px rgba(139,92,246,0.3),
        0 8px 20px rgba(236,72,153,0.2) !important;
}

/* ================================================================
   14. TOAST NOTIFICATIONS — NEON POP
   ================================================================ */

#toast-container > div {
    animation: toast-slide-in 0.4s var(--transition-bounce) forwards !important;
    border: 1px solid rgba(139,92,246,0.45) !important;
    box-shadow:
        0 0 20px rgba(139,92,246,0.3),
        0 0 40px rgba(139,92,246,0.1),
        0 8px 30px rgba(0,0,0,0.6) !important;
}

@keyframes toast-slide-in {
    from { transform: translateX(120%) scale(0.8); opacity: 0; }
    to   { transform: translateX(0) scale(1); opacity: 1; }
}

/* ================================================================
   15. AFTER-GLOW TRAIL ON FOCUS / HOVER
   ================================================================ */

/* ── Input field glow ─────────────────────────────────────── */
input:focus,
textarea:focus,
select:focus {
    box-shadow:
        0 0 0 2px rgba(139,92,246,0.4),
        0 0 15px rgba(139,92,246,0.3),
        0 0 30px rgba(139,92,246,0.15),
        inset 0 0 8px rgba(139,92,246,0.05) !important;
}

/* ── Modal border pulse on open ───────────────────────────── */
[id^="modal-"]:not(.hidden) > div {
    animation: scale-in 0.28s var(--transition-bounce) both,
               neon-border-pulse 2s ease-in-out infinite !important;
}

@keyframes neon-border-pulse {
    0%, 100% { border-color: rgba(139,92,246,0.22) !important; }
    50%       { border-color: rgba(236,72,153,0.35) !important; }
}

/* ================================================================
   16. SKILL BARS — ANIMATED NEON FILL
   ================================================================ */

/* Progress bars in skills section */
[class*="progress"] > div,
.skill-bar > div,
[role="progressbar"] > div {
    position: relative;
    overflow: hidden;
}

[class*="progress"] > div::after,
.skill-bar > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: skill-shimmer 2.5s ease-in-out infinite;
}

@keyframes skill-shimmer {
    0%   { left: -100%; }
    100% { left: 160%; }
}

/* ================================================================
   17. SECTION ENTRANCE ANIMATIONS
   ================================================================ */

@keyframes slide-up-neon {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ── Subtle entrance for visible cards ───────────────────── */
.premium-card {
    animation: slide-up-neon 0.5s var(--transition-smooth) both !important;
}

/* Stagger delays */
.premium-card:nth-child(1) { animation-delay: 0.05s !important; }
.premium-card:nth-child(2) { animation-delay: 0.1s !important; }
.premium-card:nth-child(3) { animation-delay: 0.15s !important; }
.premium-card:nth-child(4) { animation-delay: 0.2s !important; }
.premium-card:nth-child(5) { animation-delay: 0.25s !important; }
.premium-card:nth-child(6) { animation-delay: 0.3s !important; }

/* ================================================================
   18. CYBERPUNK THEME — EXTRA NEON OVERLAY
   ================================================================ */

.theme-cyberpunk .premium-card {
    border: 1px solid rgba(255, 0, 127, 0.4) !important;
    box-shadow:
        0 0 15px rgba(255, 0, 127, 0.3),
        0 0 30px rgba(0, 255, 204, 0.15),
        0 20px 40px rgba(0,0,0,0.5) !important;
}

.theme-cyberpunk .premium-card:hover {
    border-color: rgba(0, 255, 204, 0.6) !important;
    box-shadow:
        0 0 25px rgba(0, 255, 204, 0.5),
        0 0 60px rgba(255, 0, 127, 0.25),
        0 24px 50px rgba(0,0,0,0.6) !important;
    transform: translateY(-8px) scale(1.01) !important;
}

.theme-cyberpunk .neon-btn:hover {
    box-shadow:
        0 0 20px rgba(0, 255, 204, 0.7),
        0 0 40px rgba(255, 0, 127, 0.4) !important;
}

.theme-cyberpunk .rotating-neon-halo {
    box-shadow:
        0 0 30px rgba(0, 255, 204, 0.8),
        0 0 60px rgba(255, 0, 127, 0.5) !important;
}

/* ================================================================
   19. AURORA THEME — SHIMMER BOOST
   ================================================================ */

.theme-aurora .premium-card:hover {
    border-color: rgba(45, 212, 191, 0.5) !important;
    box-shadow:
        0 0 20px rgba(45, 212, 191, 0.3),
        0 0 50px rgba(59, 130, 246, 0.2),
        0 24px 50px rgba(0,0,0,0.4) !important;
}

/* ================================================================
   20. SELECTION & CURSOR ENHANCEMENTS
   ================================================================ */

::selection {
    background: linear-gradient(90deg, rgba(139,92,246,0.4), rgba(236,72,153,0.4)) !important;
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255,255,255,0.3) !important;
}

/* ── Custom cursor for interactive elements ───────────────── */
button, a[href], .theme-chip, .neon-btn, label[for] {
    cursor: pointer !important;
}

img {
    cursor: zoom-in !important;
}

/* ================================================================
   21. PROFILE CARD — SPECIAL NEON ENHANCEMENTS
   ================================================================ */

/* Blurred glows behind profile card */
#sidebar-section .premium-card:first-child::before {
    content: '' !important;
    position: absolute !important;
    top: -40px !important;
    left: -40px !important;
    width: 180px !important;
    height: 180px !important;
    background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 0 !important;
    animation: float-particle 4s ease-in-out infinite alternate !important;
    transform: none !important;
    opacity: 1 !important;
}

/* ── Profile name hover neon glow ─────────────────────────── */
#profile-name:hover,
h2#profile-name {
    transition: text-shadow 0.3s ease !important;
}

#profile-name:hover {
    text-shadow:
        0 0 8px rgba(139,92,246,0.6),
        0 0 18px rgba(139,92,246,0.3),
        0 0 35px rgba(236,72,153,0.2) !important;
}

/* ── Online indicator pulse ───────────────────────────────── */
@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
    70%       { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* ================================================================
   22. GALLERY IMAGES — LENS MAGNIFIER EFFECT
   ================================================================ */

/* Gallery photo container: clip + smooth zoom */
#public-gallery-grid > div {
    overflow: hidden !important;
    border-radius: 1rem !important;
    position: relative;
    transform: translateZ(0);
}

#public-gallery-grid > div img {
    transition:
        transform 0.5s var(--transition-smooth),
        filter 0.5s ease !important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#public-gallery-grid > div:hover img {
    transform: scale(1.18) !important;
    filter: brightness(1.1) saturate(1.3) contrast(1.05) !important;
}

/* ── Caption fade-in on hover ─────────────────────────────── */
#public-gallery-grid > div > [class*="absolute"],
#public-gallery-grid > div .photo-caption {
    transition: opacity 0.4s ease, transform 0.4s var(--transition-smooth) !important;
}

/* Neon border frame flash on gallery item hover */
#public-gallery-grid > div::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

#public-gallery-grid > div:hover::before {
    opacity: 1;
}

/* ================================================================
   23. FINAL POLISH — Micro-interactions
   ================================================================ */

/* Smooth everything */
*, *::before, *::after {
    transition-timing-function: var(--transition-smooth);
}

/* ── Icon hover spin (for FontAwesome icons in headings) ──── */
h3 i[class*="fa-"] {
    transition: transform 0.4s var(--transition-bounce),
                filter 0.3s ease,
                color 0.3s ease !important;
}

h3:hover i[class*="fa-"] {
    transform: rotate(-15deg) scale(1.2) !important;
    filter: drop-shadow(0 0 6px currentColor) !important;
}

/* ── Admin button special aura ────────────────────────────── */
#admin-mode-btn:hover {
    box-shadow:
        0 0 15px rgba(139,92,246,0.6),
        0 0 35px rgba(139,92,246,0.3),
        0 8px 20px rgba(0,0,0,0.4) !important;
    transform: translateY(-2px) !important;
}

#admin-mode-btn.bg-green-600:hover,
#admin-mode-btn.bg-green-500:hover {
    box-shadow:
        0 0 15px rgba(34,197,94,0.7),
        0 0 35px rgba(34,197,94,0.3) !important;
}

/* ── QR / Share panel hover ───────────────────────────────── */
.qr-share-panel:hover {
    box-shadow:
        0 0 30px rgba(139,92,246,0.2),
        0 24px 60px rgba(0,0,0,0.5) !important;
}

/* ── Broadcast section hover glow ─────────────────────────── */
#broadcast-section:hover {
    border-color: rgba(16,185,129,0.5) !important;
    box-shadow:
        0 0 20px rgba(16,185,129,0.2),
        0 16px 40px rgba(0,0,0,0.3) !important;
}

/* ── Floating Nav active button ───────────────────────────── */
.floating-nav-btn.is-active {
    background: rgba(139,92,246,0.2) !important;
    box-shadow: 0 0 10px rgba(139,92,246,0.5) !important;
    color: #c4b5fd !important;
}

/* ── Animate rotate on nav refresh button ─────────────────── */
button[onclick*="refreshQuote"]:hover i {
    animation: spin-border 0.5s linear !important;
    display: inline-block;
}

/* ── Docs card hover slide ────────────────────────────────── */
#public-docs-list a,
#public-docs-list div[onclick] {
    transition: all 0.3s var(--transition-smooth) !important;
    border-radius: 0.75rem;
}

#public-docs-list a:hover,
#public-docs-list div[onclick]:hover {
    transform: translateX(5px) !important;
    background: rgba(139,92,246,0.07) !important;
    border-left: 2px solid var(--neon-purple) !important;
    padding-left: 0.75rem !important;
}

/* ── Achievements timeline pulse ──────────────────────────── */
#achievements-timeline > div {
    transition: all 0.35s var(--transition-smooth) !important;
}

#achievements-timeline > div:hover {
    transform: translateX(6px) !important;
    background: rgba(139,92,246,0.06) !important;
    border-radius: 0.75rem;
    padding-left: 0.5rem !important;
}

/* ── Poll option hover ────────────────────────────────────── */
#active-poll-container button,
#active-poll-container label {
    transition: all 0.25s var(--transition-bounce) !important;
}

#active-poll-container button:hover,
#active-poll-container label:hover {
    transform: translateX(4px) scale(1.01) !important;
    box-shadow: -3px 0 0 var(--neon-purple), 0 4px 12px rgba(139,92,246,0.15) !important;
}

/* ================================================================
   ★ END OF ULTRA-SEXY.CSS ★
   ================================================================ */
