/* ============================================================
   COMMUNITIES PAGE — PREMIUM DARK SPACE UI
   Discord-inspired server discovery with glassmorphism
   ============================================================ */

/* ---- PAGE LAYOUT ---- */
.communities-page-wrapper {
    padding: 0 24px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: auto;
}

/* ---- HERO HEADER ---- */
.communities-hero {
    text-align: center;
    padding: 20px 20px 16px;
    position: relative;
    overflow: hidden;
}

.communities-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(123, 75, 206, 0.05) 0%, transparent 50%);
    animation: communities-hero-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes communities-hero-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.communities-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00e6d6 0%, #00b4d8 30%, #7b4bce 70%, #e145a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    animation: communities-title-shimmer 6s ease-in-out infinite;
    background-size: 200% 100%;
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.4));
}

@keyframes communities-title-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.communities-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* ---- TAB SWITCHER ---- */
.communities-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.communities-tab {
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.communities-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.communities-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(123, 75, 206, 0.15));
    box-shadow: 0 2px 12px rgba(0, 180, 216, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.communities-tab i {
    margin-right: 8px;
    font-size: 13px;
}

/* ---- CONTENT PANELS ---- */
.communities-panel {
    display: none;
    animation: communities-fade-in 0.4s ease-out;
}

.communities-panel.active {
    display: block;
}

@keyframes communities-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- HORIZONTAL SCROLL LIST ---- */
.communities-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.communities-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* ---- SECTIONS ---- */
.communities-section {
    margin-bottom: 12px;
}
.communities-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ---- SERVER CARD ---- */
.community-server-card {
    background: rgba(26, 26, 46, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    animation: communities-card-entrance 0.5s ease-out backwards;
}

.community-server-card:nth-child(1) { animation-delay: 0.05s; }
.community-server-card:nth-child(2) { animation-delay: 0.1s; }
.community-server-card:nth-child(3) { animation-delay: 0.15s; }
.community-server-card:nth-child(4) { animation-delay: 0.2s; }
.community-server-card:nth-child(5) { animation-delay: 0.25s; }
.community-server-card:nth-child(6) { animation-delay: 0.3s; }
.community-server-card:nth-child(7) { animation-delay: 0.35s; }
.community-server-card:nth-child(8) { animation-delay: 0.4s; }
.community-server-card:nth-child(9) { animation-delay: 0.45s; }

@keyframes communities-card-entrance {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.community-server-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(123, 75, 206, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.community-server-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 180, 216, 0.3),
                0 0 30px rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}

.community-server-card:hover::before {
    opacity: 1;
}

/* Banner */
.community-card-banner {
    height: 112px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(123, 75, 206, 0.1));
}

.community-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.community-server-card:hover .community-card-banner img {
    transform: scale(1.05);
}

.community-card-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, var(--card-bg, #1a1a2e) 5%, transparent);
    pointer-events: none;
}

/* Logo */
.community-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 3px solid var(--card-bg, #1a1a2e);
    object-fit: cover;
    position: absolute;
    top: 80px; /* 112px banner height - 32px half height */
    left: 20px;
    z-index: 3;
    background: var(--deep-space, #12121d);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-server-card:hover .community-card-logo {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

/* Card body */
.community-card-body {
    padding: 44px 16px 16px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.community-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.community-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(0, 230, 214, 0.15), rgba(0, 180, 216, 0.1));
    color: #00e6d6;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.community-card-verified i {
    font-size: 9px;
}

.community-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.2s ease;
}

.community-card-desc.expanded {
    -webkit-line-clamp: initial;
}

.community-card-readmore {
    font-size: 11px;
    color: var(--quantum-blue);
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: 14px;
    display: inline-block;
    font-weight: 500;
}
.community-card-readmore:hover {
    text-decoration: underline;
}

/* Card footer stats */
.community-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.community-card-stats {
    display: flex;
    gap: 14px;
}

.community-card-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.community-card-stat .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.community-card-stat .dot.online {
    background: #00ff9d;
    box-shadow: 0 0 8px rgba(0, 255, 157, 0.4);
}

.community-card-stat .dot.members {
    background: rgba(255, 255, 255, 0.3);
}

.community-card-join {
    padding: 5px 10px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #00b4d8, #0096c7);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.community-card-join:hover {
    background: linear-gradient(135deg, #00c4e8, #00b4d8);
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
    transform: translateY(-1px);
}

/* Admin badge */
.community-card-admin {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.community-card-admin i {
    font-size: 10px;
    color: rgba(123, 75, 206, 0.7);
}

/* Partners horizontal scroll uses the same .communities-horizontal-scroll class */

/* ---- PARTNER CARD ---- */
.community-partner-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    animation: communities-card-entrance 0.5s ease-out backwards;
    min-height: 140px;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.community-partner-card:nth-child(1) { animation-delay: 0.05s; }
.community-partner-card:nth-child(2) { animation-delay: 0.1s; }
.community-partner-card:nth-child(3) { animation-delay: 0.15s; }
.community-partner-card:nth-child(4) { animation-delay: 0.2s; }

.community-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(123, 75, 206, 0.15);
    border-color: rgba(123, 75, 206, 0.2);
}

.community-partner-thumb {
    width: 200px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 75, 206, 0.1), rgba(225, 69, 166, 0.08));
}

