/* ==========================================================================
   HaxScipt - Topluluk Forumu Tasarımı (Forum.css)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url("../İmages/BG.png");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-color: #0e0e10;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== UNIFIED HEADER & NAVBAR ==================== */
.navbar {
    width: 100%;
    padding: 40px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 64px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: 55px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a.active {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.24), 0 0 14px rgba(255, 255, 255, 0.233);
    color: #ffffff;
}

.nav-links a:hover {
    color: #ffea62;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-buttons a {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.25s ease;
}

.login-btn {
    border: 2px solid #ffd84d;
    color: #ffd84d;
    background: transparent;
}

.login-btn:hover {
    color: black;
    background-color: #ffea62;
}

.register-btn {
    border: 2px solid #ffd84d;
    background-color: #ffd84d;
    color: black;
}

.register-btn:hover {
    border: 2px solid #ffd84d;
    color: #ffd84d;
    background: transparent;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* ==================== FORUM CONTAINER ==================== */
.forum-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 150px auto 50px;
    padding: 0 24px;
    flex: 1;
}

/* ==================== AUTH GATE (GİRİŞ YAPILMADIĞINDA) ==================== */
.forum-auth-gate {
    width: 100%;
    flex: 1;
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 60px;
    position: relative;
    z-index: 10;
}

.auth-gate-card {
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 55px 45px;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 216, 77, 0.08);
    position: relative;
    overflow: hidden;
    animation: gateFadeIn 0.5s ease-out;
}

.auth-gate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd84d, transparent);
}

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

.auth-gate-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(255, 216, 77, 0.08);
    border: 1px solid rgba(255, 216, 77, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 0 25px rgba(255, 216, 77, 0.15);
}

.auth-gate-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.auth-gate-desc {
    font-size: 15px;
    color: #a0a0ab;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.auth-gate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd84d;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 44px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 216, 77, 0.35);
    transition: all 0.25s ease;
}

.auth-gate-btn:hover {
    background: #ffe375;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 216, 77, 0.5);
    color: #000000;
}

.auth-gate-footer {
    margin-top: 24px;
    font-size: 14px;
    color: #888894;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-gate-footer a {
    color: #ffd84d;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-gate-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888894;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #ffd84d;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .sep {
    opacity: 0.5;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

/* ==================== HERO SECTION ==================== */
.forum-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 16px;
}

.forum-badge {
    display: inline-block;
    background: rgba(255, 216, 77, 0.12);
    color: #ffd84d;
    border: 1px solid rgba(255, 216, 77, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.forum-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.forum-subtitle {
    font-size: 14px;
    color: #a0a0ab;
    margin-top: 4px;
}

.btn-new-topic {
    background: linear-gradient(135deg, #ffd84d, #ffa502);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 216, 77, 0.4);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-new-topic:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 216, 77, 0.6);
}

/* ==================== SEARCH & CATEGORY PILLS ==================== */
.forum-search-bar {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: #141418;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 16px;
    gap: 10px;
    transition: border-color 0.25s ease;
}

.search-input-wrap:focus-within {
    border-color: #ffd84d;
    box-shadow: 0 0 15px rgba(255, 216, 77, 0.2);
}

.search-input-wrap input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%;
}

.search-input-wrap input::placeholder {
    color: #777;
}

.search-input-wrap button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 14px;
}

.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.category-pills::-webkit-scrollbar {
    height: 4px;
}

.category-pills::-webkit-scrollbar-thumb {
    background: rgba(255, 216, 77, 0.2);
    border-radius: 10px;
}

.cat-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0a0ab;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cat-pill:hover {
    background: rgba(255, 216, 77, 0.1);
    color: #ffd84d;
}

.cat-pill.active {
    background: #ffd84d;
    color: #000;
    border-color: #ffd84d;
    font-weight: 700;
}

/* ==================== 2 COLUMNS LAYOUT ==================== */
.forum-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: flex-start;
}

/* ==================== CATEGORIES GRID ==================== */
.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.category-card {
    background: rgba(18, 18, 23, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 216, 77, 0.6);
    background: rgba(255, 216, 77, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 216, 77, 0.15);
}

.category-card.active {
    border-color: #ffd84d;
    background: rgba(255, 216, 77, 0.09);
    box-shadow: 0 0 25px rgba(255, 216, 77, 0.25);
}

.category-card.active .cat-card-title {
    color: #ffd84d;
}

.cat-card-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.cat-card-content {
    flex: 1;
    min-width: 0;
}

.cat-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.cat-card-desc {
    font-size: 12px;
    color: #888894;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-card-stats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 11px;
    color: #ffd84d;
    font-weight: 600;
}

/* ==================== TOPICS LIST ==================== */
.topics-section {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.topics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.topics-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #ffd84d;
}

