/* ============================================
   VIPPER.COM.TR - ANA SAYFA STYLES
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Base colors */
    --bg-primary: #0a0a12;
    --bg-secondary: #0f0f1a;
    --bg-card: rgba(16, 16, 30, 0.65);
    --text-primary: #e8e8f0;
    --text-secondary: rgba(200, 200, 220, 0.6);

    /* Accent colors from sub-sites */
    --accent-purple: #8b5cf6;
    --accent-purple-glow: rgba(139, 92, 246, 0.35);
    --accent-orange: #ff5722;
    --accent-orange-glow: rgba(255, 87, 34, 0.35);
    --accent-blue: #6366f1;
    --accent-blue-glow: rgba(99, 102, 241, 0.35);
    --accent-rinav: #7c4dff;
    --accent-rinav-glow: rgba(124, 77, 255, 0.35);
    --accent-ceza: #e53935;
    --accent-ceza-glow: rgba(229, 57, 53, 0.35);
    --accent-fivem: #00e5ff;
    --accent-fivem-glow: rgba(0, 229, 255, 0.35);
    --accent-gold: #ffb300;
    --accent-gold-glow: rgba(255, 179, 0, 0.35);
    --accent-lifeinvader: #ff3333;
    --accent-lifeinvader-glow: rgba(255, 51, 51, 0.35);

    /* Card borders */
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ---------- Ambient Glow Blobs ---------- */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: blobFloat 20s ease-in-out infinite;
}

.glow-purple {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.glow-orange {
    width: 450px;
    height: 450px;
    background: var(--accent-orange);
    top: 30%;
    right: -5%;
    animation-delay: -7s;
}

.glow-blue {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    bottom: -5%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(30px, 40px) scale(1.05); }
}

/* ---------- Container ---------- */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ---------- Hero / Brand ---------- */
.hero {
    text-align: center;
    padding: 100px 0 60px;
    animation: fadeInUp 1s ease-out;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.logo-container {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: logoPulse 4s ease-in-out infinite;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--accent-purple-glow));
    animation: logoFloat 3s ease-in-out infinite;
    transition: transform 0.4s ease;
    /* Kare kenarları yumuşak eritme */
    -webkit-mask-image: radial-gradient(circle, white 55%, transparent 75%);
    mask-image: radial-gradient(circle, white 55%, transparent 75%);
}

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

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 40px var(--accent-purple-glow), 0 0 80px rgba(99, 102, 241, 0.15); }
    33% { box-shadow: 0 0 50px var(--accent-orange-glow), 0 0 100px rgba(255, 87, 34, 0.15); }
    66% { box-shadow: 0 0 45px var(--accent-blue-glow), 0 0 90px rgba(99, 102, 241, 0.2); }
}

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

@keyframes logoShine {
    0% { transform: translateX(-100%) rotate(25deg); }
    50%, 100% { transform: translateX(200%) rotate(25deg); }
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #e0e0ff 0%, #ffffff 40%, #c4b5fd 60%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
    max-width: 500px;
    margin: 36px auto 0;
    line-height: 1.6;
}

.scroll-indicator {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    animation: scrollBounce 2s infinite;
    pointer-events: none;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* ---------- Cards Section ---------- */
.cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    padding: 20px 0 80px;
    align-items: start;
}

.cards-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

/* ---------- Card Base ---------- */
.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 44px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition:
        transform var(--transition-smooth),
        border-color var(--transition-smooth),
        box-shadow var(--transition-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: cardFadeIn 0.8s ease-out both;
    height: 420px;
}

#card-animasyon { animation-delay: 0.15s; }
#card-rinav { animation-delay: 0.3s; }
#card-lifeinvader { animation-delay: 0.35s; }
#card-ragemp { animation-delay: 0.4s; }
#card-ceza { animation-delay: 0.48s; }
#card-fivem { animation-delay: 0.55s; }
#card-bbcode { animation-delay: 0.65s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card glow (behind card) */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

/* Card shine effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: skewX(-15deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 3;
}

.card:hover .card-shine {
    left: 150%;
}

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

.card:hover .card-glow {
    opacity: 1;
}

/* Card content */
.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 100%;
}

/* Card icon */
.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
}

.card:hover .card-icon {
    transform: scale(1.1) translateY(-4px);
}

.icon-emoji {
    font-size: 36px;
    line-height: 1;
}

/* Card title */
.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color var(--transition-smooth), text-shadow var(--transition-smooth);
}

/* Card description */
.card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 280px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card CTA */
.card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity var(--transition-smooth),
        transform var(--transition-smooth);
}

.card:hover .card-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.card:hover .cta-arrow {
    transform: translateX(4px);
}

