/**
 * Forum Frontend Styles - Landing Page Parity Edition
 *
 * Matches the cyberpunk design of landing.css with full visual parity.
 * Dark theme with cyan accents, animated backgrounds, and glass effects.
 */

/* Font Import - Orbitron for headings, Inter for body */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* CSS Custom Properties - Matching landing.css exactly */
:root {
    /* Primary Colors - Landing Page Palette */
    --primary-cyan: #00ffff;
    --accent-cyan: #64defb;
    --accent-cyan-light: #80e5fc;
    --accent-teal: #018ba0;
    --electric-blue: #00ffff;
    --electric-blue-dark: #0099cc;
    --electric-blue-light: #33E1FF;
    --electric-blue-glow: rgba(0, 255, 255, 0.3);

    /* Backgrounds - Landing Page */
    --dark-bg: #09090a;
    --dark-card: rgba(255, 255, 255, 0.05);
    --dark-card-hover: rgba(255, 255, 255, 0.08);
    --dark-card-solid: #0e0f11;
    --dark-border: #173035;

    /* Accent Colors */
    --accent-purple: #8B5CF6;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-red-bg: #c41230;

    /* Text Colors - Landing Page */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #718096;

    /* Borders - Cyan Theme */
    --border-cyan: rgba(0, 255, 255, 0.2);
    --border-cyan-hover: rgba(0, 255, 255, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(45deg, #64defb, #80e5fc);
    --gradient-title: linear-gradient(45deg, #018ba0, #00ffff, #018ba0);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* Shadows & Glows */
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-glow-strong: 0 0 30px rgba(0, 255, 255, 0.5);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 10px 30px rgba(100, 222, 251, 0.3);

    /* Spacing */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --animation-speed: 0.3s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.forum-page {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Main Forum Container */
.forum-container {
    min-height: 100vh;
    background: var(--dark-bg);
    font-family: 'Inter', 'SF Pro Display', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
    color: var(--text-primary);
}

.forum-container * {
    box-sizing: border-box;
}

/* ========= ANIMATED BACKGROUND - Grid ========= */
.bg-grid,
.forum-container::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

/* ========= FLOATING PARTICLES ========= */
.floating-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: float 8s infinite linear;
    box-shadow: 0 0 15px var(--primary-cyan), 0 0 30px rgba(0, 255, 255, 0.6), 0 0 45px rgba(0, 255, 255, 0.3);
    filter: brightness(1.3);
}

.particle::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.2) 40%, transparent 100%);
    transform: translateX(-50%);
    filter: blur(0.5px);
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 8s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 6s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 7s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 9s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 6s; }

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ========= TYPOGRAPHY - Orbitron Headings ========= */
h1, h2, h3, h4,
.forum-title,
.section-title,
.gradient-title,
.text-2xl,
.text-3xl {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

/* Gradient Title Effect - Landing Page Style */
.gradient-title,
.forum-title,
.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    background: var(--gradient-title);
    background-size: 200% 200%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.text-electric-blue {
    color: var(--primary-cyan) !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Layout Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid System */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pl-16 { padding-left: 4rem; }
.pr-4 { padding-right: 1rem; }

.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.ml-12 { margin-left: 3rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width and Height */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.min-w-0 { min-width: 0px; }
.max-w-none { max-width: none; }
.max-w-7xl { max-width: 80rem; }

/* ========= GLASS CARD - Landing Page Style ========= */
.glass-card {
    /* Fallback for older browsers */
    background: var(--dark-card-solid);
    border: 1px solid var(--dark-border);
    /* Modern glass effect */
    background: var(--dark-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-cyan);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all var(--animation-speed) ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--border-cyan-hover);
}

/* Neon Card with Sweep Effect */
.neon-card {
    background: var(--dark-card-solid);
    background: var(--dark-card);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-teal), var(--primary-cyan)) 1;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: all var(--animation-speed) ease;
}

.neon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.neon-card:hover::before {
    left: 100%;
}

.neon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--dark-card-hover);
    border-left-width: 6px;
}

/* Feature Card - Landing Page Style */
.feature-card {
    background: var(--dark-card-solid);
    border: 1px solid var(--dark-border);
    background: var(--dark-card-hover);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-left: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--accent-teal), var(--primary-cyan)) 1;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-left-width: 6px;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: all var(--animation-speed) ease;
}