.count-badge {
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #a0a0ab;
    font-weight: 600;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    gap: 16px;
}

.topic-row:hover {
    background: rgba(255, 216, 77, 0.04);
    border-color: rgba(255, 216, 77, 0.3);
    transform: translateX(4px);
}

.topic-row.pinned {
    border-left: 4px solid #ffd84d;
    background: rgba(255, 216, 77, 0.03);
}

.topic-row.locked {
    opacity: 0.85;
}

.topic-main-info {
    flex: 1;
    min-width: 0;
}

.topic-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.badge-pin {
    background: #ffd84d;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
}

.badge-lock {
    background: #ff4757;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}

.badge-cat {
    background: rgba(255, 255, 255, 0.08);
    color: #d1d1d8;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
}

.topic-title-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.topic-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #888894;
    flex-wrap: wrap;
}

.topic-author {
    color: #ffd84d;
    font-weight: 600;
}

.topic-stats-box {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #888894;
    min-width: 45px;
}

.stat-pill strong {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
}

/* ==================== SIDEBAR ==================== */
.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.sidebar-card .card-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffd84d;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.user-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    background: #1c1c22;
    border: 2px solid #ffd84d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.user-details strong {
    display: block;
    font-size: 15px;
    color: #fff;
}

.rank-tag {
    display: inline-block;
    font-size: 11px;
    color: #ffd84d;
    font-weight: 600;
    margin-top: 2px;
}

.guest-notice {
    font-size: 12px;
    color: #888894;
    line-height: 1.5;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.stat-label {
    color: #888894;
}

.stat-val {
    color: #ffd84d;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12.5px;
    color: #d1d1d8;
    line-height: 1.4;
}

/* ==================== TOPIC DETAIL PAGE ==================== */
.topic-detail-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.post-author-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.post-author-sidebar .avatar-circle {
    width: 65px;
    height: 65px;
    font-size: 30px;
    margin-bottom: 10px;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-badges-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-top: 6px;
    width: 100%;
}

.badge-rank-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffd84d;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    width: 100%;
}

.badge-vip-pill {
    background: linear-gradient(135deg, rgba(255, 216, 77, 0.2), rgba(255, 165, 2, 0.2));
    border: 1px solid #ffd84d;
    color: #ffd84d;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    width: 100%;
}

.post-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #888894;
}

.post-body-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #e5e5ea;
    white-space: pre-wrap;
    margin-bottom: 20px;
}

.post-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
    flex-wrap: wrap;
    gap: 12px;
}

.like-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffd84d;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.like-btn:hover {
    background: #ffd84d;
    color: #000;
}

.admin-action-bar {
    display: flex;
    gap: 8px;
}

.btn-admin-action {
    background: #1c1c22;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-admin-action:hover {
    background: #ffd84d;
    color: #000;
}

.btn-admin-action.danger:hover {
    background: #ff4757;
    color: #fff;
    border-color: #ff4757;
}

/* Reply Box Form */
.reply-form-box {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.reply-form-box h3 {
    font-size: 18px;
    color: #ffd84d;
    margin-bottom: 14px;
}

.reply-textarea {
    width: 100%;
    background: #131317;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
    margin-bottom: 14px;
}

.reply-textarea:focus {
    border-color: #ffd84d;
}

/* ==================== NEW TOPIC FORM ==================== */
.new-topic-box {
    background: rgba(18, 18, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.new-topic-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.new-topic-header h2 {
    font-size: 24px;
    color: #ffd84d;
    font-weight: 800;
}

.new-topic-header p {
    font-size: 13px;
    color: #888894;
    margin-top: 4px;
}

.new-topic-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #e5e5ea;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #131317;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffd84d;
    box-shadow: 0 0 10px rgba(255, 216, 77, 0.2);
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.btn-cancel {
    color: #888894;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-cancel:hover {
    color: #fff;
}

.btn-submit-topic {
    background: linear-gradient(135deg, #ffd84d, #ffa502);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 216, 77, 0.35);
    transition: all 0.25s ease;
}

.btn-submit-topic:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 216, 77, 0.55);
}

/* Pagination */
.forum-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.forum-pagination button {
    background: #1b1b1b;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.forum-pagination button:hover {
    background: #ffd84d;
    color: #000;
    border-color: #ffd84d;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: #000000;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888894;
    font-size: 14px;
    font-weight: 600;
}

.footer-logo {
    width: 80px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    color: #888894;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.social-links a:hover {
    color: #ffd84d;
}

.footer-right {
    font-size: 13px;
    color: #888894;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .forum-layout {
        grid-template-columns: 1fr;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-author-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 16px;
    }

    .new-topic-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 14, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .forum-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .topic-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .topic-stats-box {
        width: 100%;
        justify-content: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 10px;
    }
}
