/* =====================================================
   RANSOM W - ULTRA PREMIUM UIX v6.0
   Complete Redesign - Glassmorphism, Animations, Responsive
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #060610;
    --bg-secondary: #0c0c1a;
    --bg-card: rgba(16, 16, 36, 0.85);
    --bg-card-solid: #101024;
    --bg-card-hover: rgba(22, 22, 48, 0.9);
    --bg-input: rgba(8, 8, 20, 0.9);
    --bg-gradient: linear-gradient(145deg, #060610 0%, #0d0d1f 40%, #080816 100%);
    --bg-glass: rgba(16, 16, 36, 0.6);
    --border-color: rgba(230, 57, 70, 0.12);
    --border-hover: rgba(230, 57, 70, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --text-primary: #eaeaf4;
    --text-secondary: #a0a0c8;
    --text-muted: #5a5a80;
    --accent-primary: #e63946;
    --accent-secondary: #ff6b6b;
    --accent-tertiary: #ff4757;
    --accent-success: #10b981;
    --accent-danger: #ef4444;
    --accent-warning: #f59e0b;
    --accent-info: #06b6d4;
    --accent-vip: #fbbf24;
    --accent-admin: #ff2d2d;
    --accent-mod: #00ff88;
    --accent-scammer: #991b1b;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Orbitron', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(124, 111, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a { color: #c0c8e0; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-primary); text-shadow: 0 0 8px rgba(230, 57, 70, 0.3); }

img { max-width: 100%; height: auto; }

::selection { background: rgba(230, 57, 70, 0.3); color: #fff; }


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(230, 57, 70, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

/* ===== NAVBAR - Glassmorphism ===== */
.navbar {
    background: rgba(8, 8, 18, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(230, 57, 70, 0.08);
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.navbar-brand-premium {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(255, 107, 107, 0.05));
    border: 1.5px solid rgba(230, 57, 70, 0.35);
    border-radius: 12px;
    color: #e63946;
    transition: var(--transition);
    animation: nav-icon-pulse 4s ease-in-out infinite;
}

@keyframes nav-icon-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.1); }
    50% { box-shadow: 0 0 25px rgba(230, 57, 70, 0.3); border-color: rgba(230, 57, 70, 0.6); }
}

.navbar-brand-premium:hover .nav-logo-icon {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.25), rgba(255, 107, 107, 0.12));
    transform: rotate(8deg) scale(1.08);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #eaeaf4 !important;
    -webkit-text-fill-color: #eaeaf4 !important;
}

.nav-logo-w {
    color: #e63946 !important;
    -webkit-text-fill-color: #e63946 !important;
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
}

.navbar-brand-premium:hover .nav-logo-w {
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.8);
}


/* ===== NAVBAR MENU ===== */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.navbar-menu li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-menu li a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    text-shadow: none;
}

.navbar-menu li a.active {
    color: var(--accent-primary);
    background: rgba(230, 57, 70, 0.08);
}

.navbar-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.2);
    transition: var(--transition);
    object-fit: cover;
}
.nav-avatar:hover { border-color: var(--accent-primary); box-shadow: 0 0 16px rgba(230, 57, 70, 0.3); }

/* Navbar Toggle (Mobile) */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.navbar-toggle:hover { background: rgba(230, 57, 70, 0.08); }

/* Nav Contact Button */
.nav-contact-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem !important;
    background: rgba(230, 57, 70, 0.06) !important;
    border: 1px solid rgba(230, 57, 70, 0.2) !important;
    border-radius: var(--radius-sm) !important;
    color: #e63946 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    transition: var(--transition);
}
.nav-contact-btn:hover {
    background: rgba(230, 57, 70, 0.12) !important;
    border-color: rgba(230, 57, 70, 0.45) !important;
    transform: translateY(-1px);
    text-shadow: none !important;
}


/* ===== NAV SEARCH ===== */
.nav-search-form { display: flex; align-items: center; }
.nav-search-left { flex-shrink: 0; }
.nav-search-wrap { position: relative; display: flex; align-items: center; }
.nav-search-icon { position: absolute; left: 0.75rem; color: var(--text-muted); pointer-events: none; }
.nav-search-input {
    width: 220px;
    padding: 0.5rem 0.85rem 0.5rem 2.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}
.nav-search-input::placeholder { color: var(--text-muted); }
.nav-search-input:focus {
    width: 300px;
    border-color: rgba(230, 57, 70, 0.4);
    background: rgba(230, 57, 70, 0.03);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.06);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* ===== HERO LOGO ===== */
.hero-logo, .hero-logo-premium {
    text-align: center;
    padding: 2.5rem 1rem 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-glow-breathe 6s ease-in-out infinite;
}

@keyframes hero-glow-breathe {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.85); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.04));
    border: 1.5px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    color: #e63946;
    position: relative;
    z-index: 2;
    animation: hero-icon-float 5s ease-in-out infinite;
}

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

.hero-logo-text, .hero-logo-text-premium {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}


.logo-ransom {
    background: linear-gradient(135deg, #f0f0f8 0%, #b8b8d8 50%, #f0f0f8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-shimmer 6s ease infinite;
    position: relative;
    z-index: 2;
    filter: none !important;
}

.logo-w {
    background: linear-gradient(135deg, #e63946, #ff6b6b, #e63946);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-shimmer 4s ease infinite reverse, logo-w-spin 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

@keyframes logo-w-spin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(360deg); }
    100% { transform: rotateY(360deg); }
}

.logo-w::after {
    content: 'W';
    position: absolute;
    left: 0; top: 0;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(14px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes logo-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } }

.hero-logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 0.75rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-logo-line {
    width: 80px;
    height: 2px;
    margin: 0.85rem auto 0;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
    border-radius: 2px;
    position: relative;
    z-index: 2;
    animation: logo-line-slide 3s ease-in-out infinite;
}

@keyframes logo-line-slide {
    0% { transform: translateX(-30px); }
    50% { transform: translateX(30px); }
    100% { transform: translateX(-30px); }
}

/* ===== HERO BANNER ===== */
.hero-banner { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
.banner-content {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.04), rgba(16, 16, 36, 0.6), rgba(230, 57, 70, 0.04));
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius);
    padding: 0.7rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.banner-glow {
    position: absolute;
    top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.04), transparent);
    animation: banner-sweep 10s linear infinite;
}
@keyframes banner-sweep { 0% { transform: translateX(-50%); } 100% { transform: translateX(50%); } }
.banner-text { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; position: relative; z-index: 1; }

/* Image Banner */
.hero-image-banner { max-width: 1320px; margin: 1rem auto 0; padding: 0 1.5rem; }
.hero-image-banner-img {
    width: 100%; height: auto; max-height: 220px;
    object-fit: cover; border-radius: var(--radius-lg);
    border: 1px solid rgba(230, 57, 70, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}
.hero-image-banner-img:hover { border-color: rgba(230, 57, 70, 0.3); box-shadow: 0 8px 50px rgba(0, 0, 0, 0.5); }


/* ===== CARDS - Glassmorphism ===== */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), var(--shadow-glow);
    transform: translateY(-2px);
}
.card:hover::before { opacity: 1; }

.card-premium {
    border: 1px solid rgba(230, 57, 70, 0.1);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(16, 16, 36, 0.95) 100%);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(230, 57, 70, 0.08);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Icon Wraps */
.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-right: 0.25rem;
}
.icon-categories { background: rgba(230, 57, 70, 0.1); color: #e63946; border: 1px solid rgba(230, 57, 70, 0.2); }
.icon-fire { background: rgba(255, 107, 107, 0.1); color: #ff6b6b; border: 1px solid rgba(255, 107, 107, 0.2); }
.icon-stats { background: rgba(230, 57, 70, 0.1); color: #e63946; border: 1px solid rgba(230, 57, 70, 0.2); }
.icon-online { background: rgba(16, 185, 129, 0.12); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.25); }


/* ===== BUTTONS - Premium ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.5s ease;
}
.btn:hover::after { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    box-shadow: 0 4px 18px rgba(230, 57, 70, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45); color: #fff; text-shadow: none; }

.btn-danger { background: linear-gradient(135deg, #dc2626, #ef4444); color: #fff; }
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 4px 18px rgba(239, 68, 68, 0.4); color: #fff; text-shadow: none; }

.btn-success { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4); color: #fff; text-shadow: none; }

.btn-warning { background: linear-gradient(135deg, #d97706, #f59e0b); color: #000; }
.btn-warning:hover { transform: translateY(-2px); color: #000; text-shadow: none; }

.btn-vip { background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706); color: #000; font-weight: 700; }
.btn-vip:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4); color: #000; text-shadow: none; }

.btn-ghost {
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: #e63946;
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
}
.btn-ghost:hover { background: rgba(230, 57, 70, 0.12); border-color: rgba(230, 57, 70, 0.4); color: #ff6b6b; text-shadow: none; }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.78rem; border-radius: var(--radius-sm); }

/* ===== FORMS - Premium ===== */
.form-group { margin-bottom: 1.35rem; }

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-primary);
    backdrop-filter: blur(4px);
}
.form-control:focus {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08), 0 0 20px rgba(230, 57, 70, 0.05);
}
.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { min-height: 130px; resize: vertical; line-height: 1.7; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239898bb' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}


/* ===== ALERTS ===== */
.alert {
    padding: 0.9rem 1.3rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(8px);
}
.alert-success { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.25); color: var(--accent-success); }
.alert-error { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.25); color: var(--accent-danger); }
.alert-warning { background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.25); color: var(--accent-warning); }

