/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Initially hide login pages */
#loginPage,
#registerPage,
#forgotPasswordPage {
    display: none !important;
}

/* Colors */
:root {
    --woob-red: #de3434;
    --woob-dark: #272727;
    --woob-blue: #1582e2;
    --woob-gray: #909090;
    --woob-light: #f5f5f5;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.striped-bg {
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

/* Login Page */
.login-page {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Alert Messages */
.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ef4444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-container {
    background: white;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    overflow: hidden;
}

.register-container {
    max-width: 900px;
}

.forgot-container {
    max-width: 700px;
}

.login-left {
    width: 33.333%;
    background-color: var(--woob-red);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.logo-large {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.logo-dark {
    color: var(--woob-dark);
}

.login-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.font-bold {
    font-weight: bold;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn:hover {
    background: white;
    color: var(--woob-red);
}

.login-right {
    width: 66.667%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h2 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.forgot-description {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.form-group input {
    width: 100%;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.875rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--woob-red);
}

.forgot-password {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.forgot-password a {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
}

.terms-check {
    margin-bottom: 1rem;
}

.terms-check label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #4b5563;
    cursor: pointer;
}

.terms-check input[type="checkbox"] {
    margin-top: 0.125rem;
    cursor: pointer;
}

.terms-check span {
    line-height: 1.4;
}

.info-message {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-message i {
    color: #3b82f6;
}

.forgot-icon {
    margin-top: 1rem;
    font-size: 4rem;
    color: white;
    opacity: 0.3;
}

.btn-back {
    background: #6b7280;
    color: white;
}

.btn-back:hover {
    background: #4b5563;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.btn-login, .btn-register {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: var(--woob-dark);
    color: white;
}

.btn-login:hover {
    background: black;
}

.btn-register {
    background: var(--woob-red);
    color: white;
}

.btn-register:hover {
    background: #c02a2a;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    color: var(--woob-red);
    font-weight: 900;
    font-size: 1.875rem;
    font-style: italic;
    letter-spacing: -2px;
    cursor: pointer;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-toggle {
    display: none;
    background: var(--woob-dark);
    color: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.125rem;
}

.mobile-menu-toggle:hover {
    background: black;
}

.btn-new-post, .btn-random {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-new-post {
    background: var(--woob-red);
    color: white;
}

.btn-new-post:hover {
    background: #c02a2a;
}

.btn-random {
    background: var(--woob-dark);
    color: white;
}

.btn-random:hover {
    background: black;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #4b5563;
    margin-left: 1rem;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--woob-red);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.social-icons i {
    cursor: pointer;
}

.social-icons .fa-instagram:hover {
    color: var(--woob-red);
}

.social-icons .fa-facebook:hover {
    color: var(--woob-blue);
}

.social-icons .fa-whatsapp:hover {
    color: #10b981;
}

.header-divider {
    width: 1px;
    height: 2rem;
    background: #e5e7eb;
    margin: 0 0.5rem;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icons i {
    position: relative;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 8px;
}

.header-icons i:hover {
    color: var(--woob-red);
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.header-icons i::after {
    content: attr(data-count);
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--woob-red);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 1.25rem;
    text-align: center;
    display: none;
}

.header-icons i[data-count]:not([data-count="0"])::after {
    display: block;
}

/* Guest Buttons */
.guest-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-login-header {
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #d32f2f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-login-header:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-actions i {
    color: #4b5563;
    cursor: pointer;
}

/* User Dropdown */
.user-dropdown-wrapper {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    transition: background 0.3s;
}

.user-profile:hover {
    background: #f3f4f6;
}

.user-profile img {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid #e5e7eb;
}

.user-name {
    font-weight: bold;
    font-size: 0.75rem;
    color: black;
}

.dropdown-arrow {
    font-size: 0.625rem;
    color: #6b7280;
    transition: transform 0.3s;
}

.user-dropdown-menu.show .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    background: var(--woob-dark);
    border-radius: 8px 8px 0 0;
    color: white;
}

.dropdown-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid var(--woob-red);
    flex-shrink: 0;
}

.dropdown-user-info {
    flex: 1;
}

.dropdown-username {
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.dropdown-badge {
    font-size: 0.625rem;
    background: var(--woob-red);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    margin-left: 0.25rem;
}

.dropdown-stats {
    font-size: 0.625rem;
    color: #d1d5db;
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0;
}

.dropdown-menu-items {
    padding: 0.5rem 0;
}

.dropdown-menu-items a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.dropdown-menu-items a:hover {
    background: #f9fafb;
    color: var(--woob-red);
}

.dropdown-menu-items a i {
    width: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.dropdown-menu-items a.highlight {
    color: var(--woob-red);
}

.dropdown-menu-items a.logout {
    color: #dc2626;
}

.dropdown-menu-items a.logout:hover {
    background: #fef2f2;
}

/* Main Content */
.main-content {
    padding: 1.5rem 1rem;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .layout-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.content-column {
    min-width: 0;
}

.sidebar-column {
    min-width: 0;
}

/* Page Content */
.page-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Welcome Banner */
.welcome-banner {
    background: var(--woob-red);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.welcome-banner h1 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.welcome-banner p {
    font-size: 0.75rem;
    opacity: 0.9;
    max-width: 48rem;
    margin: 0 auto;
}

/* Trending Grid */
.trending-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.trending-grid::-webkit-scrollbar {
    display: none;
}

.trending-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.4);
    width: 160px;
    height: 220px;
    flex-shrink: 0;
    border: 1px solid rgba(31, 41, 55, 0.5);
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .trending-card {
        width: 180px;
        height: 240px;
    }
}

.trending-card::before {
   /*  content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
   background-image: repeating-linear-gradient(
        -45deg,
        var(--woob-red),
        var(--woob-red) 5px,
        #ffffff 5px,
        #ffffff 10px
    ); 
    z-index: 3;
    border-bottom: 1px solid rgba(185, 28, 28, 0.2);*/
}

.trending-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.trending-card:hover > img {
    transform: scale(1.1);
}

.trending-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(187 19 19), rgb(220 38 38 / 46%) 35%, #00000070);
    opacity: 0.9;
    z-index: 1;
}

.trending-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0.75rem;
    text-align: center;
    z-index: 2;
}

.trending-author {
    font-size: 0.625rem;
    font-weight: bold;
    color: white;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.trending-title {
    font-size: 1rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 2px rgba(0,0,0,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
@media (min-width: 768px) {
    .trending-title { font-size: 1.125rem; }
}

.trending-icon {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    opacity: 0.2;
}

/* Trend Section Header */
.trend-section { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.trend-header { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.trend-title-box {position: relative; /* Sözde elementi konumlandırmak için gereklidir */
    overflow: hidden;   /* Efektin kutu dışına taşmasını engellemek için */ background: var(--woob-red); color: #fff; padding: 0.5rem 1rem; display:flex; align-items:center; gap:0.5rem; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; font-style: italic; }
.trend-title-box::after {
   /*   content: '';
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 15%;
    pointer-events: none;
    background: linear-gradient(to right, rgb(255 255 255 / 47%) 0%, rgb(255 255 255 / 47%) 100% /* Sol uç: Beyaz ve tam saydam (ortaya doğru) *//*);
  /*  transform: skewX(303deg);
    transform-origin: right; */
}
.trend-title-box .fa-fire { animation: flamePulse 1.2s ease-in-out infinite; }
@keyframes flamePulse { 0%,100%{ transform: scale(1); opacity:1;} 50%{ transform: scale(1.1); opacity:0.85;} }
.trend-controls { display:flex; gap:0.5rem; margin-left: auto; }
.trend-nav-btn { background:#fff; color: var(--woob-red); border:2px solid var(--woob-red); border-radius: 9999px; width: 36px; height: 36px; display:flex; align-items:center; justify-content:center; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.trend-nav-btn:hover { background: var(--woob-red); color: #fff; }.trend-tickers { display:flex; flex-direction: column; gap: 0.5rem; width:100%; flex-basis: 100%; order: 3; }
@media (min-width: 640px) { .trend-tickers { flex-direction: row; } }

.ticker { display:flex; align-items:center; color:#fff; border-radius: 9999px; padding: 0.25rem 0.75rem; height: 2rem; overflow:hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.ticker.black { background:#1a1a1a; }
.ticker.blue { background:#1e88e5; }
.ticker-icon { margin-right: 0.5rem; display:flex; align-items:center; }
.ticker-content { flex:1; overflow:hidden; position:relative; }
.ticker-scroll { display:inline-flex; white-space: nowrap; animation: tickerLeft 15s linear infinite; }
.ticker-scroll span { padding-right: 2rem; font-size: 12px; font-weight: 600; }
@keyframes tickerLeft { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }

.trending-stats { position: absolute; top: 30px; right: 8px; background: rgba(0,0,0,0.5); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.2); z-index: 30; }
.trending-stats .fa-eye { font-size: 12px; opacity: 0.9; }
.trending-author-box { display:flex; align-items:center; gap: 6px; background: rgba(0,0,0,0.4); padding: 4px 12px 4px 4px; border-radius: 9999px; margin-bottom: 0.5rem; border: 1px solid rgba(255,255,255,0.2); }
.trending-author-avatar { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.5); }
.trending-author-name { color: #fff; font-size: 11px; font-weight: 700; text-decoration: none; }
@media (min-width: 768px) {
    .trending-author-avatar { width: 24px; height: 24px; }
}

/* Info Bar */
.info-bar {
    background: var(--woob-red);
    color: white;
    font-size: 0.625rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

/* Forum Section */
.forum-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    background: var(--woob-dark);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.section-header.red {
    background: var(--woob-red);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.section-header i.fa-times {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.5;
}

.section-header i.fa-times:hover {
    opacity: 1;
}

.header-actions {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.5625rem;
    cursor: pointer;
}

.badge.blue {
    background: #60a5fa;
}

.badge.blue-dark {
    background: #3b82f6;
}

.badge.red {
    background: var(--woob-red);
}

/* Category List */
.category-list {
    border-top: 1px solid #f3f4f6;
}

.category-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f3f4f6;
}

.category-item:hover {
    background: #f9fafb;
}

.category-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 0.75rem;
    font-weight: bold;
    color: #374151;
}

.category-info p {
    font-size: 0.625rem;
    color: #6b7280;
}

.category-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.625rem;
    color: #9ca3af;
    font-weight: 600;
}

.category-stats div {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.category-last {
    display: none;
    width: 12rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .category-last {
        display: block;
    }
}

.last-user {
    font-size: 0.625rem;
    font-weight: bold;
    color: #4b5563;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.last-topic {
    font-size: 0.5625rem;
    color: #9ca3af;
}

/* Ad Space */
.ad-space {
    background: var(--woob-red);
    height: 5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    color: white;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 900;
}

.ad-icon {
    font-size: 2.25rem;
    opacity: 0.5;
    margin-right: 0.5rem;
}

/* Forum Items */
.forum-items {
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.forum-item {
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid transparent;
    transition: background 0.3s;
    cursor: pointer;
}

.forum-item:hover {
    background: #f9fafb;
}

.forum-item.special {
    background: #fef2f2;
    border-left-color: var(--woob-red);
}

.forum-item.gray {
    background: #f9fafb;
}

.forum-item.blue-bg {
    background: #eff6ff;
    border-left-color: var(--woob-blue);
}

.forum-item.blue-border {
    background: white;
    border-left-color: var(--woob-blue);
}

.forum-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* Renk inline style ile gelecek, varsayılan yok */
}

.forum-item-icon.white {
    background: white;
    color: #374151;
    font-size: 1.5rem;
    border: 1px solid #e5e7eb;
}

.forum-item-icon.white.blue-text {
    color: var(--woob-blue);
}

.forum-item-icon.dark {
    background: var(--woob-dark);
    color: white;
    font-size: 1.125rem;
}

.forum-item-icon.blue {
    background: var(--woob-blue);
    color: white;
    font-size: 1.25rem;
}

.forum-item-icon.red {
    background: white;
    color: var(--woob-red);
    border: 1px solid #fee2e2;
}

.forum-item-content {
    flex: 1;
}

.forum-item-content h3 {
    font-size: 0.75rem;
    font-weight: bold;
    /* Renk inline style ile gelecek */
}

.forum-item-content p {
    font-size: 0.625rem;
    color: #6b7280;
}

/* Subforums Container */
.subforums-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e5e7eb;
}

.subforum-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.subforum-item:hover {
    background: white;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subforum-item i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.forum-item-content .title {
    font-size: 0.75rem;
    font-weight: bold;
    color: #1f2937;
}

.forum-item-content .title.blue-text {
    color: var(--woob-blue);
}

.forum-item-content .desc {
    font-size: 0.625rem;
    color: #6b7280;
}

.forum-item-last {
    text-align: right;
    display: none;
}

@media (min-width: 640px) {
    .forum-item-last {
        display: block;
    }
}

.forum-item-last div:first-child {
    font-size: 0.625rem;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.forum-item-last .time {
    font-size: 0.5625rem;
    color: #9ca3af;
}

.forum-item-last.bordered {
    border-left: 1px solid #e5e7eb;
    padding-left: 0.75rem;
}

.last-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 2px solid white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.section-divider {
    background: var(--woob-dark);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.section-divider.blue {
    background: var(--woob-blue);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

/* Page Banner */
.page-banner {
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page-banner.dark {
    background: var(--woob-dark);
    color: white;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.page-banner.red {
    background: var(--woob-red);
    color: white;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.page-banner h1 {
    font-size: 1.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb {
    margin-top: 0.5rem;
    display: inline-block;
    background: var(--woob-red);
    font-size: 0.625rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: white;
    opacity: 0.9;
}

.page-banner.dark .breadcrumb {
    background: var(--woob-red);
}

.page-banner.red .breadcrumb {
    background: var(--woob-dark);
}

/* Action Bar */
.action-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-action.red {
    background: var(--woob-red);
    color: white;
}

.btn-action.red:hover {
    background: #c02a2a;
}

.btn-action.white {
    background: white;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.btn-action.white:hover {
    background: #f9fafb;
}

/* Threads List */
.threads-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.threads-header {
    background: white;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.75rem;
    display: flex;
    font-size: 0.5625rem;
    font-weight: bold;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.col-title {
    flex: 1;
}

.col-replies {
    width: 6rem;
    text-align: center;
    display: none;
}

@media (min-width: 640px) {
    .col-replies {
        display: block;
    }
}

.col-last {
    width: 8rem;
    text-align: right;
    display: none;
}

@media (min-width: 640px) {
    .col-last {
        display: block;
    }
}

.thread-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f3f4f6;
}

.thread-item:hover {
    background: #f9fafb;
}

.thread-item.locked {
    background: #f9fafb;
}

.thread-icon {
    margin-right: 1rem;
    position: relative;
}

.thread-icon > i {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--woob-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.thread-icon.gray > i {
    background: #d1d5db;
}

.notification-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--woob-blue);
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    border: 2px solid white;
}

.thread-content {
    flex: 1;
    min-width: 0;
}

.thread-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.thread-badges h3 {
    font-size: 0.75rem;
    font-weight: bold;
    color: #4b5563;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.thread-item:hover .thread-badges h3 {
    color: var(--woob-red);
}

.thread-meta {
    font-size: 0.625rem;
    color: #9ca3af;
}

.thread-stats {
    width: 6rem;
    text-align: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: bold;
}

@media (min-width: 640px) {
    .thread-stats {
        display: flex;
    }
}

.thread-stats i {
    color: #d1d5db;
}

.thread-last {
    width: 8rem;
    text-align: right;
    padding-left: 1rem;
    display: none;
}

@media (min-width: 640px) {
    .thread-last {
        display: block;
    }
}

.last-time {
    font-size: 0.625rem;
    font-weight: bold;
    color: #6b7280;
}

.last-user {
    font-size: 0.5625rem;
    color: #9ca3af;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    font-weight: bold;
    color: #6b7280;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-num {
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.page-num:hover {
    background: #f3f4f6;
}

.page-num.active {
    background: var(--woob-red);
    color: white;
}

.page-controls {
    display: flex;
    gap: 0.5rem;
}

.page-controls select {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    outline: none;
    font-size: 0.625rem;
}

/* Thread Controls */
.thread-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    font-size: 0.625rem;
    font-weight: bold;
    color: #6b7280;
}

.control-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-control {
    padding: 0.25rem 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-control.dark {
    background: var(--woob-dark);
}

.btn-control.dark:hover {
    background: black;
}

.btn-control.red {
    background: var(--woob-red);
}

.btn-control.red:hover {
    background: #c02a2a;
}

.btn-control.blue {
    background: var(--woob-blue);
}

.btn-control.blue:hover {
    background: #1165b8;
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .post-item {
        flex-direction: row;
    }
}

.post-author {
    width: 100%;
    background: #f9fafb;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f3f4f6;
    position: relative;
}

@media (min-width: 768px) {
    .post-author {
        width: 12rem;
    }
}

.online-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 9999px;
    border: 2px solid white;
}

.online-indicator.offline {
    background: #9ca3af;
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: 4px solid white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
}

.author-name {
    font-weight: bold;
    font-size: 0.875rem;
    color: var(--woob-red);
    margin-bottom: 0.25rem;
    cursor: pointer;
}

.author-name:hover {
    text-decoration: underline;
}

.author-badge {
    padding: 0.125rem 0.75rem;
    border-radius: 4px;
    font-size: 0.5625rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.author-badge.red {
    background: var(--woob-red);
}

.author-badge.dark {
    background: var(--woob-dark);
}

.author-stats {
    font-size: 0.5625rem;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    text-align: left;
    padding-left: 1rem;
}

.post-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-header {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    color: #9ca3af;
}

.post-actions {
    display: flex;
    gap: 0.75rem;
}

.post-actions i {
    cursor: pointer;
    transition: color 0.3s;
}

.post-actions .fa-heart:hover {
    color: var(--woob-red);
}

.post-actions .fa-reply:hover {
    color: var(--woob-blue);
}

.post-actions .fa-quote-right:hover {
    color: var(--woob-dark);
}

.post-actions .fa-exclamation-triangle:hover {
    color: #eab308;
}

.post-number {
    font-weight: bold;
}

.post-content {
    padding: 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    min-height: 150px;
}

/* Post içeriğindeki linkler */
.post-content a {
    color: #1582e2;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 1px;
}

.post-content a:hover {
    color: #0f5fb3;
    border-bottom-color: #1582e2;
}

.post-content a:visited {
    color: #c72a2a;
}

/* Dış linkler için ikon */
.post-content a[target="_blank"]::after {
    content: "\f35d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7em;
    margin-left: 0.3em;
    opacity: 0.6;
}

/* Resim linkleri için ikon gösterme */
.post-content a img {
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.post-content a:hover img {
    border-color: #1582e2;
    box-shadow: 0 2px 8px rgba(21, 130, 226, 0.2);
}

/* Post içeriğindeki yatay çizgi (HR) */
.post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #de3434, transparent);
    margin: 1.5rem 0;
    position: relative;
}

.post-content hr::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #de3434;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #de3434;
}

.post-signature {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
    text-align: center;
}

.post-signature img {
    margin: 0 auto;
    border-radius: 4px;
    opacity: 0.8;
    max-width: 100%;
}

.signature-links {
    font-size: 0.625rem;
    color: var(--woob-blue);
    margin-top: 0.5rem;
}

.post-quote {
    margin-top: 1.5rem;
    background: #f9fafb;
    padding: 1rem;
    border-left: 4px solid var(--woob-gray);
    font-style: italic;
    font-size: 0.75rem;
    color: #6b7280;
}

.quote-author {
    font-weight: bold;
    display: block;
    margin-top: 0.25rem;
    text-align: right;
}

.post-footer {
    padding: 0.75rem;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-footer i {
    color: var(--woob-red);
}

.post-footer strong {
    color: #374151;
}

/* Quick Reply */
.quick-reply {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reply-header {
    background: var(--woob-red);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.reply-content {
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.reply-options {
    display: none;
    width: 12rem;
    font-size: 0.625rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .reply-options {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}

.reply-options h4 {
    font-weight: bold;
    color: #374151;
}

.reply-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.reply-form {
    flex: 1;
}

.reply-form textarea {
    width: 100%;
    height: 8rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.875rem;
    resize: none;
}

.reply-form textarea:focus {
    outline: none;
    border-color: var(--woob-red);
}

.reply-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.btn-reply {
    padding: 0.375rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reply.dark {
    background: var(--woob-dark);
}

.btn-reply.dark:hover {
    background: black;
}

.btn-reply.gray {
    background: #6b7280;
}

.btn-reply.gray:hover {
    background: #4b5563;
}

/* Profile Page */
.profile-header {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.profile-cover {
    height: 8rem;
    background: var(--woob-red);
    position: relative;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.profile-info {
    padding: 0 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: -3rem;
}

@media (min-width: 768px) {
    .profile-info {
        flex-direction: row;
        align-items: flex-end;
    }
}

.profile-avatar-wrap {
    position: relative;
}

.profile-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: white;
}

.online-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #10b981;
    border-radius: 9999px;
    border: 2px solid white;
}

.online-badge.offline {
    background: #9ca3af;
}

.profile-details {
    flex: 1;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .profile-details {
        text-align: left;
    }
}

.profile-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .profile-name {
        justify-content: flex-start;
    }
}

.profile-name h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
}

.profile-badge {
    background: var(--woob-dark);
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.profile-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .profile-social {
        justify-content: flex-start;
    }
}

.profile-social i {
    padding: 0.25rem;
    background: #f3f4f6;
    border-radius: 4px;
    cursor: pointer;
}

.profile-social .fa-steam:hover {
    color: var(--woob-blue);
}

.profile-social .fa-discord:hover {
    color: #5865f2;
}

.profile-social .fa-spotify:hover {
    color: #1db954;
}

.profile-path {
    background: var(--woob-dark);
    color: white;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.profile-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
}

.tab:hover {
    color: var(--woob-dark);
}

.tab.active {
    color: var(--woob-red);
    background: #fef2f2;
}

.activity-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.activity-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #f3f4f6;
}

.activity-item:hover {
    background: #f9fafb;
}

.activity-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    opacity: 0.8;
    margin-right: 1rem;
}

.activity-title {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
}

.activity-time {
    font-size: 0.625rem;
    color: #9ca3af;
}

.profile-more {
    text-align: center;
}

.btn-more {
    background: var(--woob-red);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-more:hover {
    background: #c02a2a;
}

/* Sidebar */
.sidebar-search {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar-search-header {
    background: var(--woob-blue);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.sidebar-search-content {
    padding: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.search-input-wrapper input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.8125rem;
    background: #f9fafb;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--woob-blue);
    background: white;
}

.search-btn {
    background: var(--woob-blue);
    color: white;
    border: none;
    padding: 0.625rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.search-btn:hover {
    background: #1165b8;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #4b5563;
    cursor: pointer;
}

.search-filter-item input[type="checkbox"] {
    cursor: pointer;
}

.search-filter-item:hover span {
    color: var(--woob-blue);
}

.sidebar-user-card {
    width: 100%;
    background: var(--woob-dark);
    color: white;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.user-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

.user-card-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid var(--woob-red);
}

.user-card-info {
}

.user-card-name {
    font-weight: bold;
    font-size: 0.875rem;
}

.user-card-badge {
    font-size: 0.625rem;
    background: var(--woob-red);
    padding: 0 0.25rem;
    border-radius: 4px;
    margin-left: 0.25rem;
}

.user-card-stats {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    display: flex;
    gap: 0.75rem;
}

.user-card-menu {
    margin-top: 1rem;
    border-top: 1px solid #4b5563;
    padding-top: 0.75rem;
    font-size: 0.6875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
    color: #d1d5db;
}

.user-card-menu a {
    color: #d1d5db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-card-menu a:hover {
    color: white;
}

.user-card-menu a.highlight {
    color: var(--woob-red);
}

.user-card-menu i {
    width: 1rem;
}

.menu-divider {
    height: 1px;
    background: #4b5563;
    margin: 0.5rem 0;
}

.user-card-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem;
    opacity: 0.2;
    font-size: 4rem;
}

.sidebar-ad {
    background: var(--woob-dark);
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: italic;
    font-weight: 900;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-ad .ad-icon {
    font-size: 2.25rem;
    color: white;
    opacity: 0.5;
    margin-right: 0.5rem;
}

.sidebar-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.section-header.blue {
    background: var(--woob-blue);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.section-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.active-users-desc {
    font-size: 0.625rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.active-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.user-rank {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
    font-weight: bold;
}

.user-rank.rank-1 {
    background: var(--woob-red);
}

.user-rank.rank-2 {
    background: var(--woob-blue);
}

.user-rank.rank-3,
.user-rank.rank-4,
.user-rank.rank-5 {
    background: #9ca3af;
}

.user-name {
    flex: 1;
    margin-left: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.user-count {
    color: #9ca3af;
    font-size: 0.625rem;
}

.section-content.actions {
    padding: 0.5rem;
    gap: 0.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.3s;
}

.action-item:last-child {
    border-bottom: none;
}

.action-item:hover {
    background: #f9fafb;
}

.action-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.action-icon.new_thread {
    background: var(--woob-red);
}

.action-icon.new_reply {
    background: var(--woob-dark);
}

.action-icon.new_user {
    background: var(--woob-blue);
}

.action-content {
    flex: 1;
    min-width: 0;
}

.action-type {
    font-size: 0.625rem;
    font-weight: bold;
    color: #9ca3af;
    text-transform: uppercase;
}

.action-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.action-time {
    font-size: 0.5625rem;
    color: #9ca3af;
    white-space: nowrap;
}

.sidebar-ad-box {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-ad-box h3 {
    color: var(--woob-red);
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    margin-bottom: 0.5rem;
}

.sidebar-ad-box .divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.sidebar-ad-box .ad-size {
    color: #9ca3af;
    font-weight: bold;
    font-size: 0.875rem;
}

.sidebar-ad-box .ad-logo {
    color: var(--woob-red);
    font-size: 2.25rem;
    font-weight: 900;
    margin-top: 0.5rem;
}

.online-header {
    background: var(--woob-red);
    color: white;
    padding: 0.75rem;
    border-radius: 4px 4px 0 0;
    font-size: 0.75rem;
    font-weight: bold;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
}

.online-content {
    background: white;
    padding: 0.75rem;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    font-size: 0.625rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.online-content p {
    margin-bottom: 0.5rem;
}

.online-avatars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.online-avatars img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
}

/* Footer */
.footer {
    background: #e5e7eb;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #d1d5db;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        align-items: center;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-left {
        margin-bottom: 0;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #9ca3af;
    font-style: italic;
}

.footer-note {
    margin-top: 0.5rem;
    color: var(--woob-red);
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-weight: bold;
    color: #4b5563;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: var(--woob-red);
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d5db;
    text-align: center;
    font-size: 0.625rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-nav {
        display: none;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0.5rem 0;
}

.mobile-bottom-nav {
    display: none;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex: 1;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    color: #6b7280;
}

.bottom-nav-item span {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 500;
}

.bottom-nav-item.active i,
.bottom-nav-item.active span {
    color: var(--woob-red);
}

.bottom-nav-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: 2px solid #e5e7eb;
}

.bottom-nav-item.active .bottom-nav-avatar {
    border-color: var(--woob-red);
}

.nav-badge {
    position: absolute;
    top: 0.25rem;
    right: 25%;
    background: var(--woob-red);
    color: white;
    font-size: 0.5625rem;
    font-weight: bold;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    min-width: 1rem;
    text-align: center;
}

/* Mobile Panels */
.mobile-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.mobile-panel.show,
.mobile-panel.active {
    transform: translateY(0);
}

/* Desktop Panels - Sadece desktop'ta sağdan açılsın */
@media (min-width: 769px) {
    #desktopMessagesPanel,
    #desktopNotificationsPanel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 400px;
        max-height: 100vh;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.3s;
    }
    
    #desktopMessagesPanel.active,
    #desktopNotificationsPanel.active {
        transform: translateX(0);
    }
    
    #desktopPanelOverlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
    }
    
    #desktopPanelOverlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.mobile-panel-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mobile-panel-header h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-panel-header.user-header {
    flex-direction: row;
    gap: 1rem;
    background: var(--woob-dark);
    color: white;
    border-bottom: none;
}

.panel-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
}

.mobile-panel-header.user-header .panel-close {
    color: white;
}

.panel-user-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 3px solid var(--woob-red);
}

.panel-user-info {
    flex: 1;
}

.panel-username {
    font-size: 1rem;
    font-weight: bold;
}

.panel-user-badge {
    font-size: 0.625rem;
    background: var(--woob-red);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

.panel-user-stats {
    font-size: 0.6875rem;
    color: #d1d5db;
    margin-top: 0.375rem;
    display: flex;
    gap: 1rem;
}

.mobile-panel-content {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1;
}

.panel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.panel-item:hover {
    background: #f9fafb;
}

/* Anchor scroll offset for header */
:root { --header-offset: 96px; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
.post-content,
[id^="post-content-"],
[id^="thread-content-"] {
    scroll-margin-top: var(--header-offset);
}


.panel-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

.panel-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: white;
}

.panel-icon.red {
    background: var(--woob-red);
}

.panel-icon.blue {
    background: var(--woob-blue);
}

.panel-icon.green {
    background: #10b981;
}

.panel-info {
    flex: 1;
    min-width: 0;
}

.panel-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.panel-text {
    font-size: 0.8125rem;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.panel-time {
    font-size: 0.6875rem;
    color: #9ca3af;
    flex-shrink: 0;
}

.panel-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: background 0.3s;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
}

.panel-menu-item:hover {
    background: #f9fafb;
}

.panel-menu-item i {
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
}

.panel-menu-item.highlight {
    color: var(--woob-red);
}

.panel-menu-item.logout {
    color: #dc2626;
}

.panel-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 1rem;
}

@media (max-width: 1024px) {
    .btn-new-post,
    .btn-random {
        padding: 0.375rem 0.5rem;
        font-size: 0.625rem;
    }
    
    .btn-new-post i,
    .btn-random i {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Login Pages Responsive */
    .login-container {
        flex-direction: column;
        max-width: 100%;
        margin: 1rem;
    }
    
    .register-container,
    .forgot-container {
        max-width: 100%;
    }
    
    .login-left {
        width: 100%;
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .logo-large {
        font-size: 2.5rem;
    }
    
    .login-desc {
        font-size: 0.6875rem;
    }
    
    .social-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .forgot-icon {
        font-size: 3rem;
        margin-top: 0.5rem;
    }
    
    .login-right {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .login-right h2 {
        font-size: 1.125rem;
    }
    
    .forgot-description {
        font-size: 0.8125rem;
    }
    
    /* Mobile Bottom Nav Active */
    body {
        padding-bottom: 4rem;
    }
    
    .footer {
        margin-bottom: 4rem;
    }
    
    /* Hide header icons in mobile (shown in bottom nav) */
    
    /* Highlight target animation */
    .highlight-glow {
        position: relative;
        animation: woob-highlight 1.8s ease-out 0s 1;
    }
    @keyframes woob-highlight {
        0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.55); background-color: rgba(255,235,235,0.75); }
        50% { box-shadow: 0 0 0 8px rgba(220,38,38,0.18); background-color: rgba(255,235,235,0.4); }
        100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); background-color: transparent; }
    }
    
    .header-icons,
    .user-dropdown-wrapper {
        display: none !important;
    }
    
    /* Show guest buttons in mobile menu */
    .guest-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0;
        border-top: 1px solid #e5e7eb;
    }
    
    .btn-login-header {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        background: #d32f2f;
        color: #fff;
        border: none;
    }
    
    .btn-login-header:hover {
        background: #b71c1c;
        color: white;
    }
    
    /* Header Responsive */
    .header-content {
        height: 3.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
    }
    
    /* Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
    }
    
    .mobile-overlay.show,
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header-actions {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 280px;
        max-width: 85%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.3s;
        gap: 0.5rem;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header-actions.mobile-open {
        right: 0;
    }
    
    .btn-new-post,
    .btn-random {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-new-post i,
    .btn-random i {
        display: inline;
    }
    
    .main-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding: 0.5rem 0;
    }
    
    .main-nav a {
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }
    
    .main-nav a:hover {
        background: #f9fafb;
    }
    
    .social-icons {
        justify-content: center;
        font-size: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .header-divider {
        display: none;
    }
    
    .header-icons {
        gap: 1.5rem;
        justify-content: center;
        font-size: 1.25rem;
        padding: 0.5rem 0;
        border-top: 1px solid #e5e7eb;
    }
    
    .user-dropdown-wrapper {
        border-top: 1px solid #e5e7eb;
        padding-top: 0.5rem;
    }
    
    .user-profile {
        justify-content: center;
        padding: 0.75rem;
        background: #f9fafb;
        border-radius: 8px;
    }
    
    .user-dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .user-dropdown-menu.show {
        transform: translateY(0);
    }
    
    .user-dropdown-menu:not(.show) {
        transform: translateY(100%);
    }
    
    .user-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    /* Login Pages - Extra Small Screens */
    .login-page {
        padding: 0.5rem;
    }
    
    .login-container {
        margin: 0.5rem;
    }
    
    .login-left {
        padding: 1rem;
        min-height: 150px;
    }
    
    .logo-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .login-desc {
        font-size: 0.625rem;
        margin-bottom: 1rem;
    }
    
    .social-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1.125rem;
    }
    
    .login-right {
        padding: 1.5rem 1rem;
    }
    
    .login-right h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.6875rem;
    }
    
    .form-group input {
        padding: 0.5rem;
        font-size: 0.8125rem;
    }
    
    .forgot-password {
        font-size: 0.5625rem;
    }
    
    .forgot-description {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .terms-check label {
        font-size: 0.6875rem;
    }
    
    .info-message {
        padding: 0.5rem;
        font-size: 0.6875rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem;
        font-size: 0.8125rem;
    }
    
    /* Header Responsive */
    .user-name {
        display: none;
    }
    
    .dropdown-arrow {
        display: none;
    }
}

/* Modal Styling */
.thread-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
}

.thread-modal[style*="display: block"],
.thread-modal[style*="display:block"],
.thread-modal[style*="display: flex"],
.thread-modal[style*="display:flex"] {
    display: flex !important;
}

.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
}

.modal-container {
    position: relative !important;
    background: white !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 700px !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    animation: modalSlideIn 0.3s ease-out !important;
    z-index: 10000 !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thread Likes Modal */
.thread-modal .modal-header {
    background: linear-gradient(135deg, var(--woob-red) 0%, #c02a2a 100%);
}

.thread-likes-user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.thread-likes-user-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
    border-color: #d1d5db;
}

.thread-likes-user-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 3px solid var(--woob-red);
    box-shadow: 0 2px 8px rgba(222, 52, 52, 0.2);
    object-fit: cover;
    flex-shrink: 0;
}

.thread-likes-user-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thread-likes-user-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thread-likes-user-badge {
    font-size: 0.625rem;
    background: var(--woob-red);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.thread-likes-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}

.thread-likes-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    display: block;
}

.thread-likes-empty p {
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 640px) {
    .thread-likes-user-item {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .thread-likes-user-avatar {
        width: 3rem;
        height: 3rem;
    }
    
    .thread-likes-user-name {
        font-size: 0.875rem;
    }
}

/* ========================================
   WOOB10 HARITA WIDGET STYLES
   ======================================== */

.woob10-map-widget {
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
}

/* Header */
.woob10-map-header {
    background: #1e293b;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.woob10-map-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woob10-map-header-left i {
    opacity: 0.9;
}

.woob10-map-header h2 {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.025em;
    margin: 0;
}

.woob10-map-refresh-btn {
    background: white;
    color: #DC2626;
    border: none;
    border-radius: 2px;
    padding: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.woob10-map-refresh-btn:hover {
    background: #f3f4f6;
}

.woob10-map-refresh-btn:active {
    transform: scale(0.95);
}

.woob10-map-refresh-btn i {
    display: block;
    width: 1rem;
    height: 1rem;
}

/* Content Body */
.woob10-map-body {
    display: flex;
    flex-direction: row;
    background: white;
}

/* Sidebar */
.woob10-map-sidebar {
    width: 16rem;
    background: #DC2626;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.woob10-map-sidebar-item {
    background: #DC2626;
    color: white;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.woob10-map-sidebar-item i {
    opacity: 0.9;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woob10-map-sidebar-item:hover {
    background: #b91c1c;
}

.woob10-map-sidebar-item.active {
    background: #1e293b;
}

.woob10-map-sidebar-filler {
    flex-grow: 1;
    background: #DC2626;
}

/* List Content */
.woob10-map-content {
    flex-grow: 1;
    background: white;
    overflow-y: auto;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.woob10-map-list {
    flex-grow: 1;
}

.woob10-map-topic-row {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.woob10-map-topic-row:hover {
    background: #f9fafb;
}

.woob10-map-topic-row:last-child {
    border-bottom: none;
}

/* Avatar */
.woob10-map-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    flex-shrink: 0;
}

/* Online/Offline Badge */
.woob10-map-online-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.woob10-map-online-badge.online {
    background: #10b981;
}

.woob10-map-online-badge.offline {
    background: #9ca3af;
}

/* Title */
.woob10-map-title {
    flex-grow: 1;
    min-width: 0;
    margin-right: 1rem;
}

.woob10-map-title a {
    color: #4b5563;
    font-size: 0.8125rem;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
    max-width: 100%;
}

.woob10-map-title a:hover {
    color: #DC2626;
}

/* Metrics */
.woob10-map-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: #1f2937;
}

.woob10-map-metric {
    display: flex;
    align-items: center;
    width: 4rem;
}

.woob10-map-metric i {
    margin-right: 0.5rem;
    color: #6b7280;
}

.woob10-map-metric span {
    font-weight: 600;
}

.woob10-map-author,
.woob10-map-category {
    display: flex;
    align-items: center;
    width: 8rem;
    transition: all 0.2s;
}

.woob10-map-author:hover,
.woob10-map-category:hover {
    color: #DC2626;
}

.woob10-map-author:hover i,
.woob10-map-category:hover i {
    color: #DC2626;
}

.woob10-map-author i,
.woob10-map-category i {
    margin-right: 0.5rem;
    color: #1f2937;
    transition: color 0.2s;
}

.woob10-map-author span,
.woob10-map-category span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Load More Button */
.woob10-map-load-more {
    margin-top: auto;
}

.woob10-map-load-btn {
    width: 100%;
    padding: 1rem;
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.woob10-map-load-btn:hover {
    background: #1e293b;
    color: white;
}

.woob10-map-load-btn:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: wait;
}

.woob10-map-load-btn i {
    transition: transform 0.3s;
}

.woob10-map-load-btn:hover i:not(.fa-spinner) {
    transform: translateY(0.25rem);
}

.woob10-map-end {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid #f3f4f6;
    user-select: none;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woob10-map-list.animate {
    animation: fadeIn 0.3s ease-out;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .woob10-map-header {
        padding: 1rem;
    }
    
    .woob10-map-header h2 {
        font-size: 1rem;
    }
    
    .woob10-map-body {
        flex-direction: column;
        height: auto;
    }
    
    .woob10-map-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        -webkit-overflow-scrolling: touch;
    }
    
    .woob10-map-sidebar::-webkit-scrollbar {
        display: none;
    }
    
    .woob10-map-sidebar-item {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 0.25rem;
        gap: 0;
        min-width: fit-content;
    }
    
    .woob10-map-sidebar-item span {
        display: none;
    }
    
    .woob10-map-sidebar-filler {
        display: none;
    }
    
    .woob10-map-content {
        height: 600px;
    }
    
    .woob10-map-topic-row {
        padding: 0.875rem 0.75rem;
    }
    
    .woob10-map-avatar {
        width: 2rem;
        height: 2rem;
        margin-right: 0.75rem;
    }
    
    .woob10-map-title {
        margin-right: 0.5rem;
    }
    
    .woob10-map-title a {
        font-size: 0.8125rem;
    }
    
    .woob10-map-metrics {
        gap: 0.5rem;
        font-size: 0.8125rem;
    }
    
    .woob10-map-metric {
        width: 3rem;
        justify-content: flex-end;
    }
    
    .woob10-map-metric i {
        margin-right: 0.25rem;
        color: #6b7280;
    }
    
    .woob10-map-author,
    .woob10-map-category {
        display: none;
    }
}
