/* ============================================
   FORUM STYLE - COMPLETE REDESIGN
   Modern 2024 with 2008 nostalgia
   Clean, warm, premium feel
   ============================================ */

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

body {
    background: #e8ecf1;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(42, 107, 158, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(42, 107, 158, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #eef1f5 0%, #dce1e8 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.7;
    min-height: 100vh;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* ============================================
   FORUM WRAPPER
   ============================================ */
.forum-wrapper {
    max-width: 1240px;
    margin: 24px auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1a3a5c 100%);
    border-radius: 16px 16px 0 0;
    padding: 20px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.logo h1 a {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: color 0.2s;
}

.logo h1 a:hover {
    color: #93c5fd;
}

.logo small {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: -2px;
    letter-spacing: 0.5px;
}

.header-right {
    color: #cbd5e1;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.header-right .welcome {
    margin-right: 4px;
}

.header-right .welcome strong {
    color: #ffffff;
}

.header-link {
    color: #cbd5e1;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.header-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

.header-link.admin-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    border-color: #f59e0b;
    font-weight: 600;
    font-size: 11px;
    padding: 2px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-link.admin-badge:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar-inner {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    padding: 8px 0;
    align-items: center;
}

.nav-link {
    color: #475569;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link svg {
    flex-shrink: 0;
}

.nav-link:hover {
    color: #0f172a;
    background: #f1f5f9;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.nav-link.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.nav-right {
    margin-left: auto;
    color: #64748b;
    font-size: 13px;
    padding: 6px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.nav-right strong {
    color: #0f172a;
}

.nav-right a {
    color: #2563eb;
    font-weight: 500;
}

.nav-right a:hover {
    color: #1d4ed8;
}

.nav-right a[style*="color:#c0392b"]:hover,
.nav-right a[style*="color:#ef4444"]:hover {
    color: #dc2626 !important;
}

.admin-nav .nav-link {
    font-size: 12px;
    padding: 6px 14px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #475569;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
}

.stats-bar strong {
    color: #0f172a;
    font-weight: 700;
}

.stats-bar span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stats-bar span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #94a3b8;
    border-radius: 50%;
    margin-right: 6px;
}

.stats-bar span:first-child::before {
    display: none;
}

/* ============================================
   FORUM TABLE
   ============================================ */
.forum-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.forum-table thead th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #334155;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.forum-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.forum-table tbody tr:hover {
    background: #fafbfc;
}

.forum-table tbody tr:last-child {
    border-bottom: none;
}

.forum-table td {
    padding: 16px 16px;
    vertical-align: middle;
}

.forum-col-main {
    width: 48%;
}

.forum-col-stats {
    width: 80px;
    text-align: center;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.forum-col-last {
    width: 32%;
    font-size: 13px;
}

.forum-empty {
    text-align: center;
    padding: 48px !important;
    color: #94a3b8;
    font-style: italic;
}

.forum-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.forum-icon {
    font-size: 30px;
    line-height: 1;
    margin-top: 2px;
}

.forum-details {
    flex: 1;
}

.forum-link {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.forum-link:hover {
    color: #2563eb;
}

.forum-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.last-topic-link {
    font-weight: 500;
    font-size: 13px;
    color: #2563eb;
}

.last-topic-link:hover {
    color: #1d4ed8;
}

.last-post-by {
    font-size: 12px;
    color: #64748b;
    margin-top: 1px;
}

.last-post-time {
    font-size: 11px;
    color: #94a3b8;
    margin-left: 6px;
}

.no-posts {
    color: #94a3b8;
    font-style: italic;
    font-size: 13px;
}

/* ============================================
   ONLINE USERS BOX
   ============================================ */
.online-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 20px;
    overflow: hidden;
}

.online-header {
    background: #ffffff;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 13px;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-header::before {
    content: '🟢';
    font-size: 14px;
}

.online-body {
    padding: 12px 18px;
    font-size: 13px;
    color: #475569;
}

.online-user {
    display: inline-block;
    margin-right: 10px;
    color: #2563eb;
    font-weight: 500;
}

.online-user:after {
    content: ',';
    color: #94a3b8;
}

.online-user:last-child:after {
    content: '';
}

.online-count {
    font-weight: 600;
    color: #0f172a;
    margin-left: 4px;
}

.no-online {
    color: #94a3b8;
    font-style: italic;
}

/* ============================================
   FOOTER LINKS
   ============================================ */
.footer-links {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
    font-size: 13px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    font-weight: 500;
}

.footer-links a:hover {
    color: #2563eb;
}

/* ============================================
   ALERTS / FLASH MESSAGES
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #6ee7b7;
    color: #065f46;
}

.alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border-color: #fca5a5;
    color: #991b1b;
}

.alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fde68a 100%);
    border-color: #fcd34d;
    color: #92400e;
}

.alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
    border-color: #93c5fd;
    color: #1e40af;
}

.alert ul {
    margin: 4px 0 0 20px;
}

.alert ul li {
    margin-bottom: 2px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #0f172a;
}

.form-group label .required {
    color: #dc2626;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fafbfc;
    transition: all 0.2s;
    color: #0f172a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.form-group .help-text {
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    border-left: 4px solid #2563eb;
    margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-family: 'Inter', -apple-system, sans-serif;
    transition: all 0.15s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: #22c55e;
    color: #ffffff;
}

.btn-success:hover {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-color: #4ade80;
    color: #ffffff;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #ef4444;
    color: #ffffff;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-color: #f87171;
    color: #ffffff;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #f59e0b;
    color: #ffffff;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: #ffffff;
}

.btn-edit {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #8b5cf6;
    color: #ffffff;
    font-size: 11px;
    padding: 3px 14px;
}

.btn-edit:hover {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    border-color: #a78bfa;
    color: #ffffff;
}

.btn-sm {
    font-size: 11px;
    padding: 3px 14px;
}

.btn-lg {
    font-size: 15px;
    padding: 12px 32px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: 4px 0 16px 0;
    font-size: 13px;
    color: #64748b;
}

.breadcrumbs a {
    color: #2563eb;
    font-weight: 500;
}

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

.breadcrumbs .sep {
    margin: 0 8px;
    color: #94a3b8;
}

/* ============================================
   TOPIC HEADER
   ============================================ */
.topic-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.topic-header h2 {
    font-size: 26px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.topic-meta {
    font-size: 13px;
    color: #64748b;
}

.topic-meta span {
    margin-right: 18px;
    display: inline-block;
}

.topic-meta strong {
    color: #0f172a;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

.badge-sticky {
    background: #fef3c7;
    color: #92400e;
}

.badge-locked {
    background: #fef2f2;
    color: #991b1b;
}

.badge-op {
    background: #dbeafe;
    color: #1e40af;
}

.badge-admin {
    background: #f3e8ff;
    color: #6b21a8;
}

.badge-banned {
    background: #fef2f2;
    color: #991b1b;
}

.badge-verified {
    background: #d1fae5;
    color: #065f46;
}

.badge-online {
    background: #dcfce7;
    color: #166534;
}

.badge-icon {
    font-size: 12px;
}

/* ============================================
   POSTS
   ============================================ */
.post {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.post:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.post-author {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 16px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.post-author .avatar {
    margin: 0 auto 10px;
}

.post-author .avatar img,
.post-author .avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-author .avatar-placeholder {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.post-author .author-info {
    font-size: 12px;
    color: #64748b;
}

.post-author .author-info strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}

.post-author .author-info strong a {
    color: #0f172a;
}

.post-author .author-info strong a:hover {
    color: #2563eb;
}

.post-author .author-info small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
}

.post-author .author-info .badge {
    margin-top: 4px;
    font-size: 9px;
}

.post-content {
    padding: 16px 20px;
}

.post-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.post-actions {
    margin-left: auto;
    display: flex;
    gap: 6px;
}

.post-number {
    font-weight: 600;
    color: #475569;
}

.post-edited {
    font-style: italic;
    font-size: 11px;
    color: #94a3b8;
}

.post-body {
    font-size: 15px;
    line-height: 1.8;
    color: #1e293b;
}

.post-body p {
    margin-bottom: 12px;
}

.post-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CATEGORY VIEW
   ============================================ */
.category-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.category-header h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.category-header p {
    color: #64748b;
    margin-top: 4px;
}

.category-actions {
    margin-top: 12px;
}

.topic-list-header {
    display: grid;
    grid-template-columns: 2fr 80px 1fr;
    background: #f8fafc;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid #e2e8f0;
}

.topic-item {
    display: grid;
    grid-template-columns: 2fr 80px 1fr;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    font-size: 13px;
    transition: background 0.1s;
}

.topic-item:hover {
    background: #fafbfc;
}

.topic-item.sticky {
    background: #fffbeb;
}

.topic-item.sticky:hover {
    background: #fef3c7;
}

.topic-title a {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
}

.topic-title a:hover {
    color: #2563eb;
}

.topic-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.topic-meta span {
    margin-right: 12px;
}

.topic-stats {
    text-align: center;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.topic-last-post {
    font-size: 12px;
    color: #64748b;
}

.topic-last-post span {
    display: block;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0 8px;
    font-size: 13px;
}

.page-info {
    color: #475569;
    padding: 0 14px;
    font-weight: 500;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    border: none;
    border-top: 2px solid #f1f5f9;
    margin: 24px 0;
}

/* ============================================
   EDIT POST FORM
   ============================================ */
.edit-post-form {
    background: #f8fafc;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.edit-post-form h3 {
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 14px;
}

/* ============================================
   REPLY FORM
   ============================================ */
.reply-form {
    margin-top: 8px;
}

.reply-form h3 {
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 14px;
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    transition: all 0.2s;
}

.admin-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.admin-stat-box .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.admin-stat-box .stat-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-box.small .stat-number {
    font-size: 28px;
}

.admin-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.admin-section h3 {
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.admin-section h3 .badge {
    font-size: 11px;
    vertical-align: middle;
    margin-left: 8px;
}

.admin-form .form-group {
    margin-bottom: 14px;
}

.admin-form .form-group input,
.admin-form .form-group textarea {
    max-width: 500px;
}

.admin-form .form-group label {
    font-size: 13px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table thead th {
    background: #f1f5f9;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid #e2e8f0;
}

.admin-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
}

.admin-table tbody tr:hover {
    background: #fafbfc;
}

.admin-table .btn {
    font-size: 11px;
    padding: 2px 12px;
    margin: 1px;
}

.no-categories,
.no-items {
    color: #94a3b8;
    font-style: italic;
    padding: 24px;
    text-align: center;
}

/* ============================================
   SETTINGS PAGE
   ============================================ */
.settings-group {
    margin-bottom: 28px;
}

.settings-group h4 {
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.settings-group .form-group {
    margin-bottom: 12px;
}

.settings-group .form-group label {
    font-weight: 500;
    font-size: 13px;
}

.settings-group .form-group input,
.settings-group .form-group select {
    max-width: 380px;
}

/* ============================================
   BBCODE HELP
   ============================================ */
#bbcode-help {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

#bbcode-help h4 {
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 12px;
}

#bbcode-help code {
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: #0f172a;
}

/* ============================================
   BBCODE STYLING
   ============================================ */
blockquote {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 14px 18px;
    margin: 14px 0;
    border-radius: 8px;
    font-style: italic;
}

blockquote em {
    color: #64748b;
    font-style: italic;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 16px 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    margin: 14px 0;
    border: 1px solid #1e293b;
}

pre code {
    color: #e2e8f0;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 14px 0;
    border-radius: 10px;
    background: #0f172a;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 14px 0;
}

details summary {
    cursor: pointer;
    font-weight: 600;
    color: #2563eb;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-body ul,
.post-body ol {
    margin: 10px 0 10px 22px;
}

.post-body li {
    margin: 3px 0;
}

/* ============================================
   MEMBER LIST
   ============================================ */
.member-search {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 20px;
}

.search-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.search-row .search-input {
    flex: 1;
    min-width: 220px;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: #ffffff;
    transition: border-color 0.2s;
}

.search-row .search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.sort-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #475569;
}

.sort-row select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    background: #ffffff;
    cursor: pointer;
}

.sort-row select:focus {
    outline: none;
    border-color: #2563eb;
}

.member-count {
    font-size: 13px;
    color: #475569;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
}

.member-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.member-table thead th {
    background: #f8fafc;
    color: #334155;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.member-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}

.member-table tbody tr:hover {
    background: #fafbfc;
}

.member-table tbody tr:last-child {
    border-bottom: none;
}

.member-table td {
    padding: 12px 16px;
    vertical-align: middle;
}

.member-col-avatar {
    width: 50px;
    text-align: center;
}

.member-col-user {
    width: 30%;
}

.member-col-joined {
    width: 15%;
}

.member-col-stats {
    width: 10%;
    text-align: center;
}

.member-col-status {
    width: 15%;
    text-align: center;
}

.member-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.member-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.member-username {
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
}

.member-username:hover {
    color: #2563eb;
}

.status-online {
    color: #16a34a;
    font-weight: 600;
}

.status-offline {
    color: #94a3b8;
}

.status-banned {
    color: #dc2626;
    font-weight: 600;
}

/* ============================================
   PROFILE - PREMIUM BEAUTIFUL DESIGN
   ============================================ */

/* Profile Card */
.profile-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 24px;
    position: relative;
}

/* Profile Cover */
.profile-cover {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.profile-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.profile-cover-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Profile Body */
.profile-body {
    padding: 0 32px 32px 32px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

/* Avatar */
.profile-avatar-section {
    flex: 0 0 120px;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #ffffff;
    transition: transform 0.3s ease;
}

.profile-avatar-large:hover {
    transform: scale(1.02);
}

.profile-avatar-large-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.profile-avatar-large-placeholder:hover {
    transform: scale(1.02);
}

.online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Profile Info */
.profile-info-section {
    flex: 1;
    min-width: 280px;
}

.profile-name-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2px;
}

.profile-username {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
}

.profile-rank {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.profile-badges .badge {
    font-size: 11px;
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.profile-joined {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.profile-joined svg {
    opacity: 0.6;
}

.joined-ago {
    color: #94a3b8;
    font-size: 13px;
}

/* Stats Grid - Premium */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 12px 0 16px 0;
}

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #e2e8f0;
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.profile-actions .btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 13px;
}

/* Bio Card */
.profile-bio-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.bio-icon {
    font-size: 24px;
    line-height: 1;
    margin-top: 2px;
}

.bio-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.bio-content p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Section Header */
.profile-section {
    margin-top: 4px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.section-count {
    background: #f1f5f9;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.section-link {
    margin-left: auto;
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
}

.section-link:hover {
    color: #1d4ed8;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Topic List Modern */
.topic-list-modern {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.topic-item-modern {
    display: grid;
    grid-template-columns: 32px 1fr 80px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s;
    gap: 12px;
}

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

.topic-item-modern:hover {
    background: #f8fafc;
}

.topic-icon {
    font-size: 18px;
    text-align: center;
}

.topic-content {
    min-width: 0;
}

.topic-title-link {
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-title-link:hover {
    color: #2563eb;
}

.topic-meta-modern {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.topic-meta-modern a {
    color: #64748b;
}

.topic-meta-modern a:hover {
    color: #2563eb;
}

.topic-reply-count {
    text-align: center;
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

.reply-label {
    display: block;
    font-weight: 400;
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Post List Modern */
.post-list-modern {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.post-item-modern {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s;
}

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

.post-item-modern:hover {
    background: #f8fafc;
}

.post-excerpt-modern {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
}

.post-link-modern {
    color: #1e293b;
}

.post-link-modern:hover {
    color: #2563eb;
}

.post-meta-modern {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.post-meta-modern a {
    color: #64748b;
}

.post-meta-modern a:hover {
    color: #2563eb;
}

/* ============================================
   FORUM EMPTY STATE
   ============================================ */
.forum-empty-box {
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
}

.forum-empty-box .forum-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
}

.forum-empty-box p {
    font-size: 18px;
    margin-bottom: 14px;
    color: #475569;
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-muted {
    color: #94a3b8;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .forum-wrapper {
        margin: 16px auto;
        padding: 0 12px;
    }
    
    .header {
        padding: 16px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .container {
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 768px) {
    .forum-wrapper {
        margin: 8px auto;
        padding: 0 8px;
    }
    
    .header {
        padding: 14px 16px;
        border-radius: 10px 10px 0 0;
    }
    
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .header-right {
        justify-content: center;
        font-size: 12px;
    }
    
    .container {
        padding: 14px 16px;
        border-radius: 0 0 10px 10px;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
        padding: 10px 14px;
    }
    
    .stats-bar span::before {
        display: none;
    }
    
    .forum-table thead {
        display: none;
    }
    
    .forum-table tbody tr {
        display: block;
        margin-bottom: 14px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .forum-table tbody td {
        display: block;
        padding: 10px 14px;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .forum-table tbody td:last-child {
        border-bottom: none;
    }
    
    .forum-col-main,
    .forum-col-stats,
    .forum-col-last {
        width: 100%;
        text-align: left;
    }
    
    .forum-col-stats {
        padding-left: 14px;
    }
    
    .forum-info {
        flex-direction: row;
        align-items: center;
    }
    
    .forum-icon {
        font-size: 24px;
    }
    
    .post {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }
    
    .post-author {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .post-author .avatar {
        margin: 0;
    }
    
    .post-author .avatar img,
    .post-author .avatar-placeholder {
        width: 44px;
        height: 44px;
    }
    
    .post-author .avatar-placeholder {
        font-size: 18px;
    }
    
    .post-author .author-info strong {
        display: inline;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .post-author .author-info small {
        display: inline;
        margin-right: 10px;
    }
    
    .post-actions {
        margin-left: 0;
    }
    
    .topic-list-header,
    .topic-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .topic-stats,
    .topic-last-post {
        text-align: left;
        padding-left: 0;
    }
    
    .topic-last-post span {
        display: inline;
        margin-right: 10px;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .navbar-inner {
        justify-content: center;
        padding: 6px 0;
    }
    
    .nav-right {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .admin-table {
        font-size: 12px;
    }
    
    .admin-table thead {
        display: none;
    }
    
    .admin-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 6px;
    }
    
    .admin-table tbody td {
        display: block;
        padding: 6px 10px;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .admin-table tbody td:last-child {
        border-bottom: none;
    }
    
    .admin-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 80px;
        color: #64748b;
    }
    
    /* Member List Responsive */
    .member-table thead {
        display: none;
    }
    
    .member-table tbody tr {
        display: block;
        margin-bottom: 14px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .member-table tbody td {
        display: flex;
        align-items: center;
        padding: 8px 14px;
        border-bottom: 1px solid #f1f5f9;
        gap: 12px;
    }
    
    .member-table tbody td:last-child {
        border-bottom: none;
    }
    
    .member-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 12px;
        color: #64748b;
        min-width: 70px;
        text-transform: uppercase;
    }
    
    .member-col-avatar {
        width: auto;
    }
    
    .member-col-stats {
        text-align: left;
    }
    
    .member-col-status {
        text-align: left;
    }
    
    /* Profile Responsive */
    .profile-body {
        padding: 0 16px 20px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-top: -48px;
    }
    
    .profile-avatar-section {
        flex: 0 0 auto;
    }
    
    .profile-avatar-large,
    .profile-avatar-large-placeholder {
        width: 96px;
        height: 96px;
        font-size: 36px;
    }
    
    .online-dot {
        width: 18px;
        height: 18px;
        bottom: 6px;
        right: 6px;
    }
    
    .profile-cover {
        height: 100px;
    }
    
    .profile-name-area {
        justify-content: center;
    }
    
    .profile-username {
        font-size: 24px;
    }
    
    .profile-joined {
        justify-content: center;
    }
    
    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .profile-actions {
        justify-content: center;
    }
    
    .topic-item-modern {
        grid-template-columns: 28px 1fr;
        gap: 10px;
        padding: 10px 14px;
    }
    
    .topic-reply-count {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
    }
    
    .reply-label {
        display: inline;
        font-size: 10px;
    }
    
    .profile-bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-header {
        flex-wrap: wrap;
    }
    
    .section-link {
        margin-left: 0;
        width: 100%;
        text-align: left;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .search-row .search-input {
        min-width: auto;
    }
    
    .sort-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="number"],
    .form-group textarea,
    .form-group select {
        max-width: 100%;
    }
    
    .admin-form .form-group input,
    .admin-form .form-group textarea {
        max-width: 100%;
    }
    
    .btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .btn-sm {
        padding: 2px 10px;
        font-size: 10px;
    }
    
    .profile-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .profile-avatar-large,
    .profile-avatar-large-placeholder {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .profile-cover {
        height: 80px;
    }
    
    .profile-body {
        margin-top: -40px;
    }
    
    .header {
        padding: 12px;
    }
    
    .container {
        padding: 12px;
    }
}