/* ===== FORUM TABLE ===== */
.forum-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.forum-table th {
    background: rgba(10, 10, 22, 0.8);
    padding: 0.9rem 1.25rem;
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}
.forum-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(230, 57, 70, 0.05);
    vertical-align: middle;
    transition: var(--transition);
}
.forum-table tr:hover td { background: rgba(230, 57, 70, 0.02); }
.forum-table tr:last-child td { border-bottom: none; }

.thread-title { font-weight: 600; font-size: 0.95rem; display: block; color: var(--text-primary); transition: var(--transition); }
.thread-title:hover { color: #e63946; text-shadow: 0 0 12px rgba(230, 57, 70, 0.2); }
.thread-meta { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.2rem; display: block; }

/* Thread Status */
.thread-status { display: inline-flex; align-items: center; gap: 0.3rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-success); animation: dot-pulse 2s infinite; }
.status-dot.hot { background: var(--accent-danger); }
.status-dot.pinned { background: var(--accent-warning); }
@keyframes dot-pulse { 0%, 100% { opacity: 0.6; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }

/* Count Pill */
.count-pill {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 30px; height: 26px; padding: 0 0.6rem;
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: 14px;
    font-size: 0.75rem; font-weight: 700; color: var(--text-secondary);
}

/* Category Icon */
.category-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(230, 57, 70, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-right: 0.85rem; flex-shrink: 0;
}


/* ===== ROLE BADGES - Premium Animated ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.65rem;
    border-radius: 5px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    gap: 0.3rem;
    white-space: nowrap;
}

.badge-admin {
    background: rgba(255, 45, 45, 0.12);
    color: var(--accent-admin);
    border: 1px solid rgba(255, 45, 45, 0.35);
    box-shadow: 0 0 8px rgba(255, 45, 45, 0.1);
    animation: badge-admin-glow 3s ease-in-out infinite;
}
@keyframes badge-admin-glow {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 45, 45, 0.1); }
    50% { box-shadow: 0 0 14px rgba(255, 45, 45, 0.25); }
}

.badge-moderator, .badge-mod {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-mod);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-vip {
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-vip);
    border: 1px solid rgba(251, 191, 36, 0.35);
    text-shadow: 0 0 6px rgba(251, 191, 36, 0.3);
    animation: badge-vip-shine 4s ease-in-out infinite;
}
@keyframes badge-vip-shine {
    0%, 100% { box-shadow: 0 0 4px rgba(251, 191, 36, 0.1); }
    50% { box-shadow: 0 0 12px rgba(251, 191, 36, 0.2); }
}

.badge-member { background: rgba(160, 160, 200, 0.10); color: #b0b8d8; border: 1px solid rgba(160, 160, 200, 0.25); }
.badge-scammer { background: rgba(153, 27, 27, 0.15); color: #f87171; border: 1px solid rgba(153, 27, 27, 0.4); }
.badge-guest { background: rgba(90, 90, 128, 0.08); color: var(--text-muted); border: 1px solid rgba(90, 90, 128, 0.2); }

/* Username Colors */
.username-admin {
    color: #FF2D2D !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 45, 45, 0.7), 0 0 20px rgba(255, 45, 45, 0.4);
    animation: admin-glow 2.5s ease-in-out infinite alternate;
}
@keyframes admin-glow {
    0% { text-shadow: 0 0 8px rgba(255, 45, 45, 0.6), 0 0 16px rgba(255, 45, 45, 0.3); }
    100% { text-shadow: 0 0 14px rgba(255, 45, 45, 0.9), 0 0 28px rgba(255, 45, 45, 0.5); }
}

.username-vip {
    color: #FFD700 !important;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 16px rgba(255, 215, 0, 0.25);
    animation: vip-glow 3s ease-in-out infinite alternate;
}
@keyframes vip-glow {
    0% { text-shadow: 0 0 6px rgba(255, 215, 0, 0.4), 0 0 12px rgba(255, 215, 0, 0.2); }
    100% { text-shadow: 0 0 12px rgba(255, 215, 0, 0.7), 0 0 24px rgba(255, 215, 0, 0.35); }
}

.username-moderator { color: #00FF88 !important; font-weight: 800; text-shadow: 0 0 8px rgba(0, 255, 136, 0.4); }
.username-scammer { text-decoration: line-through; color: var(--accent-scammer) !important; font-weight: 700; opacity: 0.8; }

/* ===== POSTBIT - Forum Post User Info ===== */
.postbit {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
}
.postbit:hover { border-color: rgba(230, 57, 70, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }

.postbit-user {
    min-width: 180px;
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.postbit-avatar {
    width: 82px; height: 82px;
    border-radius: 50%;
    border: 3px solid rgba(230, 57, 70, 0.15);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    object-fit: cover;
}
.postbit:hover .postbit-avatar { border-color: rgba(230, 57, 70, 0.4); box-shadow: 0 0 16px rgba(230, 57, 70, 0.15); }

.postbit-username { font-weight: 700; font-size: 1rem; display: block; margin-bottom: 0.25rem; }
.postbit-stats { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.9; }
.postbit-content { flex: 1; font-size: 0.9rem; line-height: 1.8; min-width: 0; }
.postbit-header-actions { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.admin-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* Post Badge in comments - visible! */
.postbit-user .badge {
    margin-top: 0.3rem;
}


/* ===== SHOUTBOX ===== */
.shoutbox {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.shoutbox-header {
    background: linear-gradient(135deg, #e63946, #ff4757);
    padding: 0.7rem 1.25rem;
    font-weight: 700; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 1.5px; color: #fff;
}
.shoutbox-messages {
    height: 200px; overflow-y: auto; padding: 0.85rem 1rem;
    display: flex; flex-direction: column; gap: 0.35rem;
    font-size: 0.84rem; background: rgba(6, 6, 16, 0.7);
}
.shoutbox-msg { padding: 0.35rem 0.6rem; border-radius: var(--radius-sm); transition: var(--transition); }
.shoutbox-msg:hover { background: rgba(230, 57, 70, 0.04); }
.shoutbox-msg .username { font-weight: 700; margin-right: 0.5rem; }
.shoutbox-input { display: flex; border-top: 1px solid var(--border-color); }
.shoutbox-input input {
    flex: 1; padding: 0.85rem 1.1rem;
    background: var(--bg-input); border: none;
    color: var(--text-primary); font-size: 0.88rem; outline: none; font-family: var(--font-primary);
}
.shoutbox-input input::placeholder { color: var(--text-muted); }
.shoutbox-input button {
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #e63946, #ff4757);
    border: none; color: #fff; cursor: pointer;
    font-weight: 700; font-size: 0.82rem; transition: var(--transition); font-family: var(--font-primary);
}
.shoutbox-input button:hover { background: #ff6b6b; }

/* ===== AI CHATBOT - Premium ===== */
.ai-chat-premium {
    background: var(--bg-card);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(230, 57, 70, 0.08);
}
.ai-chat-header-premium {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(16, 16, 36, 0.9));
    border-bottom: 1px solid rgba(230, 57, 70, 0.1);
    padding: 0.9rem 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.ai-header-icon {
    width: 38px; height: 38px;
    background: rgba(230, 57, 70, 0.12); border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #e63946;
}
.ai-header-text { display: flex; flex-direction: column; }
.ai-header-title { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.ai-header-status { font-size: 0.7rem; color: var(--accent-success); display: flex; align-items: center; gap: 0.3rem; }
.ai-status-dot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; animation: dot-pulse 2s infinite; }

.ai-chat-premium .ai-chat-messages {
    height: 300px; overflow-y: auto; padding: 1.25rem;
    display: flex; flex-direction: column; gap: 0.9rem;
    background: rgba(6, 6, 16, 0.7);
}
.ai-chat-premium .ai-msg { padding: 0.9rem 1.2rem; border-radius: var(--radius); max-width: 85%; font-size: 0.85rem; line-height: 1.65; }
.ai-chat-premium .ai-msg-user {
    background: linear-gradient(135deg, #e63946, #ff4757);
    color: #fff; align-self: flex-end;
    border-bottom-right-radius: 4px; box-shadow: 0 2px 12px rgba(230, 57, 70, 0.25);
}
.ai-chat-premium .ai-msg-bot {
    background: rgba(24, 24, 52, 0.9);
    border: 1px solid rgba(230, 57, 70, 0.1);
    color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px;
}
.ai-chat-input-premium { display: flex; border-top: 1px solid rgba(230, 57, 70, 0.1); background: rgba(8, 8, 20, 0.8); }
.ai-chat-input-premium input {
    flex: 1; padding: 0.9rem 1.25rem; background: transparent;
    border: none; color: var(--text-primary); outline: none;
    font-family: var(--font-primary); font-size: 0.88rem;
}
.ai-chat-input-premium input::placeholder { color: var(--text-muted); }
.ai-send-btn {
    padding: 0.9rem 1.25rem; background: transparent; border: none;
    color: #e63946; cursor: pointer; transition: var(--transition); display: flex; align-items: center;
}
.ai-send-btn:hover { color: #ff6b6b; transform: scale(1.1); }
.ai-typing span { animation: typing-dots 1.4s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dots { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* AI Disabled/VIP Notice */
.ai-disabled-notice, .ai-vip-notice {
    text-align: center;
    padding: 2.5rem 1.5rem;
    color: var(--accent-vip);
    font-weight: 700;
    font-size: 0.95rem;
}
.ai-vip-notice {
    background: rgba(251, 191, 36, 0.04);
    border: 1px dashed rgba(251, 191, 36, 0.25);
    border-radius: var(--radius);
    margin: 1rem;
}


/* ===== FORUM LAYOUT (2 Column) ===== */
.forum-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}
.forum-main { min-width: 0; }
.forum-sidebar { position: sticky; top: 80px; }

/* Sidebar Card */
.sidebar-card { padding: 1.1rem; }
.sidebar-card .card-header { margin-bottom: 0.85rem; padding-bottom: 0.65rem; }
.sidebar-card .card-title { font-size: 0.88rem; }

/* ===== LATEST POSTS - Sidebar ===== */
.latest-posts-list { display: flex; flex-direction: column; gap: 0.65rem; }
.latest-post-item {
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid rgba(230, 57, 70, 0.1);
    transition: var(--transition);
}
.latest-post-item:hover {
    background: rgba(230, 57, 70, 0.04);
    border-left-color: #e63946;
    transform: translateX(3px);
}
.latest-post-title {
    font-size: 0.78rem; font-weight: 600; color: var(--text-primary);
    display: block; line-height: 1.4; transition: var(--transition);
}
.latest-post-title:hover { color: #e63946; }
.latest-post-meta { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Read More Button - WORKING */
.sidebar-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.55rem 1rem;
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-sm);
    color: #e63946;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.sidebar-read-more:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.35);
    color: #ff6b6b;
    transform: translateY(-1px);
    text-shadow: none;
}

/* ===== LATEST REPLIES SECTION ===== */
.latest-replies-list { display: flex; flex-direction: column; gap: 0.65rem; }
.latest-reply-item {
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid rgba(16, 185, 129, 0.15);
    transition: var(--transition);
}
.latest-reply-item:hover {
    background: rgba(16, 185, 129, 0.04);
    border-left-color: #10b981;
    transform: translateX(3px);
}
.latest-reply-title {
    font-size: 0.78rem; font-weight: 600; color: var(--text-primary);
    display: block; line-height: 1.4; transition: var(--transition);
}
.latest-reply-title:hover { color: #10b981; }
.latest-reply-meta { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Mobile Latest Posts */
.mobile-latest-posts { display: none; }
.mobile-latest-replies { display: none; }


/* ===== ONLINE USERS ===== */
.online-users { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.85rem; }
.online-user { font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); transition: var(--transition); }
.online-user:hover { background: rgba(230, 57, 70, 0.06); }
.online-users-compact { gap: 0.2rem 0.35rem; padding: 0.5rem; }
.online-users-compact .online-user { font-size: 0.68rem; font-weight: 600; padding: 0.12rem 0.3rem; }

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.stat-item {
    text-align: center;
    padding: 1.1rem 0.75rem;
    background: rgba(230, 57, 70, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(230, 57, 70, 0.08);
    transition: var(--transition);
}
.stat-item:hover { border-color: rgba(230, 57, 70, 0.2); background: rgba(230, 57, 70, 0.05); transform: translateY(-2px); }
.stat-value { font-size: 1.6rem; font-weight: 900; color: var(--text-primary); }
.stat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-top: 0.25rem; }

/* ===== HIDDEN CONTENT ===== */
.hidden-content-notice {
    background: rgba(239, 68, 68, 0.06);
    border: 1px dashed rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--accent-danger);
    font-weight: 600;
    margin: 1.25rem 0;
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: break-word;
}
.vip-content-notice {
    background: rgba(251, 191, 36, 0.05);
    border: 1px dashed rgba(251, 191, 36, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--accent-vip);
    font-weight: 600;
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

/* ===== VIP PLAN CARDS ===== */
.vip-page { max-width: 920px; margin: 0 auto; }
.vip-hero { text-align: center; padding: 2.5rem 1rem 1.5rem; }
.vip-hero-icon {
    width: 76px; height: 76px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 107, 0.06));
    border: 2px solid rgba(230, 57, 70, 0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #e63946;
    animation: vip-icon-pulse 3s ease-in-out infinite;
}
@keyframes vip-icon-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(230, 57, 70, 0.15); }
    50% { box-shadow: 0 0 35px rgba(230, 57, 70, 0.35); border-color: rgba(230, 57, 70, 0.6); }
}
.vip-hero-title { font-size: 2.2rem; font-weight: 900; background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.vip-hero-subtitle { color: var(--text-secondary); font-size: 0.95rem; }
.vip-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; margin: 1.5rem 0 2.5rem; padding: 0 1rem; }
.vip-feature-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition); }
.vip-feature-item:hover { border-color: rgba(230, 57, 70, 0.25); }
.vip-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.vip-plan-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.vip-plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #e63946, #fbbf24); opacity: 0; transition: var(--transition); }
.vip-plan-card:hover { border-color: rgba(251, 191, 36, 0.35); transform: translateY(-6px); box-shadow: 0 16px 50px rgba(230, 57, 70, 0.08); }
.vip-plan-card:hover::before { opacity: 1; }
.vip-plan-featured { border-color: rgba(251, 191, 36, 0.25); }
.vip-plan-featured::before { opacity: 1; }
.vip-plan-badge { position: absolute; top: 12px; right: -30px; background: linear-gradient(135deg, #e63946, #fbbf24); color: #fff; font-size: 0.58rem; font-weight: 800; padding: 0.25rem 2rem; transform: rotate(45deg); letter-spacing: 1px; }
.vip-plan-duration { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.vip-plan-price { font-size: 3rem; font-weight: 900; color: #fbbf24; text-shadow: 0 0 20px rgba(251, 191, 36, 0.25); line-height: 1; margin-bottom: 0.25rem; }
.vip-plan-currency { font-size: 1.4rem; vertical-align: super; }
.vip-plan-perday { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.vip-plan-features { list-style: none; margin-bottom: 1.5rem; text-align: left; }
.vip-plan-features li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.82rem; color: var(--text-secondary); }
.vip-plan-features li svg { color: #10b981; flex-shrink: 0; }
.btn-vip-purchase { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.85rem 1.5rem; background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706); border: none; border-radius: var(--radius); color: #000; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: var(--transition); font-family: var(--font-primary); }
.btn-vip-purchase:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(251, 191, 36, 0.35); }


/* ===== AUTH FORMS - Premium Glassmorphism ===== */
.auth-container {
    max-width: 460px;
    margin: 3rem auto;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease;
}

.auth-card {
    background: rgba(16, 16, 36, 0.75);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(230, 57, 70, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.75rem 2.25rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(230, 57, 70, 0.05);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e63946, #ff6b6b, #e63946, transparent);
    animation: auth-border-flow 4s linear infinite;
}

@keyframes auth-border-flow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.auth-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(230, 57, 70, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.auth-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.auth-card .form-control {
    background: rgba(6, 6, 16, 0.7);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: var(--radius);
    padding: 0.9rem 1.15rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.auth-card .form-control:focus {
    border-color: rgba(230, 57, 70, 0.45);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.06), 0 0 24px rgba(230, 57, 70, 0.06);
    background: rgba(6, 6, 16, 0.9);
}

.auth-btn-full {
    width: 100%;
    padding: 0.95rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border-radius: var(--radius);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.auth-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}
.auth-footer-text a { color: #e63946; font-weight: 600; }
.auth-footer-text a:hover { color: #ff6b6b; }

.cf-turnstile {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
    min-height: 65px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===== MESSAGING SYSTEM ===== */
.messages-container { max-width: 920px; margin: 0 auto; }
.messages-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; }
.messages-header h1 { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 0.6rem; }
.messages-header .icon-wrap { width: 38px; height: 38px; background: rgba(230, 57, 70, 0.1); border: 1px solid rgba(230, 57, 70, 0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #e63946; }

.conversations-list { display: flex; flex-direction: column; gap: 0.5rem; }
.conversation-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); transition: var(--transition); text-decoration: none; }
.conversation-item:hover { border-color: rgba(230, 57, 70, 0.2); background: var(--bg-card-hover); transform: translateX(4px); text-shadow: none; color: inherit; }
.conversation-item.unread { border-left: 3px solid #e63946; background: rgba(230, 57, 70, 0.02); }
.conv-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 107, 0.06)); border: 2px solid rgba(230, 57, 70, 0.2); display: flex; align-items: center; justify-content: center; color: #e63946; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.conv-info { flex: 1; min-width: 0; }
.conv-username { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); display: block; }
.conv-preview { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 0.15rem; }
.conv-meta { text-align: right; flex-shrink: 0; }
.conv-time { font-size: 0.68rem; color: var(--text-muted); }
.conv-badge-waiting { display: inline-block; margin-top: 0.25rem; padding: 0.15rem 0.5rem; background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.25); border-radius: 10px; font-size: 0.6rem; font-weight: 700; color: #f59e0b; text-transform: uppercase; letter-spacing: 0.5px; }
.conv-badge-blocked { display: inline-block; margin-top: 0.25rem; padding: 0.15rem 0.5rem; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25); border-radius: 10px; font-size: 0.6rem; font-weight: 700; color: #ef4444; text-transform: uppercase; }

/* Chat View */
.chat-container { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; height: 620px; max-height: 75vh; }
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; background: rgba(10, 10, 22, 0.95); border-bottom: 1px solid var(--border-color); backdrop-filter: blur(8px); }
.chat-header-user { display: flex; align-items: center; gap: 0.75rem; }
.chat-header-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 107, 0.06)); border: 2px solid rgba(230, 57, 70, 0.25); display: flex; align-items: center; justify-content: center; color: #e63946; font-weight: 800; font-size: 0.95rem; }
.chat-header-info { display: flex; flex-direction: column; }
.chat-header-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.chat-header-status { font-size: 0.68rem; color: var(--text-muted); }
.chat-header-actions { display: flex; gap: 0.5rem; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: rgba(6, 6, 16, 0.5); }
.chat-msg { display: flex; flex-direction: column; max-width: 75%; }
.chat-msg-sent { align-self: flex-end; }
.chat-msg-received { align-self: flex-start; }
.chat-msg-bubble { padding: 0.8rem 1.15rem; border-radius: var(--radius); font-size: 0.88rem; line-height: 1.65; word-wrap: break-word; }
.chat-msg-sent .chat-msg-bubble { background: linear-gradient(135deg, #e63946, #ff4757); color: #fff; border-bottom-right-radius: 4px; box-shadow: 0 2px 10px rgba(230, 57, 70, 0.2); }
.chat-msg-received .chat-msg-bubble { background: rgba(24, 24, 52, 0.9); border: 1px solid rgba(230, 57, 70, 0.08); color: var(--text-primary); border-bottom-left-radius: 4px; }
.chat-msg-time { font-size: 0.64rem; color: var(--text-muted); margin-top: 0.25rem; padding: 0 0.25rem; }
.chat-msg-sent .chat-msg-time { text-align: right; }
.chat-msg-waiting { text-align: center; padding: 0.8rem; background: rgba(245, 158, 11, 0.04); border: 1px dashed rgba(245, 158, 11, 0.2); border-radius: var(--radius); color: #f59e0b; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.chat-input-area { padding: 1rem 1.5rem; border-top: 1px solid var(--border-color); background: rgba(10, 10, 22, 0.8); }
.chat-input-form { display: flex; gap: 0.75rem; align-items: flex-end; }
.chat-input-field { flex: 1; padding: 0.8rem 1.1rem; background: var(--bg-input); border: 1px solid var(--border-color); border-radius: var(--radius); color: var(--text-primary); font-size: 0.88rem; font-family: var(--font-primary); outline: none; resize: none; min-height: 42px; max-height: 120px; transition: var(--transition); }
.chat-input-field:focus { border-color: rgba(230, 57, 70, 0.4); box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.06); }
.chat-send-btn { padding: 0.75rem 1.3rem; background: linear-gradient(135deg, #e63946, #ff4757); border: none; border-radius: var(--radius); color: #fff; cursor: pointer; font-weight: 700; font-size: 0.85rem; transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.chat-send-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35); }
.chat-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.chat-disabled-notice { text-align: center; padding: 1rem; color: var(--text-muted); font-size: 0.82rem; font-style: italic; }
.chat-blocked-notice { text-align: center; padding: 1rem; color: var(--accent-danger); font-size: 0.82rem; font-weight: 600; }
.support-new-msg-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.support-new-msg-form input { flex: 1; min-width: 200px; padding: 0.7rem 1.1rem; background: var(--bg-input); border: 1px solid var(--border-color); border-radius: var(--radius); color: var(--text-primary); font-size: 0.88rem; outline: none; transition: var(--transition); font-family: var(--font-primary); }
.support-new-msg-form input:focus { border-color: rgba(230, 57, 70, 0.4); }


/* ===== MARKETPLACE ===== */
.marketplace-hero { text-align: center; padding: 1.5rem 1rem 1rem; }
.marketplace-hero-icon { width: 68px; height: 68px; margin: 0 auto 1rem; background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 107, 0.05)); border: 1.5px solid rgba(230, 57, 70, 0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #e63946; animation: vip-icon-pulse 3s ease-in-out infinite; }
.marketplace-hero-title { font-size: 1.8rem; font-weight: 900; color: var(--text-primary); margin-bottom: 0.35rem; }
.marketplace-hero-subtitle { font-size: 0.88rem; color: var(--text-muted); }
.marketplace-stats-bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 0.85rem 1.25rem; margin-bottom: 1.5rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); flex-wrap: wrap; }
.mp-stat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.mp-stat svg { color: #e63946; opacity: 0.8; }
.marketplace-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.mp-product-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 0; overflow: hidden; transition: var(--transition); position: relative; display: flex; flex-direction: column; }
.mp-product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #e63946, transparent); opacity: 0; transition: var(--transition); }
.mp-product-card:hover { border-color: rgba(230, 57, 70, 0.2); box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35); transform: translateY(-3px); }
.mp-product-card:hover::before { opacity: 1; }
.mp-product-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem 0.5rem; }
.mp-product-category { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.mp-product-category svg { color: #e63946; opacity: 0.7; }
.mp-product-downloads { display: flex; align-items: center; gap: 0.25rem; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); background: rgba(230, 57, 70, 0.05); padding: 0.2rem 0.5rem; border-radius: 10px; border: 1px solid rgba(230, 57, 70, 0.1); }
.mp-product-body { padding: 0.5rem 1.25rem 1rem; flex: 1; }
.mp-product-title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mp-product-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mp-product-footer { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.25rem; border-top: 1px solid rgba(230, 57, 70, 0.05); background: rgba(6, 6, 16, 0.3); }
.mp-product-price-area { display: flex; align-items: baseline; gap: 0.3rem; }
.mp-product-price { font-size: 1.4rem; font-weight: 900; color: #10b981; }
.mp-product-currency { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.mp-product-seller { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: var(--text-muted); }
.mp-product-action { padding: 0.85rem 1.25rem 1.15rem; }
.btn-mp-purchase { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.8rem 1.25rem; background: linear-gradient(135deg, #e63946, #ff4757); border: none; border-radius: var(--radius); color: #fff; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: var(--transition); font-family: var(--font-primary); }
.btn-mp-purchase:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(230, 57, 70, 0.3); }
.btn-mp-login { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.7rem 1.25rem; background: rgba(230, 57, 70, 0.05); border: 1px solid rgba(230, 57, 70, 0.15); border-radius: var(--radius); color: var(--text-secondary); font-weight: 600; font-size: 0.82rem; transition: var(--transition); text-decoration: none; }
.btn-mp-login:hover { background: rgba(230, 57, 70, 0.1); border-color: rgba(230, 57, 70, 0.3); color: #e63946; text-shadow: none; }
.marketplace-empty { text-align: center; padding: 4rem 2rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); }
.marketplace-empty-icon { width: 80px; height: 80px; margin: 0 auto 1.25rem; background: rgba(230, 57, 70, 0.04); border: 1px dashed rgba(230, 57, 70, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.marketplace-empty-title { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.marketplace-empty-text { font-size: 0.88rem; color: var(--text-muted); max-width: 350px; margin: 0 auto; }


/* ===== PROFILE ===== */
.profile-edit-container { max-width: 700px; margin: 0 auto; }
.profile-edit-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.profile-edit-header h1 { font-size: 1.5rem; font-weight: 800; }
.profile-edit-header .icon-wrap { width: 38px; height: 38px; background: rgba(230, 57, 70, 0.1); border: 1px solid rgba(230, 57, 70, 0.25); border-radius: 10px; color: #e63946; }
.profile-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.25rem; position: relative; overflow: hidden; }
.profile-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.35), transparent); }
.profile-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 0.5rem; }
.avatar-upload-area { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.avatar-preview { width: 82px; height: 82px; border-radius: 50%; border: 3px solid var(--border-color); object-fit: cover; background: var(--bg-input); flex-shrink: 0; }
.avatar-upload-btn { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.2rem; background: rgba(230, 57, 70, 0.06); border: 1px solid rgba(230, 57, 70, 0.2); border-radius: var(--radius); color: #e63946; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-primary); }
.avatar-upload-btn:hover { background: rgba(230, 57, 70, 0.12); border-color: rgba(230, 57, 70, 0.35); }
.avatar-upload-btn input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.avatar-upload-hint { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.4rem; }
.twofa-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem 2rem; position: relative; overflow: hidden; }
.twofa-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent); }
.twofa-status-active { display: flex; align-items: center; gap: 0.5rem; color: var(--accent-success); font-weight: 600; }

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector-wrap { position: relative; }
.lang-selector { display: flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.6rem; background: rgba(230, 57, 70, 0.05); border: 1px solid rgba(230, 57, 70, 0.15); border-radius: var(--radius-sm); cursor: pointer; font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); transition: var(--transition); user-select: none; }
.lang-selector:hover { border-color: rgba(230, 57, 70, 0.35); color: var(--text-primary); }
.lang-current { letter-spacing: 0.5px; }
.lang-dropdown { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-sm); box-shadow: 0 8px 30px rgba(0,0,0,0.5); min-width: 52px; z-index: 1000; overflow: hidden; }
.lang-selector.open .lang-dropdown { display: block; }
.lang-option { display: block; padding: 0.4rem 0.7rem; font-size: 0.72rem; font-weight: 600; color: var(--text-secondary) !important; text-align: center; transition: var(--transition); letter-spacing: 0.5px; }
.lang-option:hover { background: rgba(230, 57, 70, 0.06); color: var(--text-primary) !important; text-shadow: none; }
.lang-option.active { background: rgba(230, 57, 70, 0.1); color: #e63946 !important; }

/* ===== SEARCH RESULTS ===== */
.search-results-list { display: flex; flex-direction: column; gap: 0.5rem; }
.search-result-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); transition: var(--transition); text-decoration: none; color: inherit; }
.search-result-item:hover { border-color: rgba(230, 57, 70, 0.2); background: var(--bg-card-hover); transform: translateX(4px); text-shadow: none; color: inherit; }
.search-result-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(230, 57, 70, 0.06); border: 1px solid rgba(230, 57, 70, 0.12); display: flex; align-items: center; justify-content: center; color: #e63946; flex-shrink: 0; }
.search-result-content { flex: 1; min-width: 0; }
.search-result-title { font-weight: 700; font-size: 0.92rem; color: var(--text-primary); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: var(--transition); }
.search-result-item:hover .search-result-title { color: #e63946; }
.search-result-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; flex-wrap: wrap; }
.search-result-arrow { color: var(--text-muted); flex-shrink: 0; transition: var(--transition); }
.search-result-item:hover .search-result-arrow { color: #e63946; transform: translateX(3px); }

/* ===== MAGNET LINK ===== */
.magnet-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.1rem; background: rgba(6, 182, 212, 0.06); border: 1px solid rgba(6, 182, 212, 0.2); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.73rem; color: var(--accent-info); word-break: break-all; transition: var(--transition); }
.magnet-link:hover { background: rgba(6, 182, 212, 0.12); border-color: var(--accent-info); text-shadow: none; color: var(--accent-info); }


/* ===== FOOTER ===== */
.forum-footer {
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.78rem;
}
.forum-footer a { color: var(--text-secondary); }
.forum-footer a:hover { color: var(--accent-primary); }
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.footer-brand span { color: #e63946 !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes glow-pulse { 0%, 100% { box-shadow: 0 0 5px rgba(230, 57, 70, 0.15); } 50% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.35); } }
.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 968px) {
    .forum-layout { grid-template-columns: 1fr; }
    .forum-sidebar { display: none; }
    .mobile-latest-posts { display: block; }
    .mobile-latest-replies { display: block; }
    .hero-logo-text, .hero-logo-text-premium { font-size: 3.2rem; letter-spacing: 5px; }
    .hero-logo-icon-wrap { width: 58px; height: 58px; }
    .hero-image-banner-img { max-height: 160px; }
    .nav-search-input { width: 140px; }
    .nav-search-input:focus { width: 180px; }
    .container { padding: 1.5rem 1rem; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .navbar { padding: 0.6rem 1rem; position: sticky; top: 0; z-index: 1000; }
    .navbar-toggle { display: block; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10, 10, 22, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1rem;
        gap: 0.4rem;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .navbar-menu.active { display: flex; }
    .navbar-menu li { width: 100%; }
    .navbar-menu li a { display: block; padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.92rem; }
    .navbar-menu li a:hover { background: rgba(230, 57, 70, 0.05); }
    .nav-user { width: 100%; }
    .nav-search-form { display: flex !important; flex: 1; }
    .nav-search-wrap { flex: 1; }
    .nav-search-input { width: 100% !important; max-width: 200px; font-size: 0.78rem; padding: 0.45rem 0.75rem 0.45rem 2rem; }
    .nav-search-input:focus { max-width: 220px; }

    .container { padding: 1rem 0.75rem; }
    .postbit { flex-direction: column; }
    .postbit-user { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; padding-right: 0; min-width: auto; flex-direction: row; justify-content: center; gap: 1rem; }
    .postbit-avatar { width: 52px; height: 52px; }
    .postbit-stats { display: none; }
    .postbit-header-actions { flex-direction: column; gap: 0.5rem; }
    .forum-table { font-size: 0.78rem; }
    .forum-table th, .forum-table td { padding: 0.55rem 0.65rem; }
    .forum-table th:nth-child(n+3), .forum-table td:nth-child(n+3) { display: none; }
    .ai-chat-premium .ai-chat-messages { height: 220px; }
    .shoutbox-messages { height: 130px; }
    .card { padding: 1.1rem; border-radius: var(--radius); }
    .shoutbox { border-radius: var(--radius); }
    .ai-chat-premium { border-radius: var(--radius); }
    .btn { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
    .btn-sm { padding: 0.3rem 0.65rem; font-size: 0.72rem; }
    .messages-header { flex-direction: column; align-items: flex-start; }
    .chat-container { height: 520px; border-radius: var(--radius); }
    .chat-msg { max-width: 88%; }
    .chat-header { padding: 0.8rem 1rem; }
    .chat-messages { padding: 1rem; }
    .chat-input-area { padding: 0.8rem 1rem; }
    .conversation-item { padding: 0.8rem 1rem; }
    .support-new-msg-form { flex-direction: column; }
    .marketplace-hero-title { font-size: 1.4rem; }
    .marketplace-grid { grid-template-columns: 1fr; }
    .auth-container { margin: 2rem auto; }
    .auth-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
}

/* ===== RESPONSIVE - SMALL PHONE ===== */
@media (max-width: 480px) {
    .nav-search-input { max-width: 140px !important; font-size: 0.75rem; padding: 0.4rem 0.7rem 0.4rem 1.8rem; }
    .nav-search-input:focus { max-width: 160px !important; }
    .nav-search-icon { left: 0.55rem; }
    .container { padding: 0.7rem 0.5rem; }
    .card { margin-bottom: 0.8rem; padding: 0.9rem; }
    .postbit { padding: 0.9rem; gap: 0.8rem; }
    .forum-table th:nth-child(n+2), .forum-table td:nth-child(n+2) { display: none; }
    .thread-title { font-size: 0.88rem; }
    .card-title { font-size: 0.95rem; }
    .hero-logo-text, .hero-logo-text-premium { font-size: 2.2rem; letter-spacing: 3px; }
    .hero-logo-tagline { font-size: 0.58rem; letter-spacing: 2px; }
    .hero-logo, .hero-logo-premium { padding: 1.5rem 0.5rem 0.75rem; }
    .hero-image-banner { padding: 0 0.5rem; }
    .hero-image-banner-img { max-height: 110px; border-radius: var(--radius); }
    .chat-container { height: 460px; }
    .chat-msg-bubble { font-size: 0.82rem; padding: 0.65rem 0.9rem; }
    .conv-avatar { width: 38px; height: 38px; font-size: 0.9rem; }
    .auth-container { margin: 1.25rem auto; padding: 0 0.5rem; }
    .auth-card { padding: 1.5rem 1.15rem; border-radius: var(--radius); }
    .auth-title { font-size: 1.25rem; }
    .marketplace-stats-bar { flex-direction: column; gap: 0.35rem; }
    .vip-plans-grid { grid-template-columns: 1fr; }
    .lang-selector-wrap { width: 100%; }
    .lang-selector { justify-content: center; padding: 0.5rem 1rem; }
    .lang-dropdown { position: static; display: none; box-shadow: none; border: none; background: rgba(6,6,16,0.5); border-radius: 0; margin-top: 0.25rem; }
    .lang-selector.open .lang-dropdown { display: flex; flex-wrap: wrap; gap: 0.25rem; justify-content: center; }
}

/* ===== PRINT ===== */
@media print {
    .navbar, .forum-sidebar, .shoutbox, .ai-chat-premium, .forum-footer { display: none; }
    body { background: #fff; color: #000; }
    .card { border: 1px solid #ddd; box-shadow: none; background: #fff; }
}



/* ===== AI CODE BLOCKS ===== */
.ai-code-block {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    overflow-x: auto;
    font-size: 0.8rem;
    line-height: 1.5;
}

.ai-code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: #e2e8f0;
    white-space: pre;
    display: block;
}

.ai-inline-code {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    padding: 0.1rem 0.4rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.82em;
    color: #fbbf24;
}

.ai-msg-bot strong {
    color: #f1f5f9;
    font-weight: 600;
}



/* =====================================================
   DATA BREACH UIX - IMMERSIVE EXPERIENCE v2.0
   Advanced animations, glitch effects, data rain
   ===================================================== */

/* ===== DATA RAIN ANIMATION ===== */
.data-rain-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.data-rain-drop {
    position: absolute;
    top: -20px;
    font-family: var(--font-mono);
    color: #e63946;
    opacity: 0.2;
    animation: dataRainFall linear forwards;
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.5);
    user-select: none;
}

@keyframes dataRainFall {
    0% { transform: translateY(-20px); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.1; }
    100% { transform: translateY(350px); opacity: 0; }
}

/* ===== HERO BREACH PULSE ===== */
.hero-breach-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.02) 30%, transparent 60%);
    animation: breachPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes breachPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* ===== SCANLINE OVERLAY ===== */
.scanline-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(230, 57, 70, 0.008) 2px,
        rgba(230, 57, 70, 0.008) 4px
    );
    pointer-events: none;
    z-index: 2;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* ===== LOGO SHIELD ===== */
.logo-shield-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.logo-shield-svg {
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.4));
    animation: shieldFloat 5s ease-in-out infinite, shieldGlitch 8s ease-in-out infinite;
}

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

@keyframes shieldGlitch {
    0%, 92%, 94%, 96%, 100% { transform: translateY(0) skewX(0); filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.4)); }
    93% { transform: translateY(-2px) skewX(-2deg); filter: drop-shadow(2px 0 10px rgba(255, 0, 0, 0.6)) drop-shadow(-2px 0 10px rgba(0, 100, 255, 0.4)); }
    95% { transform: translateY(1px) skewX(1deg); filter: drop-shadow(-1px 0 10px rgba(255, 0, 0, 0.4)) drop-shadow(1px 0 10px rgba(0, 100, 255, 0.6)); }
}

.logo-shield-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}
.hero-logo-text-premium {
    position: relative;
    z-index: 5;
    font-size: 5rem !important;
}

.logo-ransom {
    position: relative;
    animation: logoGlitch 6s ease-in-out infinite;
}

.logo-ransom::before,
.logo-ransom::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f8 0%, #b8b8d8 50%, #f0f0f8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-ransom::before {
    clip-path: inset(0 0 60% 0);
    animation: glitchTop 4s infinite linear alternate-reverse;
}

.logo-ransom::after {
    clip-path: inset(60% 0 0 0);
    animation: glitchBottom 3.5s infinite linear alternate-reverse;
}

@keyframes glitchTop {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, -1px); }
    94% { transform: translate(3px, 1px); }
    96% { transform: translate(-1px, 0); }
}

@keyframes glitchBottom {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(2px, 1px); }
    93% { transform: translate(-2px, -1px); }
    95% { transform: translate(1px, 0); }
}

