/* ============================================
   AFRODIT ÇEVIRI FORUM - STYLE
   Classic Forum Design with Red/RGB Theme
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Core Colors */
    --bg-dark: #0d0d0d;
    --bg-body: #121212;
    --bg-card: #1a1a1a;
    --bg-card-hover: #1f1f1f;
    --bg-header: #0a0a0a;
    --bg-input: #1e1e1e;
    --bg-sidebar: #161616;

    /* Red Theme */
    --red-primary: #dc2626;
    --red-dark: #991b1b;
    --red-light: #ef4444;
    --red-glow: rgba(220, 38, 38, 0.3);
    --red-subtle: rgba(220, 38, 38, 0.08);

    /* Accent Colors */
    --accent-orange: #f97316;
    --accent-amber: #f59e0b;
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;

    /* Text Colors */
    --text-primary: #e5e5e5;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --text-link: #ef4444;
    --text-link-hover: #f87171;

    /* Borders */
    --border-color: #2a2a2a;
    --border-subtle: #1f1f1f;
    --border-red: rgba(220, 38, 38, 0.3);

    /* Gradients */
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-header: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    --gradient-card: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 0 20px rgba(220, 38, 38, 0.15);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.1);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-title: 'Orbitron', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: var(--text-link);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-link-hover);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.top-bar-left i {
    color: var(--red-primary);
    font-size: 0.75rem;
}

.separator {
    color: var(--border-color);
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.top-link:hover {
    color: var(--text-primary);
}

.top-link.highlight {
    color: var(--red-light);
}

.top-link i {
    margin-right: 4px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--gradient-header);
    border-bottom: 2px solid var(--red-dark);
    position: relative;
    z-index: 90;
    overflow: hidden;
}

/* Animated RGB border at bottom */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-amber), 
        var(--red-primary), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary));
    background-size: 200% 100%;
    animation: rgbBorder 4s linear infinite;
}

@keyframes rgbBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-red);
    animation: logoPulse 3s ease-in-out infinite;
    transition: transform var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text a {
    text-decoration: none;
    color: inherit;
    -webkit-text-fill-color: inherit;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.2); }
}

.logo-text h1 {
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tagline {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 400px;
}

.search-form {
    display: flex;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-form:focus-within {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-main);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    background: var(--gradient-red);
    border: none;
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.search-form button:hover {
    opacity: 0.85;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 10px;
}

.btn-header {
    padding: 9px 18px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-header:hover {
    border-color: var(--red-primary);
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.btn-header.btn-register {
    background: var(--gradient-red);
    border-color: transparent;
    color: #fff;
}

.btn-header.btn-register:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-red);
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 80;
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 2px;
    overflow-x: auto;
}

.nav-link {
    padding: 12px 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--red-subtle);
    border-bottom-color: var(--red-primary);
}

.nav-link.active {
    color: var(--red-light);
    border-bottom-color: var(--red-primary);
    background: var(--red-subtle);
}

.nav-link i {
    font-size: 0.8rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.breadcrumb-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-inner a {
    color: var(--text-muted);
}

.breadcrumb-inner a:hover {
    color: var(--red-light);
}

.bc-sep {
    font-size: 0.6rem;
    color: var(--border-color);
}

.bc-current {
    color: var(--text-secondary);
}

/* ===== WELCOME BANNER ===== */
.welcome-banner {
    margin: 20px 0;
    padding: 28px 32px;
    background: var(--gradient-header);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated RGB border for welcome banner */
.welcome-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--red-primary), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary), 
        transparent);
    background-size: 200% 100%;
    animation: rgbBorder 3s linear infinite;
}

.welcome-content h2 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 500px;
}

.welcome-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 10px 18px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: var(--red-primary);
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red-light);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FORUM LAYOUT ===== */
.forum-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.forum-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== FORUM CATEGORIES ===== */
.forum-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
}

.forum-category:hover {
    box-shadow: var(--shadow-md);
}

/* Pinned Category Styling */
.pinned-category {
    border-color: var(--border-red);
    box-shadow: var(--shadow-red);
}

.pinned-category .category-header {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(153, 27, 27, 0.08) 100%);
}