/* ---------- Animasyon Card ---------- */
.card-animasyon .card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.card-animasyon:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 8px 40px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(139, 92, 246, 0.1);
}

.card-animasyon:hover .card-icon {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
}

.card-animasyon .card-glow {
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
}

.card-animasyon:hover .card-title {
    color: var(--accent-purple);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.card-animasyon .card-cta {
    color: var(--accent-purple);
}

/* ---------- RageMP Card ---------- */
.card-ragemp .card-icon {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.05));
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.1);
}

.card-ragemp:hover {
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow:
        0 8px 40px rgba(255, 87, 34, 0.15),
        0 0 0 1px rgba(255, 87, 34, 0.1),
        inset 0 1px 0 rgba(255, 87, 34, 0.1);
}

.card-ragemp:hover .card-icon {
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.25);
}

.card-ragemp .card-glow {
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
}

.card-ragemp:hover .card-title {
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.6);
}

.card-ragemp .card-cta {
    color: var(--accent-orange);
}

/* ---------- BBCODE Card ---------- */
.card-bbcode .card-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.card-bbcode:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow:
        0 8px 40px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(99, 102, 241, 0.1);
}

.card-bbcode:hover .card-icon {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.25);
}

.card-bbcode .card-glow {
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
}

.card-bbcode:hover .card-title {
    color: var(--accent-blue);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.card-bbcode .card-cta {
    color: var(--accent-blue);
}

/* ---------- RinaV Card ---------- */
.card-icon-rn {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(124, 77, 255, 0.05)) !important;
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.15);
    overflow: hidden;
    padding: 12px; /* logo fits beautifully inside */
}

.rn-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-rinav .card-icon {
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.1);
}

.card-rinav:hover {
    border-color: rgba(124, 77, 255, 0.3);
    box-shadow:
        0 8px 40px rgba(124, 77, 255, 0.15),
        0 0 0 1px rgba(124, 77, 255, 0.1),
        inset 0 1px 0 rgba(124, 77, 255, 0.1);
}

.card-rinav:hover .card-icon-rn {
    box-shadow: 0 0 40px rgba(124, 77, 255, 0.35);
}

.card-rinav .card-glow {
    background: radial-gradient(circle, var(--accent-rinav-glow) 0%, transparent 70%);
}

.card-rinav:hover .card-title {
    color: #00d2ff;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.card-rinav .card-cta {
    color: var(--accent-rinav);
}

.title-roleplay {
    color: #00d2ff;
    transition: text-shadow 0.3s ease;
}

.card-rinav:hover .title-roleplay {
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

/* ---------- Ceza Portalı Card ---------- */
.card-icon-ceza {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.25), rgba(229, 57, 53, 0.05)) !important;
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.15);
    overflow: hidden;
    padding: 12px;
}

.card-ceza .card-icon {
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.1);
}

.card-ceza:hover {
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow:
        0 8px 40px rgba(229, 57, 53, 0.15),
        0 0 0 1px rgba(229, 57, 53, 0.1),
        inset 0 1px 0 rgba(229, 57, 53, 0.1);
}

.card-ceza:hover .card-icon-ceza {
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.35);
}

.card-ceza .card-glow {
    background: radial-gradient(circle, var(--accent-ceza-glow) 0%, transparent 70%);
}

.card-ceza:hover .card-title {
    color: #ff5252;
    text-shadow: 0 0 15px rgba(229, 57, 53, 0.5);
}

.card-ceza .card-cta {
    color: var(--accent-ceza);
}

.title-ceza {
    color: #ff5252;
    transition: text-shadow 0.3s ease;
}

.card-ceza:hover .title-ceza {
    text-shadow: 0 0 15px rgba(255, 82, 82, 0.6);
}

/* ---------- Lifeinvader Card ---------- */
.card-icon-li {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.25), rgba(255, 51, 51, 0.05)) !important;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.15);
    overflow: hidden;
    padding: 12px;
}

.li-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-lifeinvader .card-icon {
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.1);
}

.card-lifeinvader:hover {
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow:
        0 8px 40px rgba(255, 51, 51, 0.15),
        0 0 0 1px rgba(255, 51, 51, 0.1),
        inset 0 1px 0 rgba(255, 51, 51, 0.1);
}

.card-lifeinvader:hover .card-icon-li {
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.35);
}

.card-lifeinvader .card-glow {
    background: radial-gradient(circle, var(--accent-lifeinvader-glow) 0%, transparent 70%);
}

.card-lifeinvader:hover .card-title {
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.card-lifeinvader .card-cta {
    color: var(--accent-lifeinvader);
}

.title-lifeinvader {
    color: #ff3333;
    transition: text-shadow 0.3s ease;
}

.card-lifeinvader:hover .title-lifeinvader {
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
}

/* ---------- RinaV Chatlog Analiz Card ---------- */
.card-icon-chatlog {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05)) !important;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
    overflow: hidden;
    padding: 12px;
}

