/**
 * Forum Frontend Styles - Beautiful, modern design with enhanced aesthetics
 * 
 * This file provides stunning CSS classes for the forum templates
 * with mobile-first responsive design and gorgeous visual elements.
 */

/* CSS Custom Properties for consistent theming */
:root {
    --electric-blue: #00D9FF;
    --electric-blue-dark: #00B8E6;
    --electric-blue-light: #33E1FF;
    --electric-blue-glow: rgba(0, 217, 255, 0.3);
    --dark-bg: #0F1419;
    --dark-card: #1A202C;
    --dark-border: #2D3748;
    --accent-purple: #8B5CF6;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --text-primary: #F7FAFC;
    --text-secondary: #A0AEC0;
    --text-muted: #718096;
    --gradient-primary: linear-gradient(135deg, var(--electric-blue) 0%, var(--accent-purple) 100%);
    --gradient-card: linear-gradient(145deg, #1A202C 0%, #2D3748 100%);
    --shadow-glow: 0 0 20px var(--electric-blue-glow);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --animation-speed: 0.3s;
}

/* Reset and Base Styles */
.forum-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F1419 0%, #1A202C 50%, #2D3748 100%);
    font-family: 'Inter', 'SF Pro Display', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.forum-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, var(--electric-blue-glow) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* 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; }

.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-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-12 { height: 3rem; }
.min-w-0 { min-width: 0px; }
.max-w-none { max-width: none; }
.max-w-7xl { max-width: 80rem; }

/* Modern Card Designs */
.glass-card {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all var(--animation-speed) ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-medium);
    border-color: var(--electric-blue-glow);
}

.neon-card {
    background: var(--gradient-card);
    border: 1px solid var(--electric-blue);
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px var(--electric-blue-glow);
    position: relative;
    overflow: hidden;
}

.neon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

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

/* Enhanced Backgrounds */
.bg-dark { background-color: var(--dark-bg); }
.bg-dark-card { background: var(--gradient-card); }
.bg-electric { background: var(--gradient-primary); }
.bg-glass { background: rgba(26, 32, 44, 0.6); backdrop-filter: blur(10px); }

/* Colors - Background */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-700 { background-color: var(--dark-border); }
.bg-gray-800 { background: var(--gradient-card); }
.bg-gray-900 { background-color: var(--dark-bg); }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-yellow-100 { background-color: #fef3c7; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-electric-blue { background-color: var(--electric-blue); }

/* Colors - Text */
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }
.text-blue-600 { color: #2563eb; }
.text-blue-800 { color: #1e40af; }
.text-yellow-800 { color: #92400e; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }

/* 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 */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-200 { border-color: #c3ddfd; }
.border-transparent { border-color: transparent; }

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

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }

/* Position */
.relative { position: relative; }
.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: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-blue-800:hover { color: #1e40af; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:text-yellow-600:hover { color: #d97706; }

/* Focus States */
.focus\:ring-2:focus { 
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:border-transparent:focus { border-color: transparent; }

/* 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: #e5e7eb;
}

/* Form Elements */
.forum-container input[type="text"],
.forum-container input[type="email"],
.forum-container input[type="search"],
.forum-container textarea,
.forum-container select {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background-color: #ffffff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.forum-container input[type="text"]:focus,
.forum-container input[type="email"]:focus,
.forum-container input[type="search"]:focus,
.forum-container textarea:focus,
.forum-container select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Enhanced Buttons with Modern Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

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

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

.btn-electric {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid var(--electric-blue);
    box-shadow: 0 0 10px var(--electric-blue-glow), var(--shadow-soft);
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-electric:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--electric-blue-glow), var(--shadow-medium);
    color: white;
}

.btn-glass {
    background: rgba(26, 32, 44, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(26, 32, 44, 0.9);
    border-color: var(--electric-blue);
    transform: translateY(-1px);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid var(--electric-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-medium);
    color: white;
}

.btn-secondary {
    background: var(--gradient-card);
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
    background: rgba(45, 55, 72, 0.8);
    border-color: var(--electric-blue);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* 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; }
}

@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;
}

/* Beautiful 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 */
.prose {
    color: #374151;
    max-width: 65ch;
}

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

.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #111827;
    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 #e5e7eb;
    padding-left: 1em;
    margin: 1.6em 0;
}

.prose code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.prose pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.714em 0;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
}

.prose a:hover {
    color: #1d4ed8;
}

/* Advanced Animations and Loading States */
.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(--electric-blue);
    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 slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 15px var(--electric-blue-glow);
    }
    to {
        box-shadow: 0 0 25px var(--electric-blue-glow);
    }
}

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

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

/* Smooth Hover Transitions */
.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(--electric-blue);
}

/* 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;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .forum-container {
        font-size: 14px;
    }
    
    .mobile-full-width {
        width: 100%;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-stack > * {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .forum-container {
        background: white;
        color: black;
    }
    
    .hidden-print {
        display: none !important;
    }
}