/* Early Access Styling */
.early-access-category .category-header {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.early-access-category {
    border-color: rgba(168, 85, 247, 0.2);
}

/* Request Category Styling */
.request-category .category-header {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.request-category {
    border-color: rgba(249, 115, 22, 0.2);
}

/* Category Header */
.category-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    font-size: 1.3rem;
    color: var(--red-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-md);
}

.early-access-category .category-icon {
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
}

.request-category .category-icon {
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
}

.pin-icon {
    color: var(--accent-amber);
    font-size: 0.9rem;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.category-title h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.category-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.category-stats-header {
    display: flex;
    gap: 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ch-topics, .ch-posts {
    width: 60px;
    text-align: center;
}

.ch-last {
    width: 120px;
    text-align: right;
}

/* Thread Rows */
.category-body {
    background: var(--bg-card);
}

.thread-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-fast);
    gap: 14px;
}

.thread-row:last-child {
    border-bottom: none;
}

.thread-row:hover {
    background: var(--bg-card-hover);
}

/* Pinned Thread */
.pinned-thread {
    background: rgba(220, 38, 38, 0.03);
}

.pinned-thread:hover {
    background: rgba(220, 38, 38, 0.06);
}

/* Thread Icon */
.thread-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.thread-icon.hot {
    color: var(--red-primary);
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
    animation: hotGlow 2s ease-in-out infinite;
}

@keyframes hotGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(220, 38, 38, 0); }
    50% { box-shadow: 0 0 12px rgba(220, 38, 38, 0.3); }
}