.card-rinav-chatlog:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow:
        0 8px 40px rgba(251, 191, 36, 0.15),
        0 0 0 1px rgba(251, 191, 36, 0.1),
        inset 0 1px 0 rgba(251, 191, 36, 0.1);
}

.card-rinav-chatlog:hover .card-icon-chatlog {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.25);
}

.card-rinav-chatlog .card-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
}

.card-rinav-chatlog:hover .card-title {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.card-rinav-chatlog .card-cta {
    color: #fbbf24;
}

/* ---------- Fivem Card ---------- */
.card-icon-fivem {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

.card-fivem:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow:
        0 8px 40px rgba(0, 229, 255, 0.15),
        0 0 0 1px rgba(0, 229, 255, 0.1),
        inset 0 1px 0 rgba(0, 229, 255, 0.1);
}

.card-fivem:hover .card-icon-fivem {
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
}

.card-fivem .card-glow {
    background: radial-gradient(circle, var(--accent-fivem-glow) 0%, transparent 70%);
}

.card-fivem:hover .card-title {
    color: var(--accent-fivem);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.card-fivem .card-cta {
    color: var(--accent-fivem);
}

.title-fivem {
    color: #00e5ff;
    transition: text-shadow 0.3s ease;
}

.card-fivem:hover .title-fivem {
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

/* ---------- Footer ---------- */
.footer {
    padding: 32px 0;
    text-align: center;
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.footer p {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .cards-section {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 20px;
    }

    .brand-name {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .hero {
        padding: 70px 0 40px;
    }

    .tagline {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .logo-img {
        width: 76px;
        height: 76px;
    }

    .card {
        padding: 36px 24px 28px;
        border-radius: 20px;
        height: auto;
        min-height: 320px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .icon-emoji {
        font-size: 28px;
    }

    .card-title {
        font-size: 20px;
    }
}

/* ---------- Admin / Görevli Section ---------- */
.admin-section {
    width: 100%;
    padding: 0 0 60px;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#card-gorevli {
    animation-delay: 0.75s;
}

.admin-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.admin-divider::before,
.admin-divider::after {
    content: '';
    flex: 1;
    height: 1px;
}

.admin-divider::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    margin-right: 20px;
}

.admin-divider::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08), transparent);
    margin-left: 20px;
}

.admin-divider span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.admin-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.admin-grid .card {
    width: 100%;
    max-width: calc((100% - 56px) / 3);
    height: auto;
    min-height: 370px;
}

@media (max-width: 900px) {
    .admin-grid .card {
        max-width: 420px;
    }
}

/* ---------- Görevli Card ---------- */
.card-gorevli .card-icon {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(255, 179, 0, 0.05));
    box-shadow: 0 0 30px rgba(255, 179, 0, 0.1);
}

.card-gorevli:hover {
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow:
        0 8px 40px rgba(255, 179, 0, 0.15),
        0 0 0 1px rgba(255, 179, 0, 0.1),
        inset 0 1px 0 rgba(255, 179, 0, 0.1);
}

.card-gorevli:hover .card-icon {
    box-shadow: 0 0 40px rgba(255, 179, 0, 0.25);
}

.card-gorevli .card-glow {
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
}

.card-gorevli:hover .card-title {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255, 179, 0, 0.6);
}

.card-gorevli .card-cta {
    color: var(--accent-gold);
}

/* ---------- Password Modal ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    position: relative;
    background: rgba(15, 15, 30, 0.75);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 28px;
    padding: 48px 40px 40px;
    width: 90%;
    max-width: 440px;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 179, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

/* Modal close button */
.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 32px;
}

.modal-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: inline-block;
    animation: lockPulse 2s infinite ease-in-out;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 15px rgba(255, 179, 0, 0.3)); }
}

.modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Input block */
.input-group {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
}

.input-group input {
    width: 100%;
    background: rgba(5, 5, 10, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    letter-spacing: 4px;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.15);
    background: rgba(5, 5, 10, 0.7);
}

.input-group input::placeholder {
    letter-spacing: normal;
    color: rgba(200, 200, 220, 0.3);
    font-size: 15px;
}

/* Error styling for input */
.input-group.error input {
    border-color: #ef4444 !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25) !important;
    animation: inputErrorShake 0.4s ease-in-out;
}

@keyframes inputErrorShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* Success styling for modal card */
.modal-card.success {
    border-color: #10b981 !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s ease;
}

.modal-card.success .modal-header h3 {
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-card.success .modal-icon {
    animation: successZoom 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6)); }
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 16px;
}

.btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.35);
    background: linear-gradient(135deg, #ffc107 0%, #ffa000 100%);
}

.btn:active {
    transform: translateY(0);
}

/* Shake animation for incorrect attempt */
.modal-card.shake {
    animation: modalShake 0.5s ease-in-out;
}

@keyframes modalShake {
    0%, 100% { transform: scale(1) translateY(0); }
    15%, 45%, 75% { transform: scale(1) translateX(-10px); }
    30%, 60%, 90% { transform: scale(1) translateX(10px); }
}

/* ---------- Visitor Stats Bubbles around Logo ---------- */
.stat-bubble {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 15, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.stat-bubble:hover {
    background: rgba(20, 20, 45, 0.9);
    transform: scale(1.1) !important;
    z-index: 20;
}

/* Individual sizes and placement */
.bubble-total {
    width: 76px;
    height: 76px;
    top: -38px;
    left: -70px;
    animation: 
        bubbleFloat1 5s ease-in-out infinite,
        bubblePulse 4s ease-in-out infinite;
}

.bubble-30d {
    width: 68px;
    height: 68px;
    top: -32px;
    right: -66px;
    animation: 
        bubbleFloat2 6s ease-in-out infinite,
        bubblePulse 4s ease-in-out infinite;
}

.bubble-7d {
    width: 64px;
    height: 64px;
    bottom: -24px;
    left: -58px;
    animation: 
        bubbleFloat3 5.5s ease-in-out infinite,
        bubblePulse 4s ease-in-out infinite;
}

.bubble-24h {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -54px;
    animation: 
        bubbleFloat4 6.5s ease-in-out infinite,
        bubblePulse 4s ease-in-out infinite;
}

/* Sync with logo pulse animation */
@keyframes bubblePulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--accent-purple-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        border-color: rgba(139, 92, 246, 0.3);
    }
    33% {
        box-shadow: 0 0 15px var(--accent-orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 87, 34, 0.3);
    }
    66% {
        box-shadow: 0 0 15px var(--accent-blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        border-color: rgba(99, 102, 241, 0.3);
    }
}

/* Typography in bubbles */
.bubble-val {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bubble-total .bubble-val {
    font-size: 18px; /* Slightly larger for total */
}

.bubble-lbl {
    font-size: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Floating Animations */
@keyframes bubbleFloat1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(-4px); }
}
@keyframes bubbleFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(6px); }
}
@keyframes bubbleFloat3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(8px) translateX(-6px); }
}
@keyframes bubbleFloat4 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(6px) translateX(8px); }
}

/* Responsive adjustments for logo bubbles */
@media (max-width: 480px) {
    .logo-container,
    .logo-wrapper {
        width: 90px;
        height: 90px;
    }
    .stat-bubble {
        transform: scale(0.8);
    }
    .bubble-total {
        top: -34px;
        left: -58px;
    }
    .bubble-30d {
        top: -28px;
        right: -54px;
    }
    .bubble-7d {
        bottom: -22px;
        left: -48px;
    }
    .bubble-24h {
        bottom: -18px;
        right: -44px;
    }
    .stat-bubble:hover {
        transform: scale(0.9) !important;
    }
}

/* ---------- Bubble custom tooltip ---------- */
.bubble-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 14px;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(99, 102, 241, 0.05);
    transition: 
        opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Tooltip arrow */
.bubble-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(10, 10, 20, 0.9) transparent transparent transparent;
}

/* Hover show tooltip */
.stat-bubble:hover .bubble-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- Logo custom tooltip ---------- */
.logo-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 14px;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(139, 92, 246, 0.05);
    transition: 
        opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Tooltip arrow */
.logo-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(10, 10, 20, 0.9) transparent transparent transparent;
}

/* Hover show tooltip */
.logo-wrapper:hover .logo-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- Logo Waking Loader & Detached Placeholder ---------- */
.logo-loader {
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    pointer-events: none;
    z-index: 5;
    transform: rotate(-90deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-loader circle {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 364; /* 2 * PI * 58 = ~364 (since wrapper is 110px width/height + offset) */
    stroke-dashoffset: 364;
    transition: stroke-dashoffset 1s linear;
    filter: drop-shadow(0 0 6px var(--accent-gold-glow));
}

.logo-wrapper.waking-up .logo-loader {
    opacity: 1;
}

.logo-wrapper.waking-up .logo-loader circle {
    stroke-dashoffset: 0;
}

.logo-wrapper.waking-up {
    animation: logoWakingShake 0.12s infinite alternate;
}

@keyframes logoWakingShake {
    0% { transform: scale(1.05) rotate(-2deg); }
    100% { transform: scale(1.05) rotate(2deg); }
}

/* Faded placeholder when cat is active */
.logo-wrapper.cat-detached .logo-img {
    opacity: 0.15;
    filter: grayscale(1) blur(1px) drop-shadow(0 0 0 transparent);
    transform: scale(0.95);
}

.logo-wrapper.cat-detached::after {
    content: '🐾';
    position: absolute;
    font-size: 20px;
    color: var(--text-secondary);
    opacity: 0.25;
    animation: pawFloat 4s ease-in-out infinite;
}

@keyframes pawFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.2; }
    50% { transform: scale(1.1) translateY(-4px); opacity: 0.35; }
}