@keyframes logoGlitch {
    0%, 85%, 87%, 89%, 91%, 100% { opacity: 1; }
    86% { opacity: 0.8; }
    88% { opacity: 0.9; }
    90% { opacity: 0.85; }
}

/* Enhanced W with power effect */
.logo-w {
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.8), 0 0 60px rgba(230, 57, 70, 0.4), 0 0 100px rgba(230, 57, 70, 0.2) !important;
    animation: logo-shimmer 4s ease infinite reverse, logoWPower 3s ease-in-out infinite !important;
}

@keyframes logoWPower {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(230, 57, 70, 0.6), 0 0 60px rgba(230, 57, 70, 0.3);
        transform: scale(1) rotateY(0deg);
    }
    50% { 
        text-shadow: 0 0 50px rgba(230, 57, 70, 1), 0 0 100px rgba(230, 57, 70, 0.6), 0 0 150px rgba(230, 57, 70, 0.3);
        transform: scale(1.05) rotateY(5deg);
    }
}

/* ===== LEAK STATUS BAR ===== */
.leak-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding: 0.7rem 1.5rem;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 5;
    animation: statusBarSlide 0.8s ease-out;
}

@keyframes statusBarSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.leak-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leak-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.leak-indicator.active {
    background: #e63946;
    box-shadow: 0 0 8px #e63946, 0 0 16px rgba(230, 57, 70, 0.5);
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { box-shadow: 0 0 4px #e63946; }
    50% { box-shadow: 0 0 12px #e63946, 0 0 24px rgba(230, 57, 70, 0.6); }
}

.leak-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.leak-counter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 800;
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
    letter-spacing: 1px;
}

.leak-status-divider {
    width: 1px;
    height: 20px;
    background: rgba(230, 57, 70, 0.2);
}

/* ===== TAGLINE GLITCH ===== */
.tagline-glitch {
    position: relative;
    display: inline-block;
    font-family: var(--font-mono);
    letter-spacing: 3px;
    font-size: 0.65rem !important;
    color: var(--text-muted);
}

.tagline-glitch::before,
.tagline-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tagline-glitch::before {
    color: rgba(255, 0, 50, 0.5);
    animation: tagGlitch1 3s infinite linear;
    clip-path: inset(0 0 70% 0);
}

.tagline-glitch::after {
    color: rgba(0, 100, 255, 0.5);
    animation: tagGlitch2 2.5s infinite linear;
    clip-path: inset(70% 0 0 0);
}

@keyframes tagGlitch1 {
    0%, 94%, 100% { transform: translate(0); }
    95% { transform: translate(-2px, -1px); }
    97% { transform: translate(2px, 1px); }
}

@keyframes tagGlitch2 {
    0%, 92%, 100% { transform: translate(0); }
    93% { transform: translate(1px, 1px); }
    96% { transform: translate(-1px, -1px); }
}

/* ===== FLOATING HEX DATA ===== */
.hex-float {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: rgba(230, 57, 70, 0.2);
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 3;
    animation: hexDrift 10s ease-in-out infinite;
}

.hex-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.hex-float-2 {
    top: 25%;
    right: 8%;
    animation-delay: -3s;
}

.hex-float-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: -6s;
    color: rgba(230, 57, 70, 0.15);
}