.feature-card:hover h3 {
    color: var(--primary-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.feature-card p {
    line-height: 1.6;
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Enhanced Backgrounds */
.bg-dark { background-color: var(--dark-bg); }
.bg-dark-card { background: var(--dark-card); }
.bg-electric { background: var(--gradient-primary); }
.bg-glass {
    background: var(--dark-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Colors - Background - Updated for Dark Theme */
.bg-white { background-color: var(--dark-card); }
.bg-gray-50 { background-color: var(--dark-bg); }
.bg-gray-100 { background-color: var(--dark-bg); }
.bg-gray-200 { background-color: rgba(255, 255, 255, 0.05); }
.bg-gray-700 { background-color: rgba(255, 255, 255, 0.08); }
.bg-gray-800 {
    background: var(--dark-card-solid);
    background: var(--dark-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-cyan);
}
.bg-gray-900 { background-color: var(--dark-bg); }
.bg-blue-50 { background-color: rgba(0, 255, 255, 0.05); }
.bg-blue-100 { background-color: rgba(0, 255, 255, 0.1); }
.bg-blue-600 { background-color: var(--accent-teal); }
.bg-blue-700 { background-color: var(--electric-blue-dark); }
.bg-yellow-100 { background-color: rgba(245, 158, 11, 0.2); }
.bg-red-50 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-100 { background-color: rgba(239, 68, 68, 0.15); }
.bg-red-900 { background-color: rgba(127, 29, 29, 0.8); }
.bg-electric-blue {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-button);
}

/* Colors - Text */
.text-gray-200 { color: var(--text-secondary); }
.text-gray-300 { color: var(--text-secondary); }
.text-gray-400 { color: var(--text-secondary); }
.text-gray-500 { color: var(--text-muted); }
.text-gray-600 { color: var(--text-secondary); }
.text-gray-700 { color: var(--text-secondary); }
.text-gray-800 { color: var(--text-primary); }
.text-gray-900 { color: var(--text-primary); }
.text-white { color: var(--text-primary); }
.text-blue-600 { color: var(--primary-cyan); }
.text-blue-800 { color: var(--accent-cyan); }
.text-yellow-800 { color: #fbbf24; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-red-600 { color: var(--accent-red); }
.text-red-800 { color: #f87171; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Border - Cyan Theme */
.border { border-width: 1px; border-color: var(--border-cyan); }
.border-b { border-bottom-width: 1px; border-color: var(--border-cyan); }
.border-t { border-top-width: 1px; border-color: var(--border-cyan); }
.border-l-2 { border-left-width: 2px; }
.border-gray-200 { border-color: var(--border-cyan); }
.border-gray-300 { border-color: var(--border-cyan); }
.border-gray-700 { border-color: var(--border-cyan); }
.border-blue-200 { border-color: var(--border-cyan); }
.border-red-700 { border-color: rgba(239, 68, 68, 0.5); }
.border-transparent { border-color: transparent; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-soft); }
.shadow { box-shadow: var(--shadow-medium); }

/* Position */
.relative { position: relative; z-index: 1; }
.absolute { position: absolute; }
.inset-y-0 { top: 0px; bottom: 0px; }
.left-0 { left: 0px; }
.right-0 { right: 0px; }

/* Display */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }

/* Hover States */
.hover\:bg-gray-50:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-gray-100:hover { background-color: rgba(255, 255, 255, 0.08); }
.hover\:bg-gray-600:hover { background-color: rgba(255, 255, 255, 0.12); }
.hover\:bg-blue-600:hover { background: var(--electric-blue-dark); }
.hover\:bg-blue-700:hover { background-color: var(--accent-teal); }
.hover\:text-blue-600:hover { color: var(--primary-cyan); }
.hover\:text-blue-800:hover { color: var(--accent-cyan); }
.hover\:text-gray-600:hover { color: var(--text-secondary); }
.hover\:text-red-600:hover { color: var(--accent-red); }
.hover\:text-yellow-600:hover { color: #fbbf24; }

/* Focus States - Cyan Glow */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--primary-cyan), var(--shadow-glow);
}
.focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 2px var(--primary-cyan), var(--shadow-glow);
}
.focus\:border-transparent:focus { border-color: var(--primary-cyan); }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Z-Index */
.z-10 { z-index: 10; }

/* Space Between */
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

.divide-y > :not([hidden]) ~ :not([hidden]) {
    border-top-width: 1px;
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
    border-color: var(--border-cyan);
}

/* ========= FORM ELEMENTS - Landing Page Style ========= */
.forum-container input[type="text"],
.forum-container input[type="email"],
.forum-container input[type="search"],
.forum-container input[type="password"],
.forum-container textarea,
.forum-container select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid var(--border-cyan);
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--animation-speed) ease;
}