/* ---------- Interactive Vipper Cat ---------- */
.vipper-cat {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 999;
    pointer-events: auto;
    cursor: pointer;
}

.vipper-cat.cat-hidden {
    display: none !important;
}

.cat-sprite {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform-origin: bottom center;
    transition: transform 0.2s ease;
}

.cat-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Flip only the cat image to prevent mirroring speech bubble text and float particles */
.vipper-cat.cat-flipped .cat-img {
    transform: scaleX(-1);
}

/* ---------- State Animations ---------- */

/* Walking / Running Jumping (Bobbing) Animations */
.vipper-cat.cat-walking .cat-sprite {
    animation: catBobWalk 0.6s infinite ease-in-out;
}

.vipper-cat.cat-running .cat-sprite {
    animation: catBobRun 0.45s infinite ease-in-out;
}

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

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

/* Petting State - Happy wiggle */
.cat-sitting.cat-petting .cat-sprite {
    animation: catPetWiggle 0.2s ease-in-out infinite alternate;
}

@keyframes catPetWiggle {
    0% {
        transform: translateY(2px) rotate(-3deg);
    }
    100% {
        transform: translateY(0) rotate(3deg);
    }
}

/* ---------- Speech Bubble ---------- */
.cat-bubble {
    position: absolute;
    bottom: 110%; /* Elevated above the cat's head */
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 10, 20, 0.85); /* dark glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 14px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(139, 92, 246, 0.15);
    transition: 
        opacity 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Speech arrow */
.cat-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(10, 10, 20, 0.85) transparent transparent transparent;
}

/* Speech arrow border */
.cat-bubble::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12) transparent transparent transparent;
    z-index: -1;
}

/* Active state */
.cat-bubble.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

/* ---------- Particles (Zzz & Hearts & Bursts) ---------- */

/* Zzz text */
.cat-zzz-container {
    position: absolute;
    top: -15px;
    left: 10px;
    width: 40px;
    height: 25px;
    pointer-events: none;
}

.cat-zzz {
    position: absolute;
    font-size: 9px;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0;
    animation: zzzAnim 3s infinite;
}

@keyframes zzzAnim {
    0% { transform: translate(0, 10px) scale(0.6); opacity: 0; }
    30% { opacity: 0.6; }
    100% { transform: translate(-10px, -20px) scale(1.1); opacity: 0; }
}

/* Hearts container */
.cat-hearts-container {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

.cat-heart {
    position: absolute;
    font-size: 10px;
    color: #ef4444;
    filter: drop-shadow(0 0 3px rgba(239, 68, 68, 0.5));
    opacity: 0;
    animation: heartFloat 2s ease-out forwards;
}

@keyframes heartFloat {
    0% { transform: translateY(15px) translateX(0) scale(0.5); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: translateY(-20px) translateX(var(--offset-x, 0px)) scale(1.1); opacity: 0; }
}

/* Waking up Burst Particles */
.cat-burst-particle {
    position: fixed;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    animation: burstFloat 0.8s ease-out forwards;
}

@keyframes burstFloat {
    0% {
        transform: translate(0, 0) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.4);
        opacity: 0;
    }
}

/* ---------- Cat Food Falling Items ---------- */
.cat-food {
    position: fixed;
    font-size: 24px;
    z-index: 990;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cat-food.eaten {
    transform: scale(0);
    opacity: 0;
}

/* Crumbs */
.cat-crumb {
    position: fixed;
    font-size: 10px;
    pointer-events: none;
    z-index: 1000;
    animation: crumbFloat 0.5s ease-out forwards;
}

@keyframes crumbFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.2);
        opacity: 0;
    }
}

/* ---------- Milk Rain Game Items ---------- */
.cat-milk-bottle {
    position: fixed;
    font-size: 32px;
    z-index: 998;
    pointer-events: none;
    top: 15px;
    transition: all 0.5s ease;
    transform-origin: center center;
    animation: bottleWobble 2s alternate infinite ease-in-out;
}

@keyframes bottleWobble {
    0% { transform: rotate(15deg); }
    100% { transform: rotate(45deg); }
}

