@font-face {
    font-family: 'Martyric';
    src: url('../fonts/martyric/Martyric_PersonalUse.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-void: #050000;
    --bg-panel: rgba(20, 0, 0, 0.85);
    --bg-glass: rgba(255, 0, 0, 0.05);

    --accent-primary: #ff0000;
    --accent-secondary: #ff4500;
    --accent-tertiary: #8b0000;

    --text-primary: #ffecec;
    --text-dim: #b89494;

    --font-display: 'Martyric', cursive;
    --font-head: 'Outfit', sans-serif;
    --font-ui: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-nosifer: 'Nosifer', cursive;
    --font-mono: 'Roboto Mono', monospace;

    --dock-size: 75px;
    --card-radius: 12px;
}

/* RESET & BOX SIZING */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* SELECTION COLOR */
::selection {
    background: var(--accent-primary);
    color: #000;
    text-shadow: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff4500, #ff0000);
    border-radius: 4px;
    box-shadow: 0 0 10px #ff0000;
}

/* BACKGROUND: PREMIUM MESH GORDIENT */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
        url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.3;
    z-index: -2;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

body {
    background-color: #030000;
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C7.58172 2 4 5.58172 4 10V14C4 16.2091 5.79086 18 8 18H16C18.2091 18 20 16.2091 20 14V10C20 5.58172 16.4183 2 12 2Z" stroke="%23ff0000" stroke-width="2"/><path d="M9 12H9.01" stroke="%23ff0000" stroke-width="3" stroke-linecap="round"/><path d="M15 12H15.01" stroke="%23ff0000" stroke-width="3" stroke-linecap="round"/><path d="M10 22V18" stroke="%23ff0000" stroke-width="2" stroke-linecap="round"/><path d="M14 22V18" stroke="%23ff0000" stroke-width="2" stroke-linecap="round"/><path d="M12 16V17" stroke="%23ff0000" stroke-width="2" stroke-linecap="round"/></svg>') 16 16, auto;
}

/* Disable scroll when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100vh;
}

/* --- NEW HOME SECTIONS STYLING --- */
.new-section {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Community Stats Grid */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card-new {
    background: rgba(10, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.stat-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.1);
}

.stat-card-new i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.stat-value-new {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-ui);
}

.stat-label-new {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.stat-desc-new {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* What We Offer Grid */
.offer-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offer-card-new {
    background: rgba(15, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card-new:hover {
    background: rgba(25, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 0.2);
    transform: scale(1.02);
}

.offer-card-new i {
    font-size: 2.2rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}

.offer-card-new h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-ui);
    letter-spacing: 1px;
}

.offer-card-new p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

/* --- FONT HOVER & 3D DEPTH --- */
.stat-card-new:hover .stat-value-new,
.offer-card-new:hover h4 {
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transform: translateZ(30px);
    /* Move forward in 3D space */
}

.stat-card-new:hover .stat-label-new,
.offer-card-new:hover p {
    color: #fff;
    transform: translateZ(20px);
}

.stat-card-new i,
.offer-card-new i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card-new:hover i,
.offer-card-new:hover i {
    transform: translateZ(50px) scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 20px var(--accent-primary));
}

.stat-card-new,
.offer-card-new {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.stat-card-new::after,
.offer-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.stat-card-new:hover::after,
.offer-card-new:hover::after {
    opacity: 1;
}

@media (max-width: 992px) {

    .stats-grid-new,
    .offer-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .stats-grid-new,
    .offer-grid-new {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: perspective(1200px) rotateX(-20deg) translateY(60px) scale(0.9);
    filter: blur(8px);
    transform-origin: top center;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.reveal.revealed {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
}

.stagger-reveal .reveal {
    transition-delay: calc(0.1s * var(--reveal-index, 0));
}

/* TOP BAR & DOCK RESTRUCTURING */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    pointer-events: none;
    /* Keep none to allow clicks through header, but enable on children */
    background: linear-gradient(to bottom, rgba(5, 0, 0, 0.95) 60%, transparent);
    backdrop-filter: blur(10px);
}

.top-bar>* {
    pointer-events: auto;
    /* Enable clicks on elements inside */
}

.dock-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    background: rgba(10, 0, 0, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 0, 0.1),
        inset 0 0 10px rgba(255, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    /* Force true center in fixed header */
    left: 50%;
    transform: translateX(-50%);
}

.dock-nav:hover {
    background: rgba(20, 0, 0, 0.8);
    border-color: var(--accent-primary);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 0, 0, 0.2);
    transform: translateX(-50%) scale(1.02);
}

.dock-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-dim);
    font-size: 1.25rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dock-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.dock-item:hover::before,
.dock-item.active::before {
    opacity: 1;
}

.dock-item:hover,
.dock-item.active {
    color: var(--accent-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.dock-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
}

.brand {
    font-family: var(--font-nosifer);
    color: var(--accent-primary);
    font-size: 1.8rem;
    pointer-events: auto;
    text-shadow: 0 0 10px var(--accent-primary);
    letter-spacing: 2px;
}

.login-trigger {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 14px 40px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    border-radius: 50px;
}

.login-trigger:hover {
    background: var(--accent-primary);
    color: black;
    box-shadow: 0 0 30px var(--accent-primary), inset 0 0 10px black;
    text-shadow: none;
    cursor: crosshair;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    z-index: 10003;
}



.logo-item {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, #1a0000, #000);
    /* Chrome Border Effect */
    border: none;
    box-shadow:
        0 0 0 2px #000,
        /* Spacing */
        0 0 0 4px #333,
        /* Dark Metal */
        0 0 0 6px #888,
        /* Light Metal */
        0 0 20px rgba(255, 0, 0, 0.4),
        /* Outer Glow */
        inset 0 0 25px rgba(255, 0, 0, 0.5);
    /* Inner Glow */
    border-radius: 50%;
    /* Smooth Squircle */
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    margin: 0 25px;
    cursor: pointer;
}

.admin-link,
.admin-link+.dock-divider,
.dock-divider:has(+.admin-link) {
    display: none !important;
}

.logo-item::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    animation: rotateSheen 3s linear infinite;
    pointer-events: none;
}

.logo-item:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow:
        0 0 0 2px #000,
        0 0 0 4px #fff,
        /* White Hot Metal */
        0 0 0 6px #ff0000,
        /* Red Hot Border */
        0 0 60px rgba(255, 0, 0, 0.9),
        inset 0 0 40px rgba(255, 0, 0, 0.8);
    text-shadow: 0 0 30px #ff0000;
}

.logo-item i {
    filter: drop-shadow(0 0 5px red);
    animation: skullBeat 2s infinite;
}

@keyframes skullBeat {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    5% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px red);
    }

    10% {
        transform: scale(0.95);
        opacity: 0.9;
    }

    15% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 15px red);
    }
}