@keyframes hexDrift {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-5px) translateX(3px); opacity: 0.5; }
    50% { transform: translateY(-10px) translateX(-2px); opacity: 0.2; }
    75% { transform: translateY(-3px) translateX(5px); opacity: 0.6; }
}

/* ===== ENHANCED HERO LOGO CONTAINER ===== */
.hero-logo-premium {
    padding: 3rem 1rem 2rem !important;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(230, 57, 70, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6, 6, 16, 0) 0%, rgba(6, 6, 16, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Animated border at the bottom */
.hero-logo-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.4), rgba(255, 71, 87, 0.6), rgba(230, 57, 70, 0.4), transparent);
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.3; left: 10%; right: 10%; }
    50% { opacity: 0.8; left: 20%; right: 20%; }
}

/* ===== ENHANCED HERO GLOW ===== */
.hero-logo-glow {
    width: 450px !important;
    height: 450px !important;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.03) 40%, transparent 65%) !important;
}

/* ===== ENHANCED HERO LINE ===== */
.hero-logo-line {
    width: 120px !important;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, #ff4757, #e63946, transparent) !important;
    position: relative;
    z-index: 5;
    margin-top: 1rem !important;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

/* ===== CARDS - Enhanced with breach effect ===== */
.card-premium {
    position: relative;
}

.card-premium::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card-premium:hover::after {
    opacity: 1;
    left: 10%;
    right: 10%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-logo-premium {
        min-height: 300px;
        padding: 2rem 0.5rem 1.5rem !important;
    }
    
    .hero-logo-text-premium {
        font-size: 3rem !important;
    }
    
    .logo-shield-svg {
        width: 60px;
        height: 68px;
    }
    
    .leak-status-bar {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.6rem 1rem;
        border-radius: 16px;
    }
    
    .leak-status-divider {
        display: none;
    }
    
    .hex-float {
        display: none;
    }
    
    .data-rain-container {
        opacity: 0.5;
    }
    
    .shield-breach-indicator {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .hero-logo-text-premium {
        font-size: 2.2rem !important;
    }
    
    .leak-status-bar {
        font-size: 0.55rem;
    }
    
    .logo-shield-svg {
        width: 50px;
        height: 56px;
    }
}



/* =====================================================
   PREMIUM MEMBERSHIP - ANIMATED BADGE & USERNAME
   Exclusive tier styling with holographic effects
   ===================================================== */

/* ===== PREMIUM BADGE ===== */
.badge-premium {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.12));
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
    animation: premiumBadgePulse 3s ease-in-out infinite;
}