.forum-container input[type="text"]::placeholder,
.forum-container input[type="email"]::placeholder,
.forum-container input[type="search"]::placeholder,
.forum-container textarea::placeholder {
    color: var(--text-secondary);
}

.forum-container input[type="text"]:focus,
.forum-container input[type="email"]:focus,
.forum-container input[type="search"]:focus,
.forum-container input[type="password"]:focus,
.forum-container textarea:focus,
.forum-container select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.forum-container select option {
    background: #1a1a1a;
    color: var(--text-primary);
}

/* ========= BUTTONS - Landing Page Style ========= */
.btn {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

/* Button Sweep Effect */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button - Cyan Gradient */
.btn-primary,
.btn-electric {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover,
.btn-electric:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 222, 251, 0.5);
    color: var(--text-primary);
}

/* Secondary Button - Outline */
.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    color: var(--primary-cyan);
}

/* Glass Button */
.btn-glass {
    background: var(--dark-card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-cyan);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Indiegogo-style Button (Red) */
.btn-danger {
    background: linear-gradient(45deg, #c41230, #e63946);
    color: var(--text-primary);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(196, 18, 48, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 18, 48, 0.5);
    background: linear-gradient(45deg, #a00d28, #c41230);
}

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:block { display: block; }
    .sm\:hidden { display: none; }
    .sm\:inline { display: inline; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:w-auto { width: auto; }
    .sm\:mr-2 { margin-right: 0.5rem; }
    .sm\:items-center { align-items: center; }
    .sm\:justify-between { justify-content: space-between; }
}

@media (min-width: 768px) {
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .lg\:w-80 { width: 20rem; }
    .lg\:flex-row { flex-direction: row; }
}

/* Report Toxicity Forum Components */
.forum-search-container .forum-search-input {
    width: 100%;
    padding-left: 4rem !important;
}

/* ========= BADGE SYSTEM ========= */
.badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.375rem;
    margin-bottom: 0.25rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-soft);
    transition: all var(--animation-speed) ease;
}

.badge-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.badge-inline:hover::before {
    left: 100%;
}

.badge-admin {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: 1px solid #DAA520;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.badge-moderator {
    background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
    color: white;
    border: 1px solid #312E81;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.badge-trusted {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: 1px solid #047857;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.badge-source {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: white;
    border: 1px solid #0369A1;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

.badge-monitored {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border: 1px solid #B45309;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.badge-incident {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    border: 1px solid #B91C1C;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.badge-backer {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border: 1px solid #6D28D9;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.badge-founder {
    background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
    color: white;
    border: 1px solid #BE185D;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

.badge-beta {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    color: white;
    border: 1px solid #0E7490;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.badge-display {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
    transition: all var(--animation-speed) ease;
    box-shadow: var(--shadow-soft);
}

.badge-display:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.avatar {
    border-radius: 50%;
    object-fit: cover;
}

/* ========= PROSE CONTENT - Dark Theme ========= */
.prose {
    color: var(--text-secondary);
    max-width: 65ch;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose blockquote {
    font-style: italic;
    border-left: 0.25rem solid var(--border-cyan);
    padding-left: 1em;
    margin: 1.6em 0;
    color: var(--text-secondary);
}

.prose code {
    background-color: rgba(0, 255, 255, 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: var(--primary-cyan);
}

.prose pre {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-cyan);
    overflow-x: auto;
    margin: 1.714em 0;
}

.prose a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.prose a:hover {
    color: var(--accent-cyan);
}

/* ========= ANIMATIONS ========= */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.floating {
    animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    }
}

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

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

@keyframes buttonGlow {
    0% {
        box-shadow: 0 20px 50px rgba(1, 139, 160, 0.5);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 25px 60px rgba(100, 222, 251, 0.7);
        transform: scale(1.02);
    }
}

/* ========= HOVER EFFECTS ========= */
.hover-lift {
    transition: all var(--animation-speed) ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.hover-glow {
    transition: all var(--animation-speed) ease;
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-cyan);
}

/* Interactive Elements */
.interactive-card {
    transition: all var(--animation-speed) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-medium);
}

.interactive-card:active {
    transform: translateY(0) scale(1);
    transition-duration: 0.1s;
}

/* Category Pills */
.category-pill {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all var(--animation-speed) ease;
    text-decoration: none;
}

.category-pill-active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.category-pill-inactive {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-cyan);
}

.category-pill-inactive:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-cyan);
}