.dock-divider {
    width: 1px;
    height: 40px;
    background: var(--accent-tertiary);
    opacity: 0.5;
}

/* MUSIC PLAYER OVERLAY */
.music-player {
    position: fixed;
    bottom: 140px;
    /* Above Dock */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 350px;
    background: rgba(10, 0, 0, 0.9);
    border: 1px solid var(--accent-tertiary);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    display: none;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.music-player.active {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.track-art {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #444;
}

.track-art i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.track-details h4 {
    font-family: var(--font-head);
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.track-details p {
    color: var(--accent-secondary);
    font-size: 0.8rem;
}

.visualizer {
    display: flex;
    gap: 4px;
    height: 30px;
    align-items: flex-end;
    margin-bottom: 10px;
}

.bar {
    flex: 1;
    background: var(--accent-primary);
    height: 10px;
    animation: bounce 0.5s infinite ease-in-out alternate;
}

.bar:nth-child(odd) {
    animation-duration: 0.4s;
    background: var(--accent-secondary);
}

.bar:nth-child(2n) {
    animation-duration: 0.6s;
}

.bar:nth-child(3n) {
    animation-duration: 0.3s;
}

@keyframes bounce {
    to {
        height: 100%;
    }
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    color: #666;
}

.control-btn {
    cursor: pointer;
    transition: 0.2s;
}

.control-btn:hover {
    color: white;
}

.control-btn.play {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

/* Tooltips */
.tooltip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-tertiary);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 1px solid var(--accent-primary);
    font-family: var(--font-ui);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 0 10px black;
}

.dock-item:hover .tooltip {
    opacity: 1;
    top: -60px;
}

/* CONTENT STAGE */
.content-stage {
    min-height: 100vh;
    height: auto;
    width: 100%;
    position: relative;
    padding-bottom: 200px;
    /* Space for dock */
    /* TOILET PAPER ROLL EFFECT SETUP */
    perspective: 1000px;
    transform-style: preserve-3d;
}

.view-panel {
    display: none;
    width: 100%;
    /* Remove fixed height to let body scroll */
    padding: 100px 40px 50px 40px;
    opacity: 0;
    /* BASE STATE FOR ROLL */
    transform-origin: center top;
    transform: rotateX(-10deg) translateY(100px) scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
    align-items: center;
}

.view-panel.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

/* HOME STYLES */
.hero-content {
    text-align: center;
    margin-top: 150px;
    /* Fixed overlap with top-bar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* HOME STYLES */
.mega-title {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.8;
    color: #000;
    display: flex;
    flex-direction: column;
    text-shadow:
        0 0 5px var(--accent-primary),
        0 0 20px var(--accent-primary),
        0 0 50px var(--accent-tertiary);
    -webkit-text-stroke: 2px var(--accent-primary);
    letter-spacing: 10px;
    animation: textBurn 3s infinite alternate;
}

@keyframes textBurn {
    0% {
        filter: drop-shadow(0 0 10px red);
    }

    100% {
        filter: drop-shadow(0 0 25px orangered);
    }
}

.mega-title span:nth-child(2) {
    color: var(--accent-primary);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 20px black;
    position: relative;
}

.mega-title span:nth-child(2)::after {
    content: 'VERSE';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-image: linear-gradient(180deg, yellow, red, black);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

.hero-sub {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-sub p {
    font-family: var(--font-ui);
    letter-spacing: 8px;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 10px black;
    text-transform: uppercase;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--accent-secondary);
    font-weight: 700;
    font-family: var(--font-body);
    border: 1px solid var(--accent-tertiary);
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.5);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary);
    animation: flash 1s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-actions-new {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    letter-spacing: 1px;
    border-radius: 50px;
}

.discord-action {
    background: var(--accent-tertiary);
    color: white;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

.discord-action:hover {
    background: var(--accent-primary);
    color: black;
    box-shadow: 0 0 40px var(--accent-primary);
}

.docs-action {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid #444;
}

.docs-action:hover {
    border-color: white;
    color: white;
}

/* CARDS */
.cards-scroller {
    margin-top: 80px;
    display: flex;
    gap: 50px;
    perspective: 1000px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.card-3d {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.9), rgba(5, 0, 0, 0.95));
    border: 1px solid rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--card-radius);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    /* Fast transition for tilt */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    /* Important for 3D effect */
    will-change: transform;
}

.card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-3d:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2), inset 0 0 20px rgba(25, 0, 0, 0.5);
    z-index: 10;
}

