/* ============================================
   ZENITH ANIME HUB V2 — PREMIUM DESIGN SYSTEM
   ============================================ */

:root {
    --bg-dark: #04060a;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-glass: rgba(8, 10, 18, 0.85);
    --primary: #ff5e00;
    --primary-glow: rgba(255, 94, 0, 0.4);
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.3);
    --accent-purple: #a855f7;
    --accent-pink: #ff007f;
    --accent-green: #39ff14;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.05);
    --anime-gradient: linear-gradient(135deg, #ff5e00 0%, #ff007f 50%, #b500ff 100%);
    --cyber-gradient: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
    --neon-glow: 0 0 25px var(--primary-glow), 0 0 50px rgba(255, 94, 0, 0.15);
    --cyber-glow: 0 0 25px rgba(0, 240, 255, 0.35), 0 0 50px rgba(0, 240, 255, 0.15);
    --card-radius: 24px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Page Load Animation */
body.page-loaded .page-content {
    opacity: 1;
    transform: translateY(0);
}
.page-content {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent-pink));
    border-radius: 10px;
}

/* ===== ANIMATED BACKGROUND ===== */
.glow-mesh {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(255, 77, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
    filter: blur(80px);
    animation: mesh-drift 20s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
    0% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.05) rotate(1deg); opacity: 1; }
    100% { transform: scale(1) rotate(-1deg); opacity: 0.8; }
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border) !important;
    transition: all 0.4s var(--transition-smooth);
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===== FLOATING NAVBAR ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(6, 8, 13, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 0.7rem 2.5rem;
    background: rgba(6, 8, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--anime-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}
.logo:hover { filter: brightness(1.2); }
a.logo { text-decoration: none; }

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.gacha-nav-btn {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 63, 94, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.3) !important;
    color: #ec4899 !important;
}
.nav-links a.gacha-nav-btn:hover, .nav-links a.gacha-nav-btn.active {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    border-color: #ec4899 !important;
    background: rgba(236, 72, 153, 0.25) !important;
    color: white !important;
}

/* Watch Nav Button (Glowing Green) */
.nav-links a.watch-nav-btn {
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    color: #10b981 !important;
}
.nav-links a.watch-nav-btn:hover, .nav-links a.watch-nav-btn.active {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.45);
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.3) !important;
    color: white !important;
}

/* Manga Nav Button (Glowing Purple) */
.nav-links a.manga-nav-btn {
    background: rgba(168, 85, 247, 0.15) !important;
    border: 1px solid rgba(168, 85, 247, 0.35) !important;
    color: var(--accent-purple) !important;
}
.nav-links a.manga-nav-btn:hover, .nav-links a.manga-nav-btn.active {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.45);
    border-color: var(--accent-purple) !important;
    background: rgba(168, 85, 247, 0.3) !important;
    color: white !important;
}

/* Schedule Nav Button (Glowing Royal Blue) */
.nav-links a.schedule-nav-btn {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.35) !important;
    color: #3b82f6 !important;
}
.nav-links a.schedule-nav-btn:hover, .nav-links a.schedule-nav-btn.active {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.45);
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.3) !important;
    color: white !important;
}