.cat-milk-stream {
    position: fixed;
    width: 12px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    z-index: 997;
    pointer-events: none;
    top: 50px;
    bottom: 0;
    transform-origin: top center;
    animation: streamPour 0.3s ease-out forwards, streamWobble 1s infinite alternate ease-in-out;
}

@keyframes streamPour {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

@keyframes streamWobble {
    0% { transform: scaleX(0.9); }
    100% { transform: scaleX(1.1); }
}

/* Milk Splash */
.cat-milk-splash {
    animation: milkSplashAnim 0.4s ease-out forwards;
}

@keyframes milkSplashAnim {
    0% {
        transform: translate(0, 0) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.2);
        opacity: 0;
    }
}

/* ---------- Bad Food Obstacles ---------- */
.cat-food.cat-food-bad {
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.95));
    animation: badWobble 0.6s alternate infinite ease-in-out;
}

@keyframes badWobble {
    0% { transform: scale(1) rotate(-15deg); }
    100% { transform: scale(1) rotate(15deg); }
}

/* Bad eating effect crumbs */
.cat-bad-particle {
    position: fixed;
    font-size: 11px;
    pointer-events: none;
    z-index: 1000;
    animation: badParticleAnim 0.6s ease-out forwards;
}

@keyframes badParticleAnim {
    0% {
        transform: translate(0, 0) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.2);
        opacity: 0;
    }
}

/* ---------- Cat Swarm Clones ---------- */
.vipper-cat-clone {
    position: fixed;
    width: 24px;
    height: 24px;
    z-index: 999;
    pointer-events: none;
    will-change: left, top;
}

.vipper-cat-clone .cat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---------- Cat Game Scoreboard ---------- */
.cat-scoreboard {
    position: fixed;
    right: -260px;
    top: 16px;
    transform: none;
    width: 220px;
    background: rgba(8, 8, 20, 0.88);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px 0 0 20px;
    padding: 18px 16px;
    z-index: 950;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        -6px 0 30px rgba(0, 0, 0, 0.5),
        inset 1px 0 0 rgba(255, 255, 255, 0.04);
    transition: right 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Outfit', sans-serif;
}

.cat-scoreboard.active {
    right: 0;
}

.sb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sb-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-toggle-cards-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(200, 200, 220, 0.85);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 9px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sb-toggle-cards-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.45);
    color: #a78bfa;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
}

body.cards-hidden #hero-section,
body.cards-hidden #cards-section,
body.cards-hidden #admin-section,
body.cards-hidden #footer {
    display: none !important;
}

.sb-cat-icon {
    font-size: 22px;
    animation: sbCatBob 1.4s ease-in-out infinite;
}

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

.sb-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #a78bfa 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.sb-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.sb-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 7px 10px;
}

.sb-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(200, 200, 220, 0.65);
    letter-spacing: 0.3px;
}

.sb-stat-val {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.sb-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    margin: 10px 0;
}

.sb-lb-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(200, 200, 220, 0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sb-leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    max-height: 140px;
    overflow-y: auto;
    scrollbar-width: none;
}

.sb-leaderboard-list::-webkit-scrollbar {
    display: none;
}

.sb-lb-row {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 11px;
}

.sb-lb-rank {
    font-size: 13px;
    flex-shrink: 0;
}

.sb-lb-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sb-lb-score {
    color: #a78bfa;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.sb-lb-empty {
    font-size: 11px;
    color: rgba(200, 200, 220, 0.35);
    text-align: center;
    padding: 8px 0;
    font-style: italic;
}

.sb-hint {
    font-size: 10px;
    color: rgba(200, 200, 220, 0.3);
    text-align: center;
    line-height: 1.4;
}

/* ---------- Floating Score Indicators ---------- */
.score-indicator {
    position: fixed;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 900;
    pointer-events: none;
    z-index: 1050;
    animation: scoreFloat 1.1s ease-out forwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.score-good {
    color: #4ade80;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.6));
}

.score-bad {
    color: #f87171;
    filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.6));
}

@keyframes scoreFloat {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 1;
    }
    40% {
        transform: translateY(-25px) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) scale(0.9);
        opacity: 0;
    }
}

/* ---------- Cat Explosion Name Modal ---------- */
.cat-explosion-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 10, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-explosion-modal.active {
    opacity: 1;
    pointer-events: all;
}