/* Topic List Items */
.topics-list > div + div {
    border-top: 1px solid var(--border-cyan);
}

/* Links */
a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color var(--animation-speed) ease;
}

a:hover {
    color: var(--accent-cyan);
}

/* Forum Wrapper */
.report-toxicity-forum-wrapper {
    position: relative;
    z-index: 1;
}

/* ========= MOBILE OPTIMIZATIONS ========= */
@media (max-width: 768px) {
    .forum-container {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .mobile-full-width {
        width: 100%;
        margin: 0 -1rem;
        border-radius: 0;
    }

    .mobile-stack {
        flex-direction: column;
    }

    .mobile-stack > * {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 640px) {
    h1.text-2xl,
    h1.text-3xl {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
    }
}

/* ========= PRINT STYLES ========= */
@media print {
    .forum-container {
        background: white;
        color: black;
    }

    .hidden-print {
        display: none !important;
    }

    .bg-grid,
    .floating-particles,
    .forum-container::before {
        display: none;
    }
}

/* ========= WHITESPACE UTILITY ========= */
.whitespace-nowrap { white-space: nowrap; }

/* ============================================
   CRITICAL OVERRIDES - Theme/Elementor Protection
   These styles use !important to ensure forum
   styling is not overridden by WordPress themes,
   Elementor, or other plugins.
   ============================================ */

/* Defensive isolation from theme/Elementor */
.report-toxicity-forum-wrapper *,
.report-toxicity-forum-wrapper *::before,
.report-toxicity-forum-wrapper *::after {
    box-sizing: border-box !important;
}

/* ========= SVG/IMAGE PROTECTION ========= */

/* Protect SVG icons from theme overrides - critical fix for giant icons */
.report-toxicity-forum-wrapper svg {
    max-width: 100% !important;
    max-height: 100% !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* SVGs with explicit size classes should respect those sizes */
.report-toxicity-forum-wrapper svg[class*="w-"],
.report-toxicity-forum-wrapper svg[class*="h-"] {
    width: auto;
    height: auto;
}

/* Protect badge/avatar images */
.report-toxicity-forum-wrapper img {
    max-width: 100% !important;
    height: auto !important;
}

.report-toxicity-forum-wrapper img[class*="h-"][class*="w-"] {
    max-width: none !important;
}

/* ========= SCOPED WIDTH OVERRIDES ========= */
.report-toxicity-forum-wrapper .w-4 { width: 1rem !important; max-width: 1rem !important; }
.report-toxicity-forum-wrapper .w-5 { width: 1.25rem !important; max-width: 1.25rem !important; }
.report-toxicity-forum-wrapper .w-6 { width: 1.5rem !important; max-width: 1.5rem !important; }
.report-toxicity-forum-wrapper .w-8 { width: 2rem !important; max-width: 2rem !important; }
.report-toxicity-forum-wrapper .w-10 { width: 2.5rem !important; max-width: 2.5rem !important; }
.report-toxicity-forum-wrapper .w-12 { width: 3rem !important; max-width: 3rem !important; }
.report-toxicity-forum-wrapper .w-16 { width: 4rem !important; max-width: 4rem !important; }
.report-toxicity-forum-wrapper .w-20 { width: 5rem !important; max-width: 5rem !important; }
.report-toxicity-forum-wrapper .w-24 { width: 6rem !important; max-width: 6rem !important; }
.report-toxicity-forum-wrapper .w-32 { width: 8rem !important; max-width: 8rem !important; }
.report-toxicity-forum-wrapper .w-full { width: 100% !important; }
.report-toxicity-forum-wrapper .w-auto { width: auto !important; }

/* ========= SCOPED HEIGHT OVERRIDES ========= */
.report-toxicity-forum-wrapper .h-4 { height: 1rem !important; max-height: 1rem !important; }
.report-toxicity-forum-wrapper .h-5 { height: 1.25rem !important; max-height: 1.25rem !important; }
.report-toxicity-forum-wrapper .h-6 { height: 1.5rem !important; max-height: 1.5rem !important; }
.report-toxicity-forum-wrapper .h-8 { height: 2rem !important; max-height: 2rem !important; }
.report-toxicity-forum-wrapper .h-10 { height: 2.5rem !important; max-height: 2.5rem !important; }
.report-toxicity-forum-wrapper .h-12 { height: 3rem !important; max-height: 3rem !important; }
.report-toxicity-forum-wrapper .h-16 { height: 4rem !important; max-height: 4rem !important; }
.report-toxicity-forum-wrapper .h-20 { height: 5rem !important; max-height: 5rem !important; }
.report-toxicity-forum-wrapper .h-24 { height: 6rem !important; max-height: 6rem !important; }
.report-toxicity-forum-wrapper .h-32 { height: 8rem !important; max-height: 8rem !important; }
.report-toxicity-forum-wrapper .h-full { height: 100% !important; }
.report-toxicity-forum-wrapper .h-auto { height: auto !important; }

/* ========= SCOPED FLEXBOX OVERRIDES ========= */
.report-toxicity-forum-wrapper .flex { display: flex !important; }
.report-toxicity-forum-wrapper .inline-flex { display: inline-flex !important; }
.report-toxicity-forum-wrapper .flex-col { flex-direction: column !important; }
.report-toxicity-forum-wrapper .flex-row { flex-direction: row !important; }
.report-toxicity-forum-wrapper .flex-wrap { flex-wrap: wrap !important; }
.report-toxicity-forum-wrapper .flex-1 { flex: 1 1 0% !important; }
.report-toxicity-forum-wrapper .flex-shrink-0 { flex-shrink: 0 !important; }
.report-toxicity-forum-wrapper .items-center { align-items: center !important; }
.report-toxicity-forum-wrapper .items-start { align-items: flex-start !important; }
.report-toxicity-forum-wrapper .items-end { align-items: flex-end !important; }
.report-toxicity-forum-wrapper .justify-center { justify-content: center !important; }
.report-toxicity-forum-wrapper .justify-between { justify-content: space-between !important; }
.report-toxicity-forum-wrapper .justify-end { justify-content: flex-end !important; }

/* ========= SCOPED GRID OVERRIDES ========= */
.report-toxicity-forum-wrapper .grid { display: grid !important; }
.report-toxicity-forum-wrapper .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.report-toxicity-forum-wrapper .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.report-toxicity-forum-wrapper .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }

/* ========= SCOPED GAP OVERRIDES ========= */
.report-toxicity-forum-wrapper .gap-1 { gap: 0.25rem !important; }
.report-toxicity-forum-wrapper .gap-2 { gap: 0.5rem !important; }
.report-toxicity-forum-wrapper .gap-3 { gap: 0.75rem !important; }
.report-toxicity-forum-wrapper .gap-4 { gap: 1rem !important; }
.report-toxicity-forum-wrapper .gap-6 { gap: 1.5rem !important; }
.report-toxicity-forum-wrapper .gap-8 { gap: 2rem !important; }

/* ========= SCOPED SPACING OVERRIDES ========= */
.report-toxicity-forum-wrapper .p-2 { padding: 0.5rem !important; }
.report-toxicity-forum-wrapper .p-3 { padding: 0.75rem !important; }
.report-toxicity-forum-wrapper .p-4 { padding: 1rem !important; }
.report-toxicity-forum-wrapper .p-6 { padding: 1.5rem !important; }
.report-toxicity-forum-wrapper .p-8 { padding: 2rem !important; }
.report-toxicity-forum-wrapper .px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.report-toxicity-forum-wrapper .px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.report-toxicity-forum-wrapper .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.report-toxicity-forum-wrapper .px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.report-toxicity-forum-wrapper .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.report-toxicity-forum-wrapper .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.report-toxicity-forum-wrapper .py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.report-toxicity-forum-wrapper .py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.report-toxicity-forum-wrapper .mb-2 { margin-bottom: 0.5rem !important; }
.report-toxicity-forum-wrapper .mb-4 { margin-bottom: 1rem !important; }
.report-toxicity-forum-wrapper .mb-6 { margin-bottom: 1.5rem !important; }
.report-toxicity-forum-wrapper .mb-8 { margin-bottom: 2rem !important; }
.report-toxicity-forum-wrapper .mt-1 { margin-top: 0.25rem !important; }
.report-toxicity-forum-wrapper .mt-2 { margin-top: 0.5rem !important; }
.report-toxicity-forum-wrapper .mt-4 { margin-top: 1rem !important; }
.report-toxicity-forum-wrapper .mr-1 { margin-right: 0.25rem !important; }
.report-toxicity-forum-wrapper .mr-2 { margin-right: 0.5rem !important; }
.report-toxicity-forum-wrapper .ml-2 { margin-left: 0.5rem !important; }
.report-toxicity-forum-wrapper .mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* ========= SCOPED TEXT OVERRIDES ========= */
.report-toxicity-forum-wrapper .text-white { color: #ffffff !important; }
.report-toxicity-forum-wrapper .text-center { text-align: center !important; }
.report-toxicity-forum-wrapper .text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.report-toxicity-forum-wrapper .text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.report-toxicity-forum-wrapper .text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.report-toxicity-forum-wrapper .text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.report-toxicity-forum-wrapper .text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.report-toxicity-forum-wrapper .text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.report-toxicity-forum-wrapper .font-bold { font-weight: 700 !important; }
.report-toxicity-forum-wrapper .font-semibold { font-weight: 600 !important; }
.report-toxicity-forum-wrapper .font-medium { font-weight: 500 !important; }

/* ========= SCOPED DISPLAY OVERRIDES ========= */
.report-toxicity-forum-wrapper .hidden { display: none !important; }
.report-toxicity-forum-wrapper .block { display: block !important; }
.report-toxicity-forum-wrapper .inline-block { display: inline-block !important; }

/* ========= SCOPED BORDER OVERRIDES ========= */
.report-toxicity-forum-wrapper .rounded { border-radius: 0.25rem !important; }
.report-toxicity-forum-wrapper .rounded-md { border-radius: 0.375rem !important; }
.report-toxicity-forum-wrapper .rounded-lg { border-radius: 0.5rem !important; }
.report-toxicity-forum-wrapper .rounded-xl { border-radius: 0.75rem !important; }
.report-toxicity-forum-wrapper .rounded-2xl { border-radius: 1rem !important; }
.report-toxicity-forum-wrapper .rounded-full { border-radius: 9999px !important; }

/* ========= COMPONENT OVERRIDES ========= */

/* Protect glass cards from theme background overrides */
.report-toxicity-forum-wrapper .glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 255, 255, 0.2) !important;
    border-radius: 1rem !important;
}

/* Protect buttons */
.report-toxicity-forum-wrapper .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.report-toxicity-forum-wrapper .btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-cyan)) !important;
    color: #09090a !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
}