.badge-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1), transparent);
    animation: premiumBadgeSweep 4s linear infinite;
}

@keyframes premiumBadgePulse {
    0%, 100% { box-shadow: 0 0 6px rgba(168, 85, 247, 0.15), inset 0 0 4px rgba(168, 85, 247, 0.05); }
    50% { box-shadow: 0 0 16px rgba(168, 85, 247, 0.35), 0 0 30px rgba(236, 72, 153, 0.15), inset 0 0 8px rgba(168, 85, 247, 0.1); }
}

@keyframes premiumBadgeSweep {
    0% { transform: translateX(-100%) rotate(15deg); }
    100% { transform: translateX(100%) rotate(15deg); }
}

/* Premium badge icon (diamond) */
.badge-premium::after {
    content: '\2666';
    margin-left: 2px;
    font-size: 0.55rem;
    animation: premiumDiamondSpin 6s ease-in-out infinite;
    display: inline-block;
}

@keyframes premiumDiamondSpin {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    25% { transform: rotate(15deg) scale(1.2); opacity: 1; }
    50% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    75% { transform: rotate(-15deg) scale(1.2); opacity: 1; }
}

/* ===== PREMIUM USERNAME ===== */
.username-premium {
    color: #c084fc !important;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899, #c084fc, #a855f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumNameShift 5s ease-in-out infinite, premiumNameGlow 3s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

@keyframes premiumNameShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes premiumNameGlow {
    0% { filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.4)) drop-shadow(0 0 8px rgba(236, 72, 153, 0.2)); }
    100% { filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 16px rgba(236, 72, 153, 0.4)); }
}