.thread-icon.early {
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.thread-icon.request {
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.thread-icon.suggestion {
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Pinned thread icon */
.pinned-thread .thread-icon {
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Thread Info */
.thread-info {
    flex: 1;
    min-width: 0;
}

.thread-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.thread-title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.thread-title a:hover {
    color: var(--red-light);
}

/* Badges */
.badge {
    font-size: 0.62rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-pinned {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-important {
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-light);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.badge-update {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-hot {
    background: rgba(220, 38, 38, 0.15);
    color: var(--red-light);
    border: 1px solid rgba(220, 38, 38, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.badge-new {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-early {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-request {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-suggestion {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Thread Meta */
.thread-meta {
    display: flex;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.thread-meta i {
    margin-right: 3px;
    font-size: 0.7rem;
}

.thread-pages {
    color: var(--text-muted);
}

.thread-pages i {
    color: var(--text-muted);
}

/* Thread Counts */
.thread-count {
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* Thread Last Post */
.thread-last {
    width: 120px;
    text-align: right;
    flex-shrink: 0;
}

.last-post-info {
    display: flex;
    flex-direction: column;
}

.last-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-link);
}

.last-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===== SIDEBAR ===== */
.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
}

.sidebar-panel:hover {
    box-shadow: var(--shadow-sm);
}

.panel-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.panel-header i {
    color: var(--red-primary);
}

.panel-body {
    padding: 16px;
}

/* Guest Panel */
.guest-body {
    text-align: center;
}

.guest-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.btn-sidebar {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.btn-sidebar:last-child {
    margin-bottom: 0;
}

.btn-login-side {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login-side:hover {
    border-color: var(--red-primary);
    background: var(--bg-card-hover);
}

.btn-register-side {
    background: var(--gradient-red);
    color: #fff;
}

.btn-register-side:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-red);
}

/* Logged In Panel */
.user-avatar-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-role {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-joined {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.user-quick-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 6px;
}

.qs-item {
    text-align: center;
    flex: 1;
    padding: 8px 4px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.qs-num {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--red-light);
}

.qs-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-logout {
    background: var(--bg-input);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-logout:hover {
    color: var(--red-light);
    border-color: var(--red-primary);
}

/* Stats Panel */
.stats-list {
    list-style: none;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.82rem;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list li span {
    color: var(--text-secondary);
}

.stats-list li strong {
    color: var(--text-primary);
}

.new-member {
    color: var(--accent-green) !important;
}

.online {
    color: var(--accent-green) !important;
}

/* Online Panel */
.online-dot {
    color: var(--accent-green) !important;
    font-size: 0.5rem;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.online-users {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.online-user {
    cursor: pointer;
    transition: color var(--transition-fast);
}

.online-user:hover {
    color: var(--text-link);
}

.admin-user {
    color: var(--red-light);
    font-weight: 700;
}

.mod-user {
    color: var(--accent-blue);
    font-weight: 600;
}

.online-more {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.75rem;
}

/* Activity Panel */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--red-primary);
    flex-shrink: 0;
}

.activity-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.activity-text strong {
    color: var(--text-primary);
}

.activity-text a {
    color: var(--text-link);
    font-size: 0.76rem;
}

.activity-time {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* RGB top border for footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary), 
        transparent);
    background-size: 200% 100%;
    animation: rgbBorder 4s linear infinite;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--red-light);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-red);
    border-color: var(--red-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.footer-bottom {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-powered {
    color: var(--text-muted);
    font-style: italic;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 420px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

/* Animated RGB border for modals */
.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary));
    background-size: 200% 100%;
    animation: rgbBorder 3s linear infinite;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h3 i {
    color: var(--red-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--red-light);
}

.modal-body {
    padding: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--red-primary);
    margin-right: 4px;
    font-size: 0.75rem;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--red-primary);
    width: 14px;
    height: 14px;
}

.forgot-link {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.forgot-link:hover {
    color: var(--red-light);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--gradient-red);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-red);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-register-submit {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--red-primary) 100%);
}

.modal-divider {
    text-align: center;
    margin: 18px 0;
    position: relative;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.modal-divider span {
    background: var(--bg-card);
    padding: 0 14px;
    position: relative;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.modal-switch {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.modal-switch a {
    font-weight: 700;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    animation: toastIn 0.4s ease;
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
}

.toast.toast-success::before {
    background: var(--accent-green);
}

.toast.toast-error::before {
    background: var(--red-primary);
}

.toast.toast-info::before {
    background: var(--accent-blue);
}

.toast i {
    font-size: 1rem;
}

.toast.toast-success i {
    color: var(--accent-green);
}

.toast.toast-error i {
    color: var(--red-primary);
}

.toast.toast-info i {
    color: var(--accent-blue);
}

@keyframes toastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== ANIMATIONS - FADE IN ON SCROLL ===== */
.forum-category,
.sidebar-panel {
    animation: fadeInUp 0.5s ease both;
}

.forum-category:nth-child(1) { animation-delay: 0.1s; }
.forum-category:nth-child(2) { animation-delay: 0.2s; }
.forum-category:nth-child(3) { animation-delay: 0.3s; }
.forum-category:nth-child(4) { animation-delay: 0.4s; }

.sidebar-panel:nth-child(1) { animation-delay: 0.15s; }
.sidebar-panel:nth-child(2) { animation-delay: 0.25s; }
.sidebar-panel:nth-child(3) { animation-delay: 0.35s; }
.sidebar-panel:nth-child(4) { animation-delay: 0.45s; }
.sidebar-panel:nth-child(5) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== DIJITAL HIZMETLER (SERVICES) PAGE ===== */
.services-page {
    padding: 24px 0 40px;
}

.services-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--gradient-header);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary));
    background-size: 200% 100%;
    animation: rgbBorder 3s linear infinite;
}

.services-hero-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-red);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-red);
}

.services-hero-text h2 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.services-hero-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.services-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
}

.services-intro p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.services-intro p:last-child {
    margin-bottom: 0;
}

.services-intro-sub {
    font-weight: 600;
    color: var(--text-primary) !important;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.5s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

.service-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px 0;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--service-color);
    background: color-mix(in srgb, var(--service-color) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--service-color) 25%, transparent);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 0 16px color-mix(in srgb, var(--service-color) 25%, transparent);
}

.service-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-card-body {
    padding: 14px 22px 22px;
}

.service-card-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.75;
}

.service-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--service-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

/* ===== KULLANIM KOSULLARI (TERMS) PAGE ===== */
.terms-page {
    padding: 24px 0 40px;
}

.terms-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--gradient-header);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.terms-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary));
    background-size: 200% 100%;
    animation: rgbBorder 3s linear infinite;
}

.terms-hero-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-red);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-red);
}

.terms-hero-text h2 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.terms-hero-text p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-section {
    animation: fadeInUp 0.4s ease both;
}