.explosion-modal-card {
    background: rgba(12, 12, 28, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 28px;
    padding: 44px 36px 36px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Outfit', sans-serif;
}

.cat-explosion-modal.active .explosion-modal-card {
    transform: scale(1) translateY(0);
}

.explosion-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: explosionIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes explosionIconPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.explosion-modal-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 60%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.explosion-modal-desc {
    font-size: 14px;
    color: rgba(200, 200, 220, 0.6);
    margin-bottom: 8px;
}

.explosion-score-display {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #4ade80 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.3));
}

.explosion-name-input {
    width: 100%;
    background: rgba(5, 5, 15, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 18px;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.explosion-name-input:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    background: rgba(5, 5, 15, 0.8);
}

.explosion-name-input::placeholder {
    color: rgba(200, 200, 220, 0.3);
    font-size: 15px;
    letter-spacing: normal;
}

.explosion-modal-actions {
    display: flex;
    gap: 12px;
}

.explosion-btn {
    flex: 1;
    padding: 13px 20px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.4px;
}

.explosion-btn-primary {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.explosion-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
}

.explosion-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(200, 200, 220, 0.7);
}

.explosion-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.explosion-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================================
   Scoreboard Lives Styling
   ============================================================ */
#sb-lives {
    color: #ff4a4a;
    text-shadow: 0 0 8px rgba(255, 74, 74, 0.4);
    letter-spacing: 1px;
}

/* ============================================================
   Admin Auth Modal (Password Prompt)
   ============================================================ */
.admin-auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-auth-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.admin-auth-card {
    background: rgba(15, 15, 27, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(139, 92, 246, 0.05);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admin-auth-overlay.active .admin-auth-card {
    transform: scale(1) translateY(0);
}

.admin-auth-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.3));
}

.admin-auth-title {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.admin-auth-desc {
    color: rgba(200, 200, 220, 0.6);
    font-size: 13px;
    margin-bottom: 24px;
}

.admin-auth-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.25s ease;
    margin-bottom: 12px;
}

.admin-auth-input:focus {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.15);
}