/* Premium username hover effect */
.username-premium:hover {
    animation-duration: 2s, 1.5s;
    transform: scale(1.02);
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 24px rgba(236, 72, 153, 0.5));
}

.username-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
    pointer-events: none;
}
.username-premium:hover::after {
    left: 100%;
}

/* ===== PREMIUM CATEGORY BADGE ===== */
.badge-premium-only {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: premiumBadgePulse 3s ease-in-out infinite;
}

/* ===== PREMIUM CONTENT NOTICE ===== */
.premium-content-notice {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(236, 72, 153, 0.03));
    border: 1px dashed rgba(168, 85, 247, 0.35);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    color: #c084fc;
    font-weight: 600;
    margin: 1.25rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.premium-content-notice::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.03), transparent);
    animation: premiumNoticeSweep 6s linear infinite;
}

@keyframes premiumNoticeSweep {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

/* ===== PREMIUM PLAN CARD (Purchase Page) ===== */
.premium-plan-card {
    background: var(--bg-card);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.premium-plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899, #a855f7);
    background-size: 200% 200%;
    animation: premiumBorderFlow 3s ease infinite;
}

@keyframes premiumBorderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-plan-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.premium-plan-card:hover {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.12), 0 0 40px rgba(168, 85, 247, 0.06);
    transform: translateY(-6px);
}