.card-3d:hover::before {
    opacity: 1;
}

.card-inner {
    text-align: center;
    z-index: 2;
    transform: translateZ(40px);
    /* Lifts content off card */
    pointer-events: none;
}

.card-inner h2 {
    font-family: var(--font-nosifer);
    font-size: 5rem;
    opacity: 0.1;
    position: absolute;
    top: -30px;
    right: -10px;
    color: var(--accent-primary);
    transition: 0.3s;
}

.card-3d:hover .card-inner h2 {
    opacity: 0.2;
    transform: translateZ(20px) translateY(-10px);
}

.card-inner h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 10px black;
    letter-spacing: 2px;
}

.card-inner i {
    font-size: 4rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 15px var(--accent-primary));
    transition: 0.3s;
}

.card-3d:hover .card-inner i {
    transform: scale(1.1) translateZ(10px);
    filter: drop-shadow(0 0 25px var(--accent-primary));
}

/* STATS */
.stats-strip {
    margin-top: 100px;
    display: flex;
    gap: 80px;
    background: linear-gradient(90deg, transparent, rgba(30, 0, 0, 0.8), transparent);
    padding: 40px 60px;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    justify-content: center;
    width: 100%;
    backdrop-filter: blur(5px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-val {
    font-family: var(--font-ui);
    font-size: 3rem;
    /* Larger */
    color: white;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    margin-top: 10px;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

/* FEATURES */
.features-section {
    margin-top: 120px;
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

.section-title {
    font-family: var(--font-head);
    font-size: 5.5rem;
    /* Increased from 3.5rem */
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 60px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Shadow stays on container */
    position: relative;
    display: inline-block;
}

.section-title.small {
    font-size: 3.5rem;
}

.panel-header {
    font-family: var(--font-head);
    font-size: 4.5rem;
    color: var(--accent-primary);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 6px;
    background: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-primary);
}

.feature-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 20px;
}

.feat-box {
    flex: 1;
    background: rgba(10, 5, 5, 0.6);
    border: 1px solid rgba(60, 0, 0, 0.5);
    padding: 50px 30px;
    border-radius: 16px;
    transition: transform 0.1s ease-out, border-color 0.3s;
    /* Smooth motion */
    backdrop-filter: blur(10px);
    max-width: 350px;
}

.feat-box:hover {
    border-color: var(--accent-primary);
    background: rgba(20, 0, 0, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.feat-box h4 {
    font-family: var(--font-ui);
    font-size: 1.6rem;
    color: white;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feat-box i {
    font-size: 3rem;
    color: var(--accent-secondary);
    transition: 0.3s;
}

.feat-box:hover i {
    color: var(--accent-primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--accent-primary));
}

/* DASHBOARD */
.terminal-window {
    width: 900px;
    height: 600px;
    background: #020000;
    border: 1px solid var(--accent-tertiary);
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(100, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #110000;
    padding: 10px;
    border-bottom: 1px solid var(--accent-tertiary);
    display: flex;
    justify-content: center;
    position: relative;
}

.terminal-header .title {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    color: var(--text-dim);
    font-size: 1rem;
    background:
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
}

.prompt {
    color: var(--accent-primary);
}

.cmd {
    color: white;
}

.highlight {
    color: red;
    font-weight: bold;
}

/* LEGIT / VOUCHES */
.vouch-search-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 20px;
    display: flex;
    justify-content: center;
}

.vouch-search-input {
    width: 100%;
    max-width: 500px;
    background: rgba(10, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 14px 20px;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.vouch-search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(10, 0, 0, 0.9);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.vouch-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.vouch-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

.discord-msg {
    background: linear-gradient(135deg, #0d0d0d 0%, #050505 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.discord-msg:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

/* Gold glow for premium feel */
.discord-msg::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0;
    transition: 0.3s;
}

.discord-msg:hover::after {
    opacity: 0.5;
}

.msg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
}

.discord-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.header-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.username {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.timestamp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.vouch-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.05);
    color: rgba(255, 215, 0, 0.4);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.1);
    font-family: var(--font-mono);
    transition: 0.3s;
}

.discord-msg:hover .vouch-badge {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.msg-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: break-word;
}

.vouch-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

.action-icon {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    transition: 0.2s;
    opacity: 0.7;
}

.action-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.action-icon:hover.delete {
    color: #ff4444;
}

.action-icon:hover.edit {
    color: #00ff88;
}

.mention {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
}

.discord-emoji {
    height: 1.5rem;
    vertical-align: middle;
    margin: 0 2px;
    background: transparent !important;
    mix-blend-mode: plus-lighter;
}

.msg-attachment {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.msg-attachment img {
    max-width: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

/* LIVE STATUS BOARD */
.live-status-container {
    padding: 30px 0;
    text-align: center;
}

.status-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.status-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.status-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    width: 170px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.status-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px currentColor);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.card-icon img {
    background: transparent !important;
    display: block;
    mix-blend-mode: screen;
    /* Removes black background/artifacts from PNGs */
}

.card-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: #fff;
    letter-spacing: -0.5px;
}

/* Card Specific Colors */
.status-card.gold {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.status-card.gold .card-icon i {
    color: #ffd700;
}

.status-card.gold:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.status-card.green {
    border-color: rgba(0, 255, 136, 0.3);
}

.status-card.green .card-icon i {
    color: #00ff88;
}

.status-card.green .card-value {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.status-card.green:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.status-card.pink {
    border-color: rgba(255, 0, 255, 0.3);
}

.status-card.pink .card-icon i {
    color: #ff00ff;
}

.status-card.pink .card-label {
    color: #ff00ff;
    filter: brightness(1.5);
}

.status-card.pink:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.status-card.purple {
    border-color: rgba(157, 0, 255, 0.3);
}

.status-card.purple .card-icon i {
    color: #9d00ff;
}

.status-card.purple .card-value {
    color: #9d00ff;
    text-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
}

.status-card.purple:hover {
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.2);
}

.status-card.soft-pink {
    border-color: rgba(255, 192, 203, 0.3);
}

.status-card.soft-pink .card-icon i {
    color: #ffc0cb;
}

.status-card.soft-pink:hover {
    box-shadow: 0 0 30px rgba(255, 192, 203, 0.2);
}

.status-card.orange {
    border-color: rgba(255, 165, 0, 0.3);
}

.status-card.orange .card-icon i {
    color: #ffa500;
}

.status-card.orange .card-label {
    color: #ffa500;
    filter: brightness(1.5);
}

.status-card.orange:hover {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.2);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-indicator {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
}

#currentPageDisplay {
    color: var(--accent-primary);
}

.vouch-source {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.vouch-source.web {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.vouch-source.reg {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mention {
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent-primary);
    padding: 1px 4px;
    border-radius: 3px;
}

/* ABOUT /* --- TEAM GRID --- */
.team-grid-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    position: relative;
    width: 200px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-member:hover .member-pfp img {
    transform: scale(1.05);
}

.member-pfp {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    border-radius: 50%;
    /* No overflow hidden here so crown can hang out */
}

/* The actual image container */
.member-pfp img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-secondary);
    transition: transform 0.3s ease;
}

/* Crown Icon */
.member-pfp .fa-crown {
    position: absolute;
    top: -15px;
    right: -10px;
    color: #ffd700;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transform: rotate(15deg);
    z-index: 2;
}

/* Special styles for OWNER/MAIN pfp */
.member-pfp.main img {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.member-details {
    text-align: center;
    width: 100%;
}

.member-details h4 {
    font-family: 'Metal Mania', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.member-details .role {
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    background: #444;
    /* Default fallback */
}


/* Specific Roles Colors */
.member-details .role.owner {
    background: #ffd700;
    /* Gold */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.member-details .role.admin {
    background: #ff4444;
    /* Red */
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.4);
}

.member-details .role.mod {
    background: #202025;
    /* Dark Card style */
    color: #888;
    border: 1px solid #444;
}

/* Glitch specific overrides if used */
.glitch-hover:hover .member-pfp img {
    animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

/* TRAIL */
.trail-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--accent-secondary), 0 0 20px var(--accent-tertiary);
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #050000;
    border: 1px solid var(--accent-tertiary);
    width: 90%;
    max-width: 450px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 0 50px rgba(100, 0, 0, 0.5);
    text-align: center;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--accent-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header h2 {
    font-family: var(--font-head);
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: #111;
    color: white;
    border: 1px solid #333;
    cursor: pointer;
    font-family: var(--font-ui);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
    border-radius: 50px;
}

.social-btn:hover {
    border-color: var(--accent-primary);
    background: #200;
}

.divider {
    margin: 20px 0;
    color: #555;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group input {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 10px 20px;
    color: white;
    font-family: var(--font-body);
    border-radius: 50px;
}

.input-group input:focus {
    border-color: var(--accent-primary);
    outline: none;
}

.input-group label {
    display: block;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent-tertiary);
    color: white;
    border: none;
    font-family: var(--font-ui);
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 50px;
}

.submit-btn:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-primary);
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/* RESPONSIVE DESIGN */

/* Tablet & Mobile Breakpoints */
@media (max-width: 1024px) {
    .content-stage {
        padding-bottom: 50px;
    }

    .mega-title {
        font-size: 5rem;
    }

    .cards-scroller {
        gap: 30px;
    }

    .terminal-window {
        width: 100%;
        height: 500px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 15px 20px;
    }

    .view-panel {
        padding: 80px 20px 150px 20px;
    }

    .hero-content {
        margin-top: 100px;
    }

    .mega-title {
        font-size: 4rem;
        -webkit-text-stroke: 1px var(--accent-primary);
        letter-spacing: 5px;
    }

    .hero-sub p {
        font-size: 1rem;
        letter-spacing: 4px;
        text-align: center;
    }

    .hero-actions-new {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-row {
        flex-direction: column;
        padding: 0;
    }

    .feat-box {
        width: 100%;
        max-width: 100%;
    }

    .stats-strip {
        gap: 40px;
        flex-direction: column;
        padding: 30px 20px;
    }

    .dock-nav {
        width: 90%;
        max-width: 400px;
        padding: 10px 15px;
        gap: 10px;
        justify-content: space-between;
    }

    .dock-item {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .logo-item {
        width: 60px;
        height: 60px;
        margin: 0;
        font-size: 1.8rem;
    }

    .music-player {
        width: 90%;
        left: 50%;
        bottom: 120px;
    }
}

@media (max-width: 480px) {
    .mega-title {
        font-size: 3rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .login-trigger {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .card-3d {
        width: 100%;
        height: 350px;
    }

    .terminal-header .title {
        font-size: 0.7rem;
    }

    .vouch-container {
        grid-template-columns: 1fr;
    }

    .team-grid-new {
        gap: 20px;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }
}

/* MOBILE FIXES TO PREVENT CUTOFF */
@media (max-width: 480px) {
    .top-bar {
        padding: 15px 10px !important;
        justify-content: space-between;
        gap: 5px;
    }

    .brand {
        font-size: 0.9rem !important;
        flex-shrink: 0;
    }

    .login-trigger {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        white-space: nowrap;
        width: auto !important;
        flex-shrink: 0;
    }

    .hero-content {
        margin-top: 130px !important;
        width: 100%;
        overflow-x: hidden;
    }

    /* --- MOBILE LITE / PERFORMANCE MODE --- */
    @media (max-width: 992px) {
        .vouch-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {

        /* Panel Header with Button */
        .vouch-container {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .panel-header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1000px;
        }

        .action-btn.small {
            padding: 8px 20px;
            font-size: 0.9rem;
            background: transparent;
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
        }

        .action-btn.small:hover {
            background: var(--accent-primary);
            color: black;
            box-shadow: 0 0 20px var(--accent-primary);
        }

        #matrixCanvas {
            display: none !important;
        }

        body {
            background: radial-gradient(circle at center, #1a0505 0%, #000 100%);
        }

        /* 2. Remove Expensive Filters (Blur) */
        .dock-nav,
        .music-player,
        .feat-box,
        .stats-strip,
        .modal-overlay,
        .view-panel {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            background: rgba(10, 5, 5, 0.95) !important;
            /* Higher opacity to compensate */
        }

        /* 3. Reduce Shadows & Glows */
        .logo-item,
        .dock-item,
        .feat-box,
        .card-3d,
        .action-btn {
            box-shadow: none !important;
            text-shadow: none !important;
            border: 1px solid #333 !important;
        }

        .mega-title {
            text-shadow: 2px 2px 0px var(--accent-primary) !important;
            /* Simple hard shadow */
            animation: none !important;
            /* Stop heavy text burning */
        }

        .logo-item::after {
            animation: none !important;
            /* Stop sheen animation */
            display: none;
        }

        /* 4. Flatten 3D Cards */
        .card-3d {
            transform-style: flat !important;
            background: #0a0000 !important;
        }

        .card-inner h2 {
            opacity: 0.1 !important;
            transform: none !important;
        }

        .card-3d:hover .card-inner i {
            transform: none !important;
        }

        /* 5. Simplified Scroll Reveal (Slide only, no rotate) */
        .reveal-on-scroll {
            transform: translateY(20px) !important;
            transition: opacity 0.5s ease-out, transform 0.5s ease-out !important;
        }

        .reveal-on-scroll.active {
            transform: translateY(0) !important;
        }

        /* 6. Fix Dock Layout for Taps */
        .dock-nav {
            bottom: 20px;
            padding: 8px 15px;
            width: 85%;
            justify-content: space-around;
        }

        .dock-item {
            margin: 0 !important;
        }
    }
}

/* USER PROFILE MODAL - DISCORD PREMIUM STYLE */
.profile-card {
    background: #111214;
    width: 95%;
    max-width: 440px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: modalSlide 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 1000;
}

/* Force remove any red styling from entire profile modal */
.profile-card *:not(.role-pill):not(.role-dot),
.profile-card *:not(.role-pill):not(.role-dot)::before,
.profile-card *:not(.role-pill):not(.role-dot)::after {
    border-color: transparent !important;
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    -webkit-text-decoration-color: transparent !important;
    border-bottom: none !important;
    border-top: none !important;
    box-shadow: none !important;
}

/* Remove backgrounds from text elements specifically */
.profile-body span:not(.role-pill):not(.role-dot),
.section-content,
.section-content *,
.section-title,
.profile-names *,
.member-dates,
.member-dates * {
    background-color: transparent !important;
    background-image: none !important;
}

/* Override any selection/highlight colors */
.profile-card *::selection,
.profile-card *::-moz-selection {
    background: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
}

.profile-banner {
    height: 120px;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
}

.profile-header {
    padding: 0 16px;
    position: relative;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-avatar-wrapper {
    position: absolute;
    top: -45px;
    left: 20px;
    padding: 6px;
    background: #111214;
    border-radius: 50%;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 4px solid #111214;
}

.status-icon.online {
    background: #23a55a;
}

.badge-list {
    display: flex;
    gap: 6px;
    background: transparent;
    padding: 4px 0;
    margin-top: 10px;
    flex-wrap: wrap;
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.badge-icon:hover {
    transform: scale(1.2);
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-body {
    padding: 16px;
    max-height: 500px;
    overflow-y: auto;
    background: #111214;
}

.profile-body::-webkit-scrollbar {
    width: 6px;
}

.profile-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.profile-names h2 {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0 2px 0;
    font-family: inherit;
}

.profile-names span {
    font-size: 0.85rem;
    color: #b5bac1;
}

.status-bubble {
    background: #1e1f22;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 0.85rem;
    color: #dbdee1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-actions {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.profile-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    font-size: 0.9rem;
}

.profile-btn.primary {
    background: #5865f2;
    color: #fff;
    flex-grow: 1;
}

.profile-btn.primary:hover {
    background: #4752c4;
}

.profile-btn.secondary {
    background: #4e5058;
    color: #fff;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn.secondary:hover {
    background: #6d6f78;
}

.profile-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: none;
}

.section-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #b5bac1;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-content {
    font-size: 0.88rem;
    color: #dbdee1;
    line-height: 1.5;
    word-wrap: break-word;
    text-decoration: none !important;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

.section-content,
.section-content * {
    -webkit-user-modify: read-only;
    user-select: none;
}

.section-content .link {
    color: #00a8fc;
    text-decoration: none;
}

/* --- PUBLIC STATS GRID --- */
#publicStatsArea {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px auto 60px auto;
    max-width: 1000px;
}

.stat-box {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(25, 25, 35, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

.stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    /* Increased from 1.2rem */
    font-weight: 800;
    color: white;
}

/* Colors */
.stat-box.green .stat-icon {
    color: #2ecc71;
}

.stat-box.green .stat-val {
    color: #2ecc71;
}

.stat-box.pink .stat-icon {
    color: #ff00ff;
}

.stat-box.pink .stat-val {
    color: #ff00ff;
}

.stat-box.blue .stat-icon {
    color: #3498db;
}

.stat-box.blue .stat-val {
    color: #3498db;
}

.stat-box.gold .stat-icon {
    color: #f1c40f;
}

.stat-box.gold .stat-val {
    color: #f1c40f;
}


/* --- TEAM SECTIONS LAYOUT --- */
.team-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.team-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-section-header {
    font-family: 'Metal Mania', cursive;
    font-size: 3rem;
    /* Increased from 1.2rem */
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.team-grid-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* SPECIAL LAYOUTS */
/* Founder: Huge */
.team-section.founder .team-card {
    width: 280px;
    height: 320px;
    border: 1px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.team-section.founder .card-avatar {
    width: 140px;
    height: 140px;
    border-color: #ffd700;
}

.team-section.founder h4 {
    font-size: 1.8rem;
    color: #ffd700;
}

/* Owners: Medium */
.team-section.owners .team-card {
    width: 220px;
    height: 260px;
    border-color: rgba(255, 215, 0, 0.3);
}

/* Base Team Card (Clean style from reference) */
.team-card {
    width: 180px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Start faint */
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--role-color, #fff);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.team-card:hover .card-avatar img {
    transform: scale(1.1);
}

.card-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 0.3s;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.card-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-info h4 {
    color: white;
    font-family: 'Metal Mania';
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.card-role {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

@media (max-width: 768px) {
    .team-grid-section {
        gap: 15px;
    }

    .team-card {
        width: 160px;
        padding: 15px;
    }

    .stat-box {
        width: 45%;
    }
}

.member-dates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #b5bac1;
    font-size: 0.8rem;
}

.roles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.role-pill {
    background: #2b2d31;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #dbdee1;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.role-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.role-pill i {
    font-size: 0.8rem;
    opacity: 0.5;
    cursor: pointer;
}

.role-pill i:hover {
    opacity: 1;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* LOGGED IN USER PROFILE (HEADER) */
.user-profile-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-primary);
    padding: 5px 20px 5px 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
}

.user-profile-widget:hover {
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.widget-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    object-fit: cover;
}

.widget-name {
    color: white;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* --- ADMIN PANEL INTEGRATION --- */
.admin-view {
    display: none;
    flex-direction: column;
    min-height: 100vh;
    padding: 100px 40px 40px;
    z-index: 10;
    position: relative;
    background: radial-gradient(circle at center, rgba(50, 0, 0, 0.2) 0%, transparent 70%);
}

.admin-view.active {
    display: flex;
}

.admin-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-sidebar-mini {
    background: rgba(20, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--accent-tertiary);
    border-radius: 20px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.admin-sidebar-mini .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.admin-sidebar-mini .nav-item:hover {
    background: rgba(255, 0, 0, 0.1);
    color: white;
}

.admin-sidebar-mini .nav-item.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.admin-content-area {
    min-width: 0;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: rgba(20, 0, 0, 0.4);
    border: 1px solid var(--accent-tertiary);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

.admin-stat-card .stat-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.admin-stat-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.admin-stat-card .stat-value {
    font-size: 2.5rem;
    font-family: var(--font-head);
    color: white;
    line-height: 1;
    margin-top: 5px;
}

.admin-controls-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-tertiary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.control-select,
.control-input {
    background: rgba(20, 0, 0, 0.6);
    border: 1px solid var(--accent-tertiary);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.admin-table-container {
    background: rgba(20, 0, 0, 0.4);
    border: 1px solid var(--accent-tertiary);
    border-radius: 15px;
    overflow: hidden;
}

.admin-table-header {
    display: grid;
    grid-template-columns: 100px 1fr 80px 120px 120px;
    padding: 15px 20px;
    background: rgba(255, 0, 0, 0.05);
    border-bottom: 1px solid var(--accent-tertiary);
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.admin-table-body {
    max-height: 500px;
    overflow-y: auto;
}

.vouch-row {
    display: grid;
    grid-template-columns: 100px 1fr 80px 120px 120px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.05);
    align-items: center;
    font-size: 0.9rem;
}

.vouch-row:hover {
    background: rgba(255, 0, 0, 0.02);
}

.admin-loading-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-void);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent-tertiary);
    border-top: 4px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.badge {
    background: var(--accent-tertiary);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: auto;
}

.page-header {
    margin-bottom: 25px;
}

.page-title h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--accent-primary);
    line-height: 1;
}

.page-title span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.flag-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
}

.flag-badge.legit {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.flag-badge.suspicious {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
}

.flag-badge.spam {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.action-btn.small {
    padding: 5px 15px;
    font-size: 0.8rem;
}

.action-btn.danger {
    background: var(--accent-tertiary);
}

.vouch-avatar {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.access-denied {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    text-align: center;
}

.access-denied i {
    font-size: 5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.access-denied h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--accent-primary);
}

.btn-massive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

/* FLOATING VOUCH BUTTON */
.floating-vouch-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulsateVouch 2s infinite;
}

@keyframes pulsateVouch {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.floating-vouch-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: white;
    color: var(--accent-primary);
}

/* X-VOUCH FORM REDESIGN */
.x-vouch-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.input-group-x {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group-x label {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-x input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group-x input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

/* MENTION AUTOCOMPLETE */
.mention-wrapper {
    position: relative;
    width: 100%;
}

.mention-autocomplete {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    /* Bit taller */
    overflow-y: auto;
    background: #0a0a0a;
    border: 1px solid var(--accent-primary);
    border-radius: 12px;
    margin-bottom: 8px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.1);
}

.mention-autocomplete.active {
    display: block;
    animation: dropSlideUp 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes dropSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.mention-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mention-item:last-child {
    border-bottom: none;
}

.mention-item:hover {
    background: rgba(255, 0, 0, 0.15);
    padding-left: 22px;
}

.mention-item img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--accent-primary);
}

.mention-item .mention-name {
    font-size: 0.95rem;
    color: white;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
}