.terms-section:nth-child(1) { animation-delay: 0.02s; }
.terms-section:nth-child(2) { animation-delay: 0.04s; }
.terms-section:nth-child(3) { animation-delay: 0.06s; }
.terms-section:nth-child(4) { animation-delay: 0.08s; }
.terms-section:nth-child(5) { animation-delay: 0.1s; }
.terms-section:nth-child(6) { animation-delay: 0.12s; }
.terms-section:nth-child(7) { animation-delay: 0.14s; }
.terms-section:nth-child(8) { animation-delay: 0.16s; }
.terms-section:nth-child(9) { animation-delay: 0.18s; }
.terms-section:nth-child(10) { animation-delay: 0.2s; }
.terms-section:nth-child(11) { animation-delay: 0.22s; }
.terms-section:nth-child(12) { animation-delay: 0.24s; }
.terms-section:nth-child(13) { animation-delay: 0.26s; }
.terms-section:nth-child(14) { animation-delay: 0.28s; }

.terms-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.terms-section-title i {
    color: var(--red-primary);
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.terms-section-title h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.terms-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: box-shadow var(--transition-normal);
}

.terms-card:hover {
    box-shadow: var(--shadow-md);
}

.terms-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.terms-card p:last-child {
    margin-bottom: 0;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.terms-list li i {
    color: var(--accent-green);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.terms-list-warning li i {
    color: var(--red-primary);
}

/* Terms Note */
.terms-note {
    margin-top: 12px !important;
    padding: 12px 16px;
    background: rgba(220, 38, 38, 0.06);
    border-left: 3px solid var(--red-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.85rem !important;
}

.terms-note i {
    color: var(--accent-amber);
    margin-right: 6px;
}

/* Terms Contact Box */
.terms-contact-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 22px;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.terms-contact-box i {
    color: var(--red-primary);
}

.terms-contact-box a {
    color: var(--text-primary);
    font-weight: 600;
}

.terms-contact-box a:hover {
    color: var(--red-light);
}

/* ===== HAKKIMIZDA (ABOUT) PAGE ===== */
.about-page {
    padding: 24px 0 40px;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--gradient-header);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--red-primary), 
        var(--accent-orange), 
        var(--accent-purple), 
        var(--accent-cyan), 
        var(--red-primary));
    background-size: 200% 100%;
    animation: rgbBorder 3s linear infinite;
}

.about-hero-logo {
    flex-shrink: 0;
}

.about-logo-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-red);
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.about-hero-text h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.about-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.about-section-header i {
    color: var(--red-primary);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-md);
}

.about-section-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: box-shadow var(--transition-normal);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Social Bar */
.about-social-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.about-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.about-social-btn.facebook {
    background: #1877f2;
}

.about-social-btn.twitter {
    background: #1da1f2;
}

.about-social-btn.linkedin {
    background: #0a66c2;
}

.about-social-btn.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Contact Card */
.contact-card {
    text-align: center;
}

.contact-intro {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 16px !important;
}

.contact-email-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-email-box:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-red);
}

.contact-email-box i {
    color: var(--red-primary);
    font-size: 1.1rem;
}