.admin-auth-error {
    color: #ff4a4a;
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.admin-auth-actions {
    display: flex;
    gap: 12px;
}

.admin-auth-actions button,
.admin-auth-btn-primary,
.admin-auth-btn-secondary {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.admin-auth-btn-primary {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.admin-auth-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.admin-auth-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(200, 200, 220, 0.8);
}

.admin-auth-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Shake Animation on Wrong Password */
.admin-auth-card.shake {
    animation: authShake 0.4s ease;
}

@keyframes authShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

/* ============================================================
   Admin Panel Overlay (Dashboard)
   ============================================================ */
.admin-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 8, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.admin-panel-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.admin-panel {
    background: rgba(12, 12, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(139, 92, 246, 0.04);
    border-radius: 28px;
    width: 100%;
    max-width: 900px;
    height: 85vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(15px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-panel-overlay.active .admin-panel {
    transform: scale(1) translateY(0);
}

/* Header */
.admin-panel-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
}

.admin-panel-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.admin-panel-tabs {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-tab {
    padding: 8px 16px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: rgba(200, 200, 220, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-tab:hover {
    color: #ffffff;
}

.admin-tab.active {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
}

.admin-panel-close {
    background: transparent;
    border: 1px solid rgba(255, 74, 74, 0.2);
    color: #ff4a4a;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.admin-panel-close:hover {
    background: rgba(255, 74, 74, 0.1);
}

/* Tab Content Pane */
.admin-tab-content {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Custom Scrollbar for Tab Content */
.admin-tab-content::-webkit-scrollbar {
    width: 6px;
}
.admin-tab-content::-webkit-scrollbar-track {
    background: transparent;
}
.admin-tab-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
.admin-tab-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Leaderboard Tab Styling */
.admin-lb-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.admin-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(200, 200, 220, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-filter-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.admin-filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
}

.admin-lb-table-wrap {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
}

.admin-lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.admin-lb-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: rgba(200, 200, 220, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-lb-table td {
    padding: 14px 18px;
    color: rgba(200, 200, 220, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-lb-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Table statuses & actions */
.status-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.admin-action-btns {
    display: flex;
    gap: 6px;
}

.btn-approve,
.btn-reject {
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.btn-approve {
    background: #10b981;
    color: #ffffff;
}

.btn-approve:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.btn-reject {
    background: #ef4444;
    color: #ffffff;
}

.btn-reject:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

/* Cards Tab Styling */
.admin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.admin-card-edit-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-card-edit-box h4 {
    font-family: 'Outfit', sans-serif;
    color: #a78bfa;
    font-size: 14px;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.edit-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edit-input-group label {
    font-size: 11px;
    color: rgba(200, 200, 220, 0.5);
    font-weight: 600;
}

.edit-input-group input,
.edit-input-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.edit-input-group input:focus,
.edit-input-group textarea:focus {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.admin-cards-save-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.admin-save-status {
    font-size: 13px;
    font-weight: 600;
}

.admin-save-status.success {
    color: #10b981;
}

.admin-save-status.error {
    color: #ef4444;
}

.admin-save-btn {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    transition: all 0.2s ease;
}

.admin-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

/* ============================================================
   Settings Tab Form Styling
   ============================================================ */
.admin-settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
}

.settings-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.settings-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.settings-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.settings-group input:focus {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.settings-hint {
    font-size: 11px;
    color: rgba(200, 200, 220, 0.45);
    line-height: 1.4;
}

/* ============================================================
   Visitor Logs Styling
   ============================================================ */
.admin-logs-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.admin-log-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.admin-log-group:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.admin-log-group.active {
    border-color: rgba(167, 139, 250, 0.3);
    background: rgba(15, 15, 27, 0.2);
}

.admin-log-ip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}

.admin-log-ip-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-log-ip-addr {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.admin-log-count-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.admin-log-toggle-icon {
    color: rgba(200, 200, 220, 0.4);
    font-size: 12px;
    transition: transform 0.25s ease;
}

.admin-log-group.active .admin-log-toggle-icon {
    transform: rotate(180deg);
    color: #a78bfa;
}

.admin-log-events-list {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.15);
}

.admin-log-group.active .admin-log-events-list {
    display: block;
}

.admin-log-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    text-align: left;
}

.admin-log-table th {
    padding: 8px 12px;
    font-weight: 700;
    color: rgba(200, 200, 220, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-log-table td {
    padding: 10px 12px;
    color: rgba(200, 200, 220, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.admin-log-table tr:last-child td {
    border-bottom: none;
}

.log-action-text {
    font-weight: 600;
}

.log-action-text.click-card-animasyon, .log-action-card-animasyon { color: #a78bfa; }
.log-action-text.click-card-rinav, .log-action-card-rinav { color: #60a5fa; }
.log-action-text.click-card-lifeinvader, .log-action-card-lifeinvader { color: #f472b6; }
.log-action-card-rinav-chatlog { color: #fbbf24; }
.log-action-text.click-card-ragemp, .log-action-card-ragemp { color: #34d399; }
.log-action-text.click-card-ceza, .log-action-card-ceza { color: #fbbf24; }
.log-action-text.click-card-fivem, .log-action-card-fivem { color: #f87171; }
.log-action-text.click-card-bbcode, .log-action-card-bbcode { color: #38bdf8; }
.log-action-text.click-card-gorevli, .log-action-card-gorevli { color: #f43f5e; }

.log-time-text {
    color: rgba(200, 200, 220, 0.4);
    font-family: monospace;
}

/* ── Log action type colors ── */
.log-action-site_visit  { color: #86efac; font-weight: 700; }
.log-action-cat_game_played { color: #fde68a; font-weight: 700; }

/* ── Logo Idle Speech Bubble ── */
.logo-idle-bubble {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(20, 20, 40, 0.95);
    color: #e8e8f0;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Outfit', sans-serif;
}
.logo-idle-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(139, 92, 246, 0.4);
}
.logo-idle-bubble.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ── Logo Hold Hint ── */
.logo-hold-hint {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    color: #a78bfa;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    font-family: 'Outfit', sans-serif;
    animation: hintFloat 2s ease-in-out infinite;
}
.logo-wrapper:hover .logo-hold-hint {
    opacity: 1;
}
.logo-wrapper.cat-detached .logo-hold-hint {
    display: none;
}

@keyframes hintFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.hold-hint-icon {
    font-size: 12px;
    animation: pawBounce 0.8s ease-in-out infinite alternate;
}

@keyframes pawBounce {
    from { transform: scale(1); }
    to { transform: scale(1.3); }
}

/* ── Scoreboard Food Guide ── */
.sb-food-guide {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.sb-food-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-food-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.sb-food-section-title.sb-good { color: #4ade80; }
.sb-food-section-title.sb-bad  { color: #f87171; }

.sb-food-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.sb-food-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 2px 7px;
    font-size: 11px;
    color: rgba(200, 200, 220, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.sb-food-item .food-emoji { font-size: 13px; }
.sb-food-item .food-pts  {
    font-size: 10px;
    color: rgba(200, 200, 220, 0.4);
    font-family: monospace;
}

/* ── Colorful swarm kittens (win state) ── */
.vipper-cat-clone.colorful {
    filter: hue-rotate(var(--hue, 0deg)) saturate(2);
}

/* ── Admin log last seen date ── */
.admin-log-last-seen {
    font-size: 11px;
    color: rgba(200, 200, 220, 0.4);
    font-family: monospace;
    margin-left: 6px;
}

/* ── Explosion name input error state ── */
.explosion-name-input.error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2) !important;
    animation: inputShake 0.4s ease;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