.report-toxicity-forum-wrapper .btn-glass {
    background: rgba(0, 255, 255, 0.1) !important;
    border: 1px solid var(--border-cyan) !important;
    color: var(--primary-cyan) !important;
    padding: 0.75rem 1.5rem !important;
}

/* Force background on forum pages */
body.forum-page,
.report-toxicity-forum-wrapper {
    background-color: #09090a !important;
}

/* Responsive overrides */
@media (min-width: 768px) {
    .report-toxicity-forum-wrapper .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .report-toxicity-forum-wrapper .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .report-toxicity-forum-wrapper .md\:flex-row { flex-direction: row !important; }
    .report-toxicity-forum-wrapper .sm\:flex-row { flex-direction: row !important; }
}

@media (min-width: 1024px) {
    .report-toxicity-forum-wrapper .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .report-toxicity-forum-wrapper .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

/* ========= ACTION ICON BUTTONS ========= */
/* Consistent outline style for post action buttons */
/* Must override Elementor/theme button styles */
.report-toxicity-forum-wrapper .action-icon-btn,
.report-toxicity-forum-wrapper button.action-icon-btn,
.report-toxicity-forum-wrapper a.action-icon-btn,
button.action-icon-btn,
a.action-icon-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2rem !important;
    height: 2rem !important;
    padding: 0.25rem !important;
    border-radius: 9999px !important;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--primary-cyan) !important;
    border: 1px solid var(--primary-cyan) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.report-toxicity-forum-wrapper .action-icon-btn:hover,
.report-toxicity-forum-wrapper button.action-icon-btn:hover,
.report-toxicity-forum-wrapper a.action-icon-btn:hover,
button.action-icon-btn:hover,
a.action-icon-btn:hover {
    background: rgba(0, 255, 255, 0.15) !important;
    background-color: rgba(0, 255, 255, 0.15) !important;
    border-color: var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
    transform: scale(1.05);
    box-shadow: none !important;
}

/* Warning variant for ban button */
.report-toxicity-forum-wrapper .action-icon-btn--warning {
    color: #fb923c !important;
    border-color: #fb923c !important;
}

.report-toxicity-forum-wrapper .action-icon-btn--warning:hover {
    background: rgba(251, 146, 60, 0.15) !important;
    color: #fdba74 !important;
    border-color: #fdba74 !important;
}