.contact-email-box a {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-email-box a:hover {
    color: var(--red-light);
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-quick-list {
    list-style: none;
}

.about-quick-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.about-quick-list li:last-child {
    border-bottom: none;
}

.about-quick-list li i {
    color: var(--red-primary);
    font-size: 0.9rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.about-quick-list li div {
    display: flex;
    flex-direction: column;
}

.about-quick-list li strong {
    font-size: 0.82rem;
    color: var(--text-primary);
}

.about-quick-list li span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mission-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .forum-layout {
        grid-template-columns: 1fr;
    }
    
    .forum-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 13px;
    }

    .header-inner {
        flex-direction: column;
        text-align: center;
        padding: 14px;
        gap: 12px;
    }

    .logo-area {
        justify-content: center;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .header-search {
        max-width: 100%;
        width: 100%;
    }

    .header-actions {
        display: none;
    }

    /* Nav: horizontal scroll, no overflow */
    .main-nav {
        overflow: hidden;
    }

    .nav-inner {
        padding: 0 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .nav-link i {
        display: none;
    }

    /* Services */
    .services-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .services-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .services-hero-text h2 {
        font-size: 1.15rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-intro {
        padding: 18px;
    }

    .service-card-header {
        padding: 16px 16px 0;
    }

    .service-card-body {
        padding: 12px 16px 16px;
    }

    /* Terms */
    .terms-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .terms-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .terms-hero-text h2 {
        font-size: 1.1rem;
    }

    .terms-card {
        padding: 16px;
    }

    .terms-section-title h3 {
        font-size: 0.95rem;
    }

    /* Welcome Banner */
    .welcome-banner {
        flex-direction: column;
        text-align: center;
        padding: 18px 14px;
        gap: 16px;
    }

    .welcome-content h2 {
        font-size: 1.1rem;
    }

    .welcome-content p {
        font-size: 0.82rem;
    }

    .welcome-stats {
        justify-content: center;
        gap: 10px;
    }

    .stat-item {
        padding: 8px 12px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    /* Forum threads */
    .category-stats-header {
        display: none;
    }

    .thread-count,
    .thread-last {
        display: none;
    }

    .thread-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .thread-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .thread-title {
        font-size: 0.84rem;
    }

    .thread-meta {
        font-size: 0.7rem;
        gap: 8px;
    }

    .thread-pages {
        display: none;
    }

    .category-header {
        padding: 12px 14px;
    }

    .category-title {
        gap: 8px;
    }

    .category-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .category-title h2 {
        font-size: 0.9rem;
    }

    .category-desc {
        display: none;
    }

    /* Sidebar */
    .forum-sidebar {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    /* Modals */
    .modal-container {
        width: 95vw;
        max-height: 85vh;
    }

    .modal-body {
        padding: 18px;
    }

    .modal-header {
        padding: 14px 18px;
    }

    /* About Page */
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-logo-img {
        width: 80px;
        height: 80px;
    }

    .about-hero-text h2 {
        font-size: 1.3rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        grid-template-columns: 1fr;
    }

    .about-social-bar {
        flex-direction: column;
    }

    .about-social-btn {
        justify-content: center;
    }

    .about-card {
        padding: 18px;
    }

    .contact-email-box {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Badges compact */
    .badge {
        font-size: 0.58rem;
        padding: 1px 5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .welcome-stats {
        flex-direction: column;
        gap: 8px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-area {
        gap: 10px;
    }

    .top-bar-right {
        gap: 10px;
    }

    .top-link {
        font-size: 0.72rem;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .search-form input {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .search-form button {
        padding: 8px 12px;
    }

    .thread-icon {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .thread-title {
        font-size: 0.78rem;
        gap: 4px;
    }

    .thread-row {
        padding: 8px 10px;
        gap: 8px;
    }

    .category-header {
        padding: 10px 12px;
    }

    .pin-icon {
        display: none;
    }

    .about-hero {
        padding: 16px;
    }

    .about-logo-img {
        width: 64px;
        height: 64px;
    }

    .about-hero-text h2 {
        font-size: 1.1rem;
    }

    .about-subtitle {
        font-size: 0.85rem;
    }

    .about-section-header h3 {
        font-size: 1rem;
    }

    .about-card {
        padding: 14px;
    }

    .about-card p {
        font-size: 0.82rem;
    }

    .form-group input {
        padding: 9px 10px;
        font-size: 0.82rem;
    }

    .btn-submit {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* ===== ENHANCED REGISTER MODAL ===== */
.modal-register-extended {
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-register-extended .modal-body {
    max-height: calc(90vh - 60px);
    overflow-y: auto;
    padding-right: 12px;
}

.modal-register-extended .modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-register-extended .modal-body::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
}

.modal-register-extended .modal-body::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 10px;
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.form-hint i {
    margin-right: 4px;
    color: var(--accent-amber);
}

.form-hint strong {
    color: var(--red-light);
    font-weight: 700;
}

/* Captcha */
.captcha-group .captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
}

.captcha-question {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cyan);
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
}

.captcha-refresh {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.captcha-refresh:hover {
    color: var(--red-primary);
    transform: rotate(180deg);
}

/* Date input fix for dark theme */
input[type="date"] {
    color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-register-extended {
        max-width: 95%;
        max-height: 85vh;
    }

    .captcha-question {
        font-size: 0.82rem;
    }
}

/* ===== SON ÜYE OLAN KULLANICILAR ===== */
.new-members-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.new-member-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.new-member-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.new-member-item:first-child {
    padding-top: 0;
}

.new-member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.new-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-member-info {
    flex: 1;
    min-width: 0;
}

.new-member-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-member-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-member-date i {
    font-size: 0.6rem;
}

.new-member-badge {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    flex-shrink: 0;
}

/* Activity item düzeltmeleri */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-item:first-child {
    padding-top: 0;
}

.activity-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
}

.activity-text {
    flex: 1;
    min-width: 0;
}

.activity-text a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.82rem;
}

/* ===== SEARCH DROPDOWN ===== */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(220, 38, 38, 0.1);
    z-index: 9999;
    max-height: 420px;
    overflow-y: auto;
    animation: searchDropIn 0.2s ease;
}

@keyframes searchDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.15s ease;
    cursor: pointer;
}

.search-result-item:hover,
.search-result-item.active {
    background: rgba(220, 38, 38, 0.12);
    padding-left: 20px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.sri-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(220,38,38,0.2), rgba(185,28,28,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ef4444;
    font-size: 0.9rem;
}

.sri-info {
    flex: 1;
    min-width: 0;
}

.sri-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sri-title mark {
    background: rgba(220, 38, 38, 0.35);
    color: #fca5a5;
    padding: 0 2px;
    border-radius: 3px;
}

.sri-meta {
    display: flex;
    gap: 12px;
    margin-top: 3px;
}

.sri-category, .sri-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sri-category i, .sri-date i { font-size: 0.65rem; }

.search-no-result {
    padding: 20px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-more {
    padding: 12px 16px;
    text-align: center;
    color: #ef4444;
    font-size: 0.82rem;
    cursor: pointer;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-more:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #fca5a5;
}

/* ===== SEARCH RESULTS OVERLAY (Modal) ===== */
.search-results-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.search-results-overlay.active {
    opacity: 1;
}

.search-results-modal {
    background: var(--bg-card);
    border: 1px solid rgba(220,38,38,0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(220,38,38,0.08);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.search-results-overlay.active .search-results-modal {
    transform: translateY(0);
}

.srm-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(220,38,38,0.08), transparent);
}

.srm-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.srm-header h3 i { color: #ef4444; }

.srm-query {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 1;
}

.srm-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.srm-close:hover {
    background: rgba(220,38,38,0.2);
    color: #ef4444;
    border-color: rgba(220,38,38,0.4);
}

.srm-body {
    padding: 8px 0;
    max-height: 500px;
    overflow-y: auto;
}

.srm-item {
    display: flex;
    gap: 14px;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all 0.15s ease;
}

.srm-item:hover {
    background: rgba(220,38,38,0.08);
    padding-left: 28px;
}

.srm-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(185,28,28,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ef4444;
    font-size: 1.1rem;
}

.srm-item-right {
    flex: 1;
    min-width: 0;
}

.srm-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.srm-item-title mark {
    background: rgba(220,38,38,0.35);
    color: #fca5a5;
    padding: 0 3px;
    border-radius: 3px;
}

.srm-item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.srm-item-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.srm-item-meta span {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.srm-item-meta i {
    font-size: 0.65rem;
    color: rgba(220,38,38,0.5);
}

.srm-empty {
    padding: 50px 24px;
    text-align: center;
    color: var(--text-muted);
}

.srm-empty h4 {
    margin: 0 0 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.srm-empty p {
    font-size: 0.85rem;
    margin: 0;
}

/* ===== CLICKABLE TAGS ===== */
.thread-tag {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.thread-tag:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.thread-tag:active {
    transform: scale(0.96);
}

/* ===== SHOW MORE BUTTON ===== */
.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    color: #ef4444;
    font-size: 0.82rem;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.04);
    transition: all 0.2s ease;
    user-select: none;
}

.show-more-btn:hover {
    background: rgba(220, 38, 38, 0.08);
    color: #fca5a5;
}

.show-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.show-more-btn:hover i {
    transform: translateY(2px);
}

.show-more-count {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.activity-show-more {
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 10px 12px;
    font-size: 0.78rem;
}

/* ===== MOBILE RESPONSIVE - KAPSAMLI ===== */
@media (max-width: 768px) {

    /* --- SEARCH DROPDOWN --- */
    .search-dropdown {
        max-height: 70vh;
        border-radius: 0 0 14px 14px;
        position: fixed;
        top: auto;
        left: 8px;
        right: 8px;
        z-index: 99999;
    }

    .search-result-item {
        padding: 14px 14px;
        gap: 10px;
    }

    .search-result-item:hover,
    .search-result-item.active {
        padding-left: 14px;
        background: rgba(220, 38, 38, 0.15);
    }

    .sri-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sri-title {
        font-size: 0.9rem;
    }

    .sri-meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    .search-no-result {
        padding: 24px 14px;
        font-size: 0.88rem;
    }

    .search-more {
        padding: 14px;
        font-size: 0.85rem;
    }

    /* --- SEARCH / TAG RESULTS MODAL --- */
    .search-results-overlay {
        padding: 12px 8px;
        align-items: flex-start;
    }

    .search-results-modal {
        border-radius: 14px;
        max-width: 100%;
        width: 100%;
    }

    .srm-header {
        padding: 14px 16px;
        gap: 8px;
    }

    .srm-header h3 {
        font-size: 1rem;
        gap: 6px;
    }

    .srm-query {
        font-size: 0.75rem;
        width: 100%;
    }

    .srm-close {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .srm-body {
        max-height: 65vh;
        padding: 4px 0;
    }

    .srm-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .srm-item:hover {
        padding-left: 16px;
    }

    .srm-item-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .srm-item-title {
        font-size: 0.92rem;
    }

    .srm-item-desc {
        font-size: 0.78rem;
    }

    .srm-item-meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .srm-item-meta span {
        font-size: 0.72rem;
    }

    .srm-empty {
        padding: 40px 20px;
    }

    .srm-empty h4 {
        font-size: 1rem;
    }

    /* --- SHOW MORE BUTTON --- */
    .show-more-btn {
        padding: 14px 16px;
        font-size: 0.85rem;
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(220,38,38,0.15);
    }

    .activity-show-more {
        padding: 12px 14px;
        font-size: 0.82rem;
        min-height: 44px;
    }

    /* --- THREAD TAGS (tıklanabilir) --- */
    .thread-tag {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(220,38,38,0.2);
        min-height: 32px;
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .thread-tag:active {
        transform: scale(0.92);
        filter: brightness(1.3);
    }

    /* --- FORUM LAYOUT --- */
    .forum-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- SIDEBAR --- */
    .forum-sidebar {
        order: 2;
    }

    .sidebar-panel {
        border-radius: 12px;
    }

    .panel-header {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .activity-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .activity-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .activity-text a {
        font-size: 0.85rem !important;
    }

    /* --- CATEGORY HEADER --- */
    .category-title h2 a,
    .category-title h2 {
        font-size: 0.88rem;
    }

    /* --- THREAD ROW --- */
    .thread-info {
        min-width: 0;
        overflow: hidden;
    }

    .thread-title .badge {
        font-size: 0.55rem;
        padding: 1px 4px;
        vertical-align: middle;
    }

    /* --- WELCOME BANNER --- */
    .welcome-banner {
        border-radius: 12px;
    }

    .welcome-content h2 {
        font-size: 1rem;
    }

    /* --- CONTAINER PADDING --- */
    .container {
        padding: 0 8px;
    }

    /* --- BREADCRUMB --- */
    .breadcrumb-inner {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 480px) {
    .search-results-overlay {
        padding: 6px 4px;
    }

    .search-results-modal {
        border-radius: 12px;
    }

    .srm-header {
        padding: 12px 14px;
    }

    .srm-header h3 {
        font-size: 0.92rem;
    }

    .srm-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .srm-item-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .srm-item-title {
        font-size: 0.85rem;
    }

    .search-result-item {
        padding: 12px;
    }

    .sri-icon {
        width: 34px;
        height: 34px;
    }

    .show-more-btn {
        font-size: 0.82rem;
        padding: 12px 14px;
    }

    .thread-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
        min-height: 28px;
    }
}

/* ===== MAIN MAINTENANCE LOCK ===== */
.maintenance-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.maintenance-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
    position: relative;
    overflow: hidden;
}
.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #dc2626, #f59e0b, #dc2626);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}
.maintenance-icon {
    font-size: 4.5rem;
    color: var(--red-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(220,38,38,0.4));
    animation: pulseIcon 2s infinite ease-in-out;
}
@keyframes pulseIcon {
    0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(220,38,38,0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(220,38,38,0.7)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(220,38,38,0.4)); }
}
.maintenance-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.maintenance-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}
.maintenance-alert {
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.3);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 30px;
}
.btn-m-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff !important;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 12px;
}
.btn-m-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220,38,38,0.3);
}
.btn-m-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--text-primary) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-m-secondary:hover {
    background: rgba(255,255,255,0.1);
}
.modal-overlay.register-override {
    z-index: 999995 !important;
}