/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 80px; /* navbar offset */
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
}
.hero-content { flex: 1; }
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}
.hero h1 span {
    background: var(--anime-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

/* Typed cursor */
.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 2px;
    animation: cursor-blink 1s infinite;
    vertical-align: text-bottom;
}
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero Visual */
.mascot-container {
    width: 100%;
    max-width: 460px;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), var(--neon-glow);
    animation: hero-float 5s ease-in-out infinite;
}
.mascot-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(0.5deg); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* ===== ANIME CARDS ===== */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.8rem;
}
.anime-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.45s var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
}
.anime-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.anime-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 94, 0, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--neon-glow);
}
.anime-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}
.anime-card:hover img {
    transform: scale(1.08) rotate(0.5deg);
}
.anime-info {
    padding: 1.2rem 1.3rem;
}
.anime-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--card-radius);
}
.skeleton-card {
    height: 400px;
    border-radius: var(--card-radius);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}/* ===== BUTTONS ===== */
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    color: white;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::before {
    opacity: 1;
}
.btn:active {
    transform: scale(0.97) translateY(1px) !important;
}
.btn-primary {
    background: var(--anime-gradient);
    border-color: rgba(255, 94, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.25);
}
.btn-primary:hover {
    box-shadow: 0 8px 25px var(--primary-glow), 0 0 15px rgba(255, 0, 127, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}
/* ===== FOOTER ===== */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
footer a {
    color: var(--primary);
    text-decoration: none;
}

/* ===== AD SPACE ===== */
.ad-space {
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    margin: 1.5rem 0;
    position: relative;
}
.ad-space::before {
    content: 'AD';
    position: absolute;
    top: 5px; right: 10px;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
}

/* ===== LIGHTBOX ===== */
.lightbox, .lb-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    overflow: auto;
}
.lb-overlay.active { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 1.5rem; padding: 2rem; }
.lightbox-content, .lb-content {
    margin: 5% auto;
    width: 90%; max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(12, 15, 24, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
}
.lightbox-close, .lb-close {
    position: fixed;
    top: 15px; right: 25px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover, .lb-close:hover { background: #ef4444; transform: scale(1.1); }

.lb-image {
    max-width: 85vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    object-fit: contain;
}
.lb-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.lb-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    border: none;
}
.lb-btn:hover { transform: translateY(-2px); }
.lb-btn-download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}
.lb-btn-lore {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: white;
}
.lb-ad {
    width: 100%; max-width: 728px; height: 90px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    position: relative;
}
.lb-ad::before {
    content: 'AD'; position: absolute; top: 4px; right: 8px;
    font-size: 0.55rem; color: rgba(255,255,255,0.2); letter-spacing: 1px;
}

.lightbox-img-container {
    display: flex; justify-content: center; align-items: center;
    background: #000; border-radius: 16px; min-height: 500px;
}
.lightbox-img-container img {
    max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px;
}
.lightbox-sidebar {
    display: flex; flex-direction: column; gap: 1.5rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
        min-height: auto;
    }
    .hero h1 { font-size: 3rem; letter-spacing: -1px; }
    .hero p { margin: 0 auto 2rem; }
    .hero-image { order: -1; }
    .mascot-container { max-width: 320px; height: 400px; }

    nav { padding: 0.8rem 1.5rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(6, 8, 13, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 999;
        transform: none;
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links a { font-size: 1.3rem; padding: 1rem 2rem; }
    .hamburger { display: flex; }

    .lightbox-content, .lb-content { grid-template-columns: 1fr; }
    .anime-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
    .anime-card img { height: 240px; }
    .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }
}

/* ===== AUTOCOMPLETE DROPDOWN ===== */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: rgba(10, 13, 22, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 999;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255,77,0,0.08);
    animation: acDrop 0.2s ease;
}
.autocomplete-dropdown.active { display: block; }
@keyframes acDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ac-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: rgba(255, 77, 0, 0.1); }
.ac-thumb {
    width: 44px; height: 58px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
}
.ac-info { display: flex; flex-direction: column; gap: 3px; }
.ac-title { color: #fff; font-weight: 700; font-size: 0.95rem; }
.ac-meta { color: var(--text-secondary); font-size: 0.75rem; }

/* ===== FLOATING FEEDBACK BUTTON ===== */
.feedback-float-btn {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: auto;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--anime-gradient);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 20px var(--primary-glow), 0 0 0 0 rgba(255,77,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fb-pulse 3s ease-in-out infinite;
}
.feedback-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px var(--primary-glow);
    animation: none;
}
@keyframes fb-pulse {
    0%, 100% { box-shadow: 0 4px 20px var(--primary-glow), 0 0 0 0 rgba(255,77,0,0.4); }
    50%       { box-shadow: 0 4px 20px var(--primary-glow), 0 0 0 12px rgba(255,77,0,0); }
}

/* ===== FEEDBACK MODAL ===== */
.feedback-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.feedback-modal-overlay.active { display: flex; }
.feedback-modal-box {
    background: rgba(12, 15, 26, 0.98);
    border: 1px solid rgba(255,77,0,0.3);
    border-radius: 28px;
    padding: 2.5rem;
    width: 100%; max-width: 480px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 40px rgba(255,77,0,0.1);
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
.feedback-close {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    color: white;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.feedback-close:hover { background: #ef4444; border-color: #ef4444; }
.feedback-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.85rem 1.1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: block;
    appearance: none;
}
.feedback-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255,77,0,0.2);
}
.feedback-input option { background: #0a0d16; color: white; }

/* ===== BATTLE SHARE BUTTONS ===== */
.battle-share-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    color: white;
    transition: all 0.3s ease;
    font-family: inherit;
}
.battle-share-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-glow); }
.battle-share-btn.wa:hover  { background: #25d366; border-color: #25d366; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.battle-share-btn.tw:hover  { background: #1d9bf0; border-color: #1d9bf0; box-shadow: 0 6px 20px rgba(29,155,240,0.4); }