.premium-plan-icon {
    width: 90px; height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #c084fc;
    font-size: 2rem;
    animation: premiumIconFloat 4s ease-in-out infinite, premiumBadgePulse 3s ease-in-out infinite;
}

@keyframes premiumIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.premium-plan-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.premium-plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.premium-plan-price {
    font-size: 4rem;
    font-weight: 900;
    color: #c084fc;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.premium-plan-price .currency {
    font-size: 2rem;
    vertical-align: super;
}

.premium-plan-lifetime {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #a855f7;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.premium-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.premium-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.premium-features-list li:last-child { border-bottom: none; }

.premium-features-list li svg {
    color: #a855f7;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-premium-purchase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-premium-purchase::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-premium-purchase:hover::after { left: 100%; }

.btn-premium-purchase:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.4), 0 0 20px rgba(236, 72, 153, 0.2);
    color: #fff;
    text-shadow: none;
}

/* Premium nav button */
.btn-premium-nav {
    background: linear-gradient(135deg, #a855f7, #ec4899) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
    animation: premiumNavPulse 3s ease-in-out infinite;
}

@keyframes premiumNavPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(168, 85, 247, 0.2); }
    50% { box-shadow: 0 0 16px rgba(168, 85, 247, 0.4), 0 0 30px rgba(236, 72, 153, 0.15); }
}

.btn-premium-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4) !important;
}

/* Premium profile indicator */
.premium-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.06));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #c084fc;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: premiumBadgePulse 3s ease-in-out infinite;
}

.premium-profile-badge svg {
    width: 12px; height: 12px;
    animation: premiumDiamondSpin 6s ease-in-out infinite;
}

/* Premium avatar border */
.postbit-avatar-premium {
    border: 3px solid rgba(168, 85, 247, 0.5) !important;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.2), 0 0 24px rgba(236, 72, 153, 0.1) !important;
    animation: premiumAvatarGlow 4s ease-in-out infinite;
}

@keyframes premiumAvatarGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.4); }
    50% { box-shadow: 0 0 18px rgba(168, 85, 247, 0.35), 0 0 30px rgba(236, 72, 153, 0.15); border-color: rgba(168, 85, 247, 0.7); }
}


/* ===== NOTIFICATION BELL ===== */
.nav-notification-wrap { position: relative; }
.nav-notification-bell {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}
.nav-notification-bell:hover { background: rgba(230, 57, 70, 0.08); color: var(--text-primary); }
.notif-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: notifPulse 2s ease-in-out infinite;
}
@keyframes notifPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.nav-notification-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-height: 400px;
    background: var(--bg-card-solid, #101024);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}
.nav-notification-dropdown.open { display: block; }
.notif-header {
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notif-list { max-height: 340px; overflow-y: auto; }
.notif-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
    transition: background 0.2s;
}
.notif-item:hover { background: rgba(230, 57, 70, 0.04); }
.notif-item.unread { background: rgba(99, 102, 241, 0.05); border-left: 3px solid #6366f1; }
.notif-item-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; }
.notif-item-msg { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.notif-item-time { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.3rem; }
.notif-empty { padding: 2rem 1rem; text-align: center; color: var(--text-muted); font-size: 0.82rem; }



/* ===== BUSINESS TIER - ULTRA PREMIUM ANIMATED USERNAME & VERIFIED BADGE ===== */

/* Business Username - Rainbow Gradient Animation with Shimmer & Glow */
.username-business {
    color: #00d4ff !important;
    font-weight: 900 !important;
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #00d4ff 0%,
        #7c3aed 15%,
        #f43f5e 30%,
        #fbbf24 45%,
        #10b981 60%,
        #3b82f6 75%,
        #8b5cf6 90%,
        #00d4ff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: business-gradient-flow 4s linear infinite, business-glow-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
    letter-spacing: 0.3px;
}

@keyframes business-gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes business-glow-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3)) drop-shadow(0 0 8px rgba(124, 58, 237, 0.2));
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 16px rgba(124, 58, 237, 0.4)) drop-shadow(0 0 24px rgba(244, 63, 94, 0.2));
    }
}

/* Business Username Shimmer Overlay Effect */
.username-business::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: business-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes business-shimmer {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Business Badge - Premium Gradient Style */
.badge-business {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15), rgba(244, 63, 94, 0.1));
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15), inset 0 0 8px rgba(124, 58, 237, 0.05);
    animation: business-badge-glow 3s ease-in-out infinite;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
    font-weight: 800 !important;
    letter-spacing: 1px;
}