.community-partner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-partner-card:hover .community-partner-thumb img {
    transform: scale(1.05);
}

.community-partner-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(26, 26, 46, 0.4));
    pointer-events: none;
}

.community-partner-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.community-partner-platform {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 8px;
}

.community-partner-platform.youtube {
    background: rgba(255, 0, 0, 0.12);
    color: #ff4444;
}

.community-partner-platform.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.12), rgba(131, 58, 180, 0.12));
    color: #e1306c;
}

.community-partner-platform.other {
    background: rgba(0, 180, 216, 0.12);
    color: #00b4d8;
}

.community-partner-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.community-partner-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.community-partner-visit {
    padding: 7px 18px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #7b4bce, #6c3bbf);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 0.01em;
}

.community-partner-visit:hover {
    background: linear-gradient(135deg, #8b5bde, #7b4bce);
    box-shadow: 0 4px 16px rgba(123, 75, 206, 0.35);
    transform: translateY(-1px);
}

/* ---- COMING SOON OVERLAY ---- */
.communities-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 60px 32px;
    position: relative;
    background: linear-gradient(160deg, rgba(16, 24, 40, 0.95) 0%, rgba(10, 15, 30, 0.98) 50%, rgba(12, 20, 35, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    margin: 40px auto;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.communities-coming-soon::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    animation: communities-orb-float 6s ease-in-out infinite;
    pointer-events: none;
}

.communities-coming-soon::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 75, 206, 0.06) 0%, transparent 70%);
    animation: communities-orb-float 8s ease-in-out infinite reverse;
    top: 20%;
    right: 15%;
    pointer-events: none;
}

@keyframes communities-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.communities-cs-icon {
    font-size: 72px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #00e6d6, #00b4d8, #7b4bce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: communities-cs-bounce 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes communities-cs-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.communities-cs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00e6d6, #00b4d8, #7b4bce, #e145a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    animation: communities-title-shimmer 4s ease-in-out infinite;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.communities-cs-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 420px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---- EMPTY STATE ---- */
.communities-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.4);
}

.communities-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.communities-empty p {
    font-size: 15px;
}

/* ---- LOADING SKELETON ---- */
.communities-skeleton-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
}

.communities-skeleton-banner {
    height: 140px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: communities-skeleton-wave 1.8s ease-in-out infinite;
}

.communities-skeleton-body {
    padding: 36px 16px 16px;
}

.communities-skeleton-line {
    height: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: communities-skeleton-wave 1.8s ease-in-out infinite;
    margin-bottom: 10px;
}

.communities-skeleton-line.short { width: 60%; }
.communities-skeleton-line.medium { width: 85%; }

@keyframes communities-skeleton-wave {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .communities-servers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .communities-page-wrapper {
        padding: 0 14px 30px;
    }

    .communities-hero {
        padding: 32px 14px 24px;
    }

    .communities-hero-title {
        font-size: 26px;
    }

    .communities-hero-subtitle {
        font-size: 13px;
    }

    .communities-tabs {
        width: 100%;
    }

    .communities-tab {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
        text-align: center;
    }

    .communities-servers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .communities-partners-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .community-partner-card {
        flex-direction: column;
        min-height: auto;
    }

    .community-partner-thumb {
        width: 100%;
        min-width: unset;
        height: 160px;
    }

    .community-partner-thumb::after {
        background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 46, 0.4));
    }

    .communities-cs-title {
        font-size: 24px;
    }

    .community-card-banner {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .community-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .community-card-join {
        width: 100%;
        text-align: center;
        padding: 8px 12px;
    }

    .community-partner-visit {
        width: 100%;
        text-align: center;
    }
}

/* CTA Container */
.communities-cta-container {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(160deg, rgba(16, 24, 40, 0.95) 0%, rgba(10, 15, 30, 0.98) 50%, rgba(12, 20, 35, 0.95) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.communities-cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -50%, rgba(0,180,216,0.1), transparent 70%);
    pointer-events: none;
}
.communities-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.communities-cta-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 500px;
    line-height: 1.6;
}
.communities-cta-btn {
    margin-top: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b4d8, #0096c7);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,180,216,0.3);
}
.communities-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,180,216,0.4);
}

/* ---- BLUR & LOCK OVERLAY FOR NON-AUTH USERS ---- */
.community-stats-locked {
    position: relative;
}

.stat-blur {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.3s ease;
}

.stats-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #00b4d8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.stats-lock-overlay:hover {
    background: rgba(0, 180, 216, 0.15);
    color: #00e6d6;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
}

.stats-lock-overlay i {
    font-size: 12px;
    animation: lock-pulse 2s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