@keyframes business-badge-glow {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.1), inset 0 0 4px rgba(124, 58, 237, 0.05);
        border-color: rgba(0, 212, 255, 0.3);
    }
    33% { 
        box-shadow: 0 0 16px rgba(124, 58, 237, 0.25), inset 0 0 8px rgba(0, 212, 255, 0.08);
        border-color: rgba(124, 58, 237, 0.5);
    }
    66% { 
        box-shadow: 0 0 16px rgba(244, 63, 94, 0.2), inset 0 0 8px rgba(124, 58, 237, 0.05);
        border-color: rgba(244, 63, 94, 0.4);
    }
}

/* Business Verified Tick - Enhanced Blue with Glow */
.business-verified-tick {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    animation: business-tick-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(29, 155, 240, 0.5));
}

@keyframes business-tick-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 3px rgba(29, 155, 240, 0.4));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(29, 155, 240, 0.7)) drop-shadow(0 0 16px rgba(29, 155, 240, 0.3));
        transform: scale(1.08);
    }
}

/* Business Avatar Ring Animation */
.business-avatar-ring {
    border: 3px solid transparent !important;
    background-image: linear-gradient(var(--bg-card, #1a1a2e), var(--bg-card, #1a1a2e)), 
                      linear-gradient(135deg, #00d4ff, #7c3aed, #f43f5e, #fbbf24, #10b981, #00d4ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: business-avatar-spin 4s linear infinite;
}

@keyframes business-avatar-spin {
    0% { border-image-source: linear-gradient(0deg, #00d4ff, #7c3aed, #f43f5e, #fbbf24); }
    25% { border-image-source: linear-gradient(90deg, #7c3aed, #f43f5e, #fbbf24, #00d4ff); }
    50% { border-image-source: linear-gradient(180deg, #f43f5e, #fbbf24, #00d4ff, #7c3aed); }
    75% { border-image-source: linear-gradient(270deg, #fbbf24, #00d4ff, #7c3aed, #f43f5e); }
    100% { border-image-source: linear-gradient(360deg, #00d4ff, #7c3aed, #f43f5e, #fbbf24); }
}

/* Business User Post Highlight */
.postbit-business {
    border-color: rgba(0, 212, 255, 0.15) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.05), inset 0 0 30px rgba(124, 58, 237, 0.02);
}
.postbit-business:hover {
    border-color: rgba(0, 212, 255, 0.3) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1), inset 0 0 40px rgba(124, 58, 237, 0.03);
}

/* Profile Page Business Hero Banner Override */
.profile-hero-banner.business-banner {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #24243e 70%, #0f0c29 100%);
    position: relative;
    overflow: hidden;
}
.profile-hero-banner.business-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 212, 255, 0.1) 60deg, transparent 120deg, rgba(124, 58, 237, 0.1) 180deg, transparent 240deg, rgba(244, 63, 94, 0.08) 300deg, transparent 360deg);
    animation: business-banner-rotate 8s linear infinite;
}
@keyframes business-banner-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Business in Shoutbox */
.shoutbox-msg .username.username-business {
    font-size: 0.86rem;
}

/* Business Username in Forum Table (Category Listing) */
.forum-table .username-business {
    font-size: inherit;
}



/* =====================================================
   ENHANCED SEARCH INPUT - More Visible & Vibrant
   ===================================================== */

.nav-search-input {
    background: rgba(230, 57, 70, 0.04) !important;
    border: 1.5px solid rgba(230, 57, 70, 0.2) !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-search-input::placeholder {
    color: rgba(230, 57, 70, 0.5) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}

.nav-search-input:focus {
    background: rgba(230, 57, 70, 0.06) !important;
    border-color: rgba(230, 57, 70, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1), 0 0 20px rgba(230, 57, 70, 0.08), inset 0 0 10px rgba(230, 57, 70, 0.02) !important;
}

.nav-search-icon {
    color: rgba(230, 57, 70, 0.6) !important;
    transition: all 0.3s;
}

.nav-search-wrap:focus-within .nav-search-icon {
    color: #e63946 !important;
    filter: drop-shadow(0 0 4px rgba(230, 57, 70, 0.5));
}

/* =====================================================
   ENHANCED THREAT INTEL AI - Premium Animated UIX
   ===================================================== */

.ai-chat-premium {
    border: 1px solid rgba(230, 57, 70, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(230, 57, 70, 0.04), inset 0 1px 0 rgba(230, 57, 70, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.ai-chat-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e63946, #ff4757, #e63946, transparent);
    background-size: 200% 100%;
    animation: ai-border-flow 3s linear infinite;
    z-index: 5;
}

@keyframes ai-border-flow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.ai-chat-header-premium {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(16, 16, 36, 0.95), rgba(230, 57, 70, 0.08)) !important;
    border-bottom: 1px solid rgba(230, 57, 70, 0.15) !important;
    padding: 1rem 1.25rem !important;
    position: relative;
    overflow: hidden;
}

.ai-chat-header-premium::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.04), transparent);
    animation: ai-header-sweep 8s linear infinite;
}

@keyframes ai-header-sweep {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.ai-header-icon {
    width: 42px !important;
    height: 42px !important;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(255, 71, 87, 0.08)) !important;
    border: 1.5px solid rgba(230, 57, 70, 0.4) !important;
    border-radius: 12px !important;
    animation: ai-icon-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes ai-icon-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(230, 57, 70, 0.15); transform: scale(1); }
    50% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.35), 0 0 40px rgba(230, 57, 70, 0.1); transform: scale(1.05); }
}

.ai-header-title {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #eaeaf4, #ff6b6b, #eaeaf4);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ai-title-shimmer 4s ease-in-out infinite;
}

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

.ai-header-status {
    font-size: 0.72rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ai-status-dot {
    width: 7px !important;
    height: 7px !important;
    box-shadow: 0 0 6px #10b981, 0 0 12px rgba(16, 185, 129, 0.4);
}

.ai-chat-premium .ai-chat-messages {
    background: linear-gradient(180deg, rgba(6, 6, 16, 0.8) 0%, rgba(10, 10, 22, 0.7) 100%) !important;
    border-top: 1px solid rgba(230, 57, 70, 0.05);
}

.ai-chat-premium .ai-msg-bot {
    background: linear-gradient(135deg, rgba(24, 24, 52, 0.95), rgba(30, 30, 60, 0.9)) !important;
    border: 1px solid rgba(230, 57, 70, 0.12) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.ai-chat-premium .ai-msg-bot::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #e63946, transparent);
    border-radius: 3px 0 0 3px;
}

.ai-chat-premium .ai-msg-user {
    background: linear-gradient(135deg, #e63946, #ff4757, #e63946) !important;
    background-size: 200% 200% !important;
    animation: ai-user-msg-gradient 3s ease infinite;
    box-shadow: 0 4px 18px rgba(230, 57, 70, 0.3) !important;
}

@keyframes ai-user-msg-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-chat-input-premium {
    background: linear-gradient(180deg, rgba(10, 10, 22, 0.9), rgba(6, 6, 16, 0.95)) !important;
    border-top: 1px solid rgba(230, 57, 70, 0.12) !important;
    padding: 0.75rem 1rem;
}

.ai-chat-input-premium input {
    background: rgba(230, 57, 70, 0.03) !important;
    border: 1px solid rgba(230, 57, 70, 0.12);
    border-radius: 22px;
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem !important;
    transition: all 0.3s;
}

.ai-chat-input-premium input:focus {
    border-color: rgba(230, 57, 70, 0.35);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.06), 0 0 15px rgba(230, 57, 70, 0.05);
    background: rgba(230, 57, 70, 0.05) !important;
}

.ai-send-btn {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(255, 71, 87, 0.1)) !important;
    border: 1px solid rgba(230, 57, 70, 0.25) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0.5rem;
    transition: all 0.3s !important;
}

.ai-send-btn:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.25), rgba(255, 71, 87, 0.2)) !important;
    border-color: rgba(230, 57, 70, 0.5) !important;
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 16px rgba(230, 57, 70, 0.3);
}

/* AI Chat Premium - Corner decoration */
.ai-chat-premium::after {
    content: 'AI';
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(230, 57, 70, 0.25);
    z-index: 3;
    animation: ai-corner-blink 4s ease-in-out infinite;
}

@keyframes ai-corner-blink {
    0%, 40%, 60%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive - Don't break mobile */
@media (max-width: 768px) {
    .ai-send-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .ai-chat-input-premium input {
        padding: 0.6rem 1rem !important;
    }
    .nav-search-input {
        background: rgba(230, 57, 70, 0.04) !important;
    }
}

@media (max-width: 480px) {
    .ai-header-icon {
        width: 36px !important;
        height: 36px !important;
    }
    .ai-header-title {
        font-size: 0.85rem !important;
    }
}
