/* ========= forum.css v2.3 — CLEANED + AUTH BUTTONS ========= */
/* Tüm yinelenen/çakışan kurallar birleştirildi.
   - .forum-tabs gizli.
   - #wpforo butonları tek blok.
   - Header buton seti eklendi (Giriş / Kayıt / Profil / Çıkış).
*/

/* ===== Variables ===== */
:root {
    --brand: #2563eb;
    --brand-2: #1e40af;
    --accent: #f59e0b;
    --bg: #f3f6fb;
    --card: #fff;
    --text: #0f172a;
    --muted: #6b7280;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --brand-50: rgba(37, 99, 235, .16);
    --brand-10: rgba(37, 99, 235, .06);

    /* Footer palette (light) */
    --ft-bg: #0b1220;
    --ft-bg2: #0a1020;
    --ft-text: #e5e7eb;
    --ft-muted: #94a3b8;
    --ft-link: #93c5fd;
    --ft-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.dark:root {
    --bg: #0b0f16;
    --card: #0f141c;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --shadow: 0 12px 28px rgba(0, 0, 0, .35);
    /* Footer (dark stays dark) */
    --ft-bg: #0b1220;
    --ft-bg2: #0a1020;
    --ft-text: #e5e7eb;
    --ft-muted: #94a3b8;
    --ft-link: #93c5fd;
}

/* ===== Page Shell ===== */
.forum-shell {
   /*  background: var(--bg); */
    padding: 24px 0 60px;
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
}

/* Ortak genişlik (hdr-inner hariç) */
.forum-shell .hero-inner,
.forum-shell .forum-toolbar,
.forum-shell .forum-core,
.forum-tabs,
.hdr-inner-base {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* ===== Sticky HEADER ===== */
.forum-header {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(2, 6, 23, .15);
    /*padding:14px 0;*/
}

.dark .forum-header {
    background: linear-gradient(90deg, #f59e0b, #fbbf24)
}

.hdr-inner {
    width: 100% !important;
    max-width: none !important;
    padding: 0 24px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hdr-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hdr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hdr-logo .site-logo,
.hdr-logo .custom-logo {
    display: block;
    height: auto;
    width: auto;
    max-height: 100px;
}

@media (max-width:900px) {

    .hdr-logo .site-logo,
    .hdr-logo .custom-logo {
        max-height: 48px;
    }
}

/* Eski metin fallback’ini gizle (logo varsa) */
.hdr-logo .logo-text {
    display: none !important;
}

/* Tema bazı stillerle logoyu kısıyorsa korunur */
.forum-header img {
    max-width: 100%;
    height: auto;
}

/* Menü */
.hdr-nav {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.hdr-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
}

.hdr-nav li a:hover {
    background: rgba(255, 255, 255, .12);
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Header Search */
.hdr-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 6px 10px;
    min-width: 220px;
}

.hdr-search input {
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 15px;
}

.hdr-search input::placeholder {
    color: rgba(255, 255, 255, .82);
}

.hdr-search button {
    border: 0;
    background: #2dd4bf;
    color: #06223b;
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
}

/* ===== Header Buttons (Auth) ===== */
.hdr-user {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Genel buton sistemi */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-sm {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.btn-primary {
    background: #ffffff;
    color: #0b1220;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 255, 255, .18);
}

.btn-outline {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .18);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
}

.btn-danger {
    background: #ef4444;
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Giriş linki (eski tek link biçimi) */
.hdr-login {
    background: #fff;
    color: #0b0f16;
    text-decoration: none;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 10px;
}

.hdr-login.is-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hdr-login .avatar img {
    border-radius: 999px;
    display: block;
}

/* Kullanıcı chip + menü */
.user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0b1220;
    border: 0;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(2, 6, 23, .10);
}

.user-chip .avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: block;
}

.user-chip .name {
    color: #0b1220;
}

.user-chip .chev {
    opacity: .7;
}

.user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 240px;
    background: var(--card);
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    z-index: 60;
}

.user-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.user-menu a:hover {
    background: rgba(37, 99, 235, .06);
    color: var(--brand-2);
}

.user-menu .sep {
    height: 1px;
    background: rgba(37, 99, 235, .12);
    margin: 6px 4px;
    border-radius: 1px;
}

/* Menü açma: hem class ile hem :has ile destekle */
.hdr-user.is-open .user-menu {
    display: block;
}

.hdr-user:has(.user-chip[aria-expanded="true"]) .user-menu {
    display: block;
}

/* Admin Bar Offset */
body.admin-bar .forum-header @media (max-width:782px) {
    body.admin-bar .forum-header {
        top: 46px;
    }
}

/* ===== HERO ===== */
.forum-hero {
    margin: 18px 0 26px !important;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: 0 14px 34px rgba(2, 6, 23, .12) !important;
}

.hero-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .2);
    font-size: 30px;
    color: #fff;
}

.hero-text h1 {
    margin: 0 0 4px;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
}

.hero-text .hero-sub {
    margin: 0;
    color: rgba(255, 255, 255, .9);
}

.hero-right img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 14px;
}

/* ===== Toolbar ===== */
.forum-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto 18px !important;
}

.forum-search {
    display: none !important;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0f172a !important;
    border-radius: 16px;
    padding: 10px 12px;
    box-shadow: 0 10px 26px rgba(2, 6, 23, .10) !important;
}

.forum-search input[type="search"] {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--text);
}

.forum-search .btn-search {
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    padding: 10px 14px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    margin-left: 4px;
}

.theme-toggle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 0;
    cursor: pointer;
    background: var(--card);
    box-shadow: var(--shadow);
    display: none;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.theme-toggle .sun {
    position: absolute;
    opacity: 1;
    transition: .25s;
}

.theme-toggle .moon {
    position: absolute;
    opacity: 0;
    transition: .25s;
}

.dark .theme-toggle .sun {
    opacity: 0;
    transform: translateY(-6px) scale(.9);
}

.dark .theme-toggle .moon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== Tabs (KAPALI) ===== */
.forum-tabs {
    display: none !important;
}

/* ===== WPForo default menüyü gizle ===== */
#wpforo #wpforo-wrap .wpforo-menu,
#wpforo #wpforo-wrap .wpf-menu,
#wpforo #wpforo-wrap nav.wpforo-nav,
#wpforo #wpforo-wrap .wpforo-menu-wrap,
#wpforo #wpforo-wrap .wpforo-subtop {
    display: none !important;
}

/* ===== WPForo — Genel Panel/Çerçeve ===== */
#wpforo,
#wpforo #wpforo-wrap {
    background: transparent !important;
    border: 0;
}

#wpforo .wpforo-head-bar {
    background: var(--brand) !important;
    color: #fff !important;
    padding: 14px 18px !important;
    border: 0 !important;
    border-radius: 14px 14px 0 0 !important;
    margin: 0 !important;
    box-shadow: var(--shadow);
}

#wpforo .wpforo-forums,
#wpforo .wpf-forum-list,
#wpforo .wpforo-topic-list {
    background: var(--card);
    border: 1px solid var(--brand-50);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#wpforo .wpforo-forum,
#wpforo .wpforo-topic {
    border-top: 1px solid var(--brand-10);
    padding: 16px 18px;
}

#wpforo .wpforo-forum:first-child,
#wpforo .wpforo-topic:first-child {
    border-top: 0;
}

#wpforo .wpf-cat-title,
#wpforo .wpforo-cat-title,
#wpforo .wpf-subcat-title {
    background: #f5f7fb;
    border: 1px solid var(--brand-10);
    border-bottom: 3px solid var(--brand);
    border-radius: 12px;
    overflow: hidden;
}

#wpforo .wpforo-breadcrumbs {
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0 14px;
}

#wpforo .wpforo-breadcrumbs a {
    color: var(--brand-2);
    text-decoration: none;
    font-weight: 600;
}

#wpforo .wpforo-breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===== Buttons (tek blok) ===== */
#wpforo .wpf-button,
#wpforo button,
#wpforo input[type=submit] {
    background: #01FFBF !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 12px !important;
    padding: 6px 8px !important;
    box-shadow: none;
    margin-right: 10px;
}

#wpforo .wpf-button:hover {
    filter: brightness(1.04);
}

#wpforo .wpf-button:focus,
#wpforo button:focus,
#wpforo input[type=submit]:focus {
    outline: 0;
    box-shadow: 0 0 0 3px var(--brand-50);
}

/* ===== Topic LIST ===== */
#wpforo .wpforo-topic-head,
#wpforo .wpforo-list-title,
#wpforo .wpf-sticky-title,
#wpforo .wpforo-sticky-title {
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 12px 16px !important;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: var(--shadow);
}

#wpforo .wpforo-topic-list,
#wpforo .wpf-topic-list {
    background: var(--card);
    border: 1px solid rgba(2, 6, 23, .06);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#wpforo .wpforo-topic,
#wpforo .wpf-topic {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 260px;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-top: 1px solid rgba(2, 6, 23, .06);
    background: var(--card);
}

#wpforo .wpforo-topic:first-child,
#wpforo .wpf-topic:first-child {
    border-top: 0;
}

#wpforo .wpforo-topic:hover,
#wpforo .wpf-topic:hover {
    background: rgba(37, 99, 235, .03);
}

#wpforo .wpforo-topic .wpf-topic,
#wpforo .wpf-topic .wpf-topic {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

#wpforo .wpforo-topic .wpf-topic-avatar img,
#wpforo .wpf-topic .wpf-topic-avatar img,
#wpforo .wpforo-topic .avatar,
#wpforo .wpf-topic .avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(2, 6, 23, .12);
}

#wpforo .wpforo-topic .wpf-topic-title,
#wpforo .wpf-topic .wpf-topic-title,
#wpforo .wpforo-topic .topic-title,
#wpforo .wpf-topic .topic-title {
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

#wpforo .wpforo-topic .wpf-topic-meta,
#wpforo .wpf-topic .wpf-topic-meta {
    color: var(--muted);
    font-size: .95rem;
}

#wpforo .wpforo-topic .wpf-topic-stat,
#wpforo .wpf-topic .wpf-topic-stat,
#wpforo .wpforo-topic .wpf-stats {
    text-align: left;
    color: var(--text);
}

#wpforo .wpf-topic-stat b,
#wpforo .wpf-stats b {
    color: var(--brand-2);
}

#wpforo .wpforo-topic .wpf-last-post,
#wpforo .wpf-topic .wpf-last-post,
#wpforo .wpforo-topic .last-post,
#wpforo .wpf-topic .last-post {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

#wpforo .wpf-last-post img,
#wpforo .last-post img,
#wpforo .wpf-last-post .avatar,
#wpforo .last-post .avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
}

#wpforo .wpf-last-post a,
#wpforo .last-post a {
    font-weight: 700;
}

#wpforo .wpf-last-post time,
#wpforo .last-post time,
#wpforo .wpf-last-post .wpf-last-post-date,
#wpforo .last-post .wpf-last-post-date {
    color: var(--muted);
    font-size: .92rem;
}

#wpforo .wpforo-topic .fa-thumb-tack,
#wpforo .wpf-topic .fa-thumb-tack {
    color: #f59e0b;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .15));
}

#wpforo .wpforo-topic .badge,
#wpforo .wpf-topic .badge,
#wpforo .wpforo-topic .label,
#wpforo .wpf-topic .label {
    background: #ffe8bf;
    color: #9a5a00;
    border-radius: 10px;
    padding: 4px 8px;
    font-weight: 700;
}

/* Pagination */
#wpforo .wpforo-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 16px 0;
}

#wpforo .wpforo-pagination a,
#wpforo .wpforo-pagination span {
    background: var(--card);
    border: 1px solid rgba(37, 99, 235, .18);
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--brand-2);
    box-shadow: var(--shadow);
}

#wpforo .wpforo-pagination a:hover {
    background: rgba(37, 99, 235, .06);
}

#wpforo .wpforo-pagination .current {
    background: var(--brand);
    color: #fff;
    border-color: transparent;
}

/* ===== Topic VIEW ===== */
#wpforo .wpforo-topic-title {
    background: linear-gradient(90deg, var(--brand), #3b82f6);
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: var(--shadow);
    margin: 10px 0 14px;
    font-weight: 800;
    letter-spacing: .2px;
}

#wpforo .wpforo-topic-title h1,
#wpforo .wpforo-topic-title .wpf-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

#wpforo .wpf-topic-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: space-between;
    margin: -8px 0 14px 0;
}

#wpforo .wpf-topic-meta-left {
    color: rgba(255, 255, 255, .95);
    font-weight: 600;
}

#wpforo .wpf-topic-meta-right .wpf-button {
    background: #fff !important;
    color: var(--brand) !important;
}

#wpforo .wpforo-posts {
    background: var(--card);
    border: 1px solid rgba(37, 99, 235, .16);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#wpforo .wpforo-post {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    padding: 18px;
    border-top: 1px solid rgba(37, 99, 235, .08);
    background: #1F242A;
}

#wpforo .wpforo-post:first-child {
    border-top: 0;
}

#wpforo .wpforo-post .wpf-author {
    background: #01FFBF;
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

#wpforo .wpforo-post .wpf-author .avatar img,
#wpforo .wpforo-post .wpf-author .avatar {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(2, 6, 23, .12);
    display: block;
    margin: 0 auto 10px;
}

#wpforo .wpforo-post .wpf-author .wpf-author-name {
    font-weight: 800;
    margin: 0 0 6px;
}

#wpforo .wpforo-post .wpf-author .wpf-author-meta {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.35;
}

#wpforo .wpforo-post .wpf-post-content {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, .10);
    border-radius: 12px;
    padding: 16px 18px;
}

#wpforo .wpforo-post .wpf-post-meta {
    color: var(--muted);
    font-size: .92rem;
    margin-top: 10px;
}

#wpforo .wpforo-post .wpf-post-content p {
    margin: 0 0 12px;
}

#wpforo .wpforo-post .wpf-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#wpforo .wpforo-post .wpf-post-content blockquote {
    margin: 10px 0;
    padding: 12px 14px;
    background: #f1f5ff;
    border-left: 4px solid var(--brand);
    border-radius: 8px;
}

#wpforo .wpforo-post .wpf-post-content pre,
#wpforo .wpforo-post .wpf-post-content code {
    background: #0b1220;
    color: #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    overflow: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

#wpforo .wpforo-post .wpf-post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

#wpforo .wpforo-post .wpf-post-actions .wpf-button {
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

/* ===== Badges (Silkroad) ===== */
.sro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .88rem;
    line-height: 1;
    letter-spacing: .2px;
    background: #eef2ff;
    color: #1e40af;
    border: 1px solid rgba(37, 99, 235, .18);
    box-shadow: 0 2px 8px rgba(2, 6, 23, .06);
}

.sro-badge::before {
    opacity: .95
}

.badge-cap-110 {
    background: #ffedd5;
    color: #9a3412;
    border-color: #fdba74;
}

.badge-cap-110::before {
    content: "🏆";
}

.badge-cap-100 {
    background: #fef9c3;
    color: #92400e;
    border-color: #fde68a;
}

.badge-cap-100::before {
    content: "🏅";
}

.badge-cap-90 {
    background: #e0f2fe;
    color: #075985;
    border-color: #93c5fd;
}

.badge-cap-90::before {
    content: "🎖️";
}

.badge-race-ch {
    background: #f5d0fe;
    color: #86198f;
    border-color: #e879f9;
}

.badge-race-ch::before {
    content: "CH";
    font-weight: 900;
}

.badge-race-eu {
    background: #d1fae5;
    color: #065f46;
    border-color: #6ee7b7;
}

.badge-race-eu::before {
    content: "EU";
    font-weight: 900;
}

.badge-race-cheu {
    background: linear-gradient(90deg, #f5d0fe, #d1fae5);
    color: #0b3b3b;
    border-color: rgba(2, 6, 23, .15);
}

.badge-race-cheu::before {
    content: "CH•EU";
    font-weight: 900;
}

.badge-status-cbeta {
    background: #e9d5ff;
    color: #6b21a8;
    border-color: #c4b5fd;
}

.badge-status-cbeta::before {
    content: "🔒";
}

.badge-status-beta {
    background: #ede9fe;
    color: #5b21b6;
    border-color: #c7d2fe;
}

.badge-status-beta::before {
    content: "🧪";
}

.badge-status-live {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

.badge-status-live::before {
    content: "✅";
}

.badge-status-opening {
    background: #fff1c7;
    color: #9a3412;
    border-color: #fed7aa;
}

.badge-status-opening::before {
    content: "🚀";
}

.badge-status-maint {
    background: #e5e7eb;
    color: #374151;
    border-color: #cbd5e1;
}

.badge-status-maint::before {
    content: "🛠️";
}

.badge-rate-low {
    background: #dbeafe;
    color: #1e3a8a;
    border-color: #93c5fd;
}

.badge-rate-low::before {
    content: "x1";
    font-weight: 900;
}

.badge-rate-mid {
    background: #e0f2fe;
    color: #075985;
    border-color: #7dd3fc;
}

.badge-rate-mid::before {
    content: "x10";
    font-weight: 900;
}

.badge-rate-high {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.badge-rate-high::before {
    content: "x100";
    font-weight: 900;
}

.badge-mode-pvp {
    background: #ffe4e6;
    color: #9f1239;
    border-color: #fecdd3;
}

.badge-mode-pvp::before {
    content: "⚔️";
}

.badge-mode-pve {
    background: #e0e7ff;
    color: #3730a3;
    border-color: #c7d2fe;
}

.badge-mode-pve::before {
    content: "🛡️";
}

.badge-sys-job {
    background: #fff7ed;
    color: #92400e;
    border-color: #fed7aa;
}

.badge-sys-job::before {
    content: "💼";
}

.badge-sys-fgw {
    background: #e0f2f1;
    color: #134e4a;
    border-color: #99f6e4;
}

.badge-sys-fgw::before {
    content: "🌀";
}

.badge-sys-fort {
    background: #fef2f2;
    color: #7f1d1d;
    border-color: #fecaca;
}

.badge-sys-fort::before {
    content: "🏰";
}

/* ===== Tema-spesifik düzeltmeler ===== */
#wpforo #wpforo-wrap #wpforo-menu {
    border-bottom: #e6e6e6 3px solid;
    background: #f5f5f5;
    display: none !important;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-threads {
    margin: 15px 0;
    background-color: #1F242A !important;
    border-radius: 10px;
}

#wpforo #wpforo-wrap .wpfl-4 .wpforo-category {
    background-color: #1F242A !important;
    border-bottom: 3px solid #01FFBF !important;
    border-radius: 10px !important;
}

/* fixed: !important */
#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content {
    width: 100%;
    padding: 5px 1px;
    margin-top: 10px;
    margin-bottom: 250px !important;
}

#wpforo #wpforo-wrap * {
    box-sizing: border-box;
    box-shadow: none;
    color: #ffffff !important;
}

/* ===== Responsive ===== */
@media (max-width:1200px) {
    .hdr-search {
        min-width: 200px !important;
    }
}

@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right img {
        max-height: 140px;
    }
}

@media (max-width:900px) {
    .hdr-inner {
        height: auto;
        padding: 10px 16px;
    }

    .hdr-search {
        flex: 1;
        min-width: 0 !important;
    }

    .hdr-inner-base {
        width: min(1140px, 92%);
        margin: 0 auto;
    }
}

/* Topic list mobile tweaks */
@media (max-width:980px) {

    #wpforo .wpforo-topic,
    #wpforo .wpf-topic {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    #wpforo .wpforo-topic .wpf-topic-stat,
    #wpforo .wpf-topic .wpf-topic-stat {
        display: flex;
        gap: 16px;
        color: var(--muted);
    }

    #wpforo .wpforo-topic .wpf-last-post,
    #wpforo .wpf-topic .wpf-last-post {
        justify-self: stretch;
        grid-template-columns: 32px 1fr;
    }

    #wpforo .wpf-last-post img,
    #wpforo .last-post img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width:640px) {
    .forum-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .theme-toggle {
        width: 48px;
        height: 48px;
        align-self: flex-end;
    }
}

/* ===== Fix: Çift logo koruması + Dark varyant ===== */
.hdr-left .custom-logo:not(:first-child) {
    display: none !important;
}

.hdr-left .custom-logo-dark {
    display: none !important;
}

.dark .hdr-left .custom-logo {
    display: block !important;
}

/* aydınlık logo (light) ekli ise yine görünür */
.dark .hdr-left .custom-logo-dark {
    display: block !important;
}

/* dark varyantı varsa onu da göster */

/* Forum sayfasında tema header'ı da çıkıyorsa */
.forum-shell-page .site-header,
.forum-shell-page header.site-header {
    display: none !important;
}

/* Editor iframe yükseklik fix (gerekirse) */
.post_body_68c350e170285_ifr {
    height: 350px !important;
}

/* ===== Footer ===== */
.forum-footer {
    background: linear-gradient(180deg, #01ffbf, var(--ft-bg2));
    color: var(--ft-text);
    padding: 40px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
}

.forum-footer .ft-inner {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* Linkler */
.forum-footer a {
    color: var(--ft-link);
    text-decoration: none;
}

.forum-footer a:hover {
    text-decoration: underline;
}

/* Üst grid alanı */
.ft-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Sol blok (logo + açıklama) */
.ft-brand .ft-logo {
    margin-bottom: 12px;
}

.forum-footer .custom-logo {
    width: auto;
    max-width: 260px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 26px rgba(0, 0, 0, .35));
}

.ft-logo-text {
    font-weight: 900;
    font-size: 34px;
    letter-spacing: .5px;
}

.ft-logo-text span {
    color: #60a5fa;
}

.ft-desc {
    color: var(--ft-muted);
    font-size: 15px;
    line-height: 1.55;
}

.ft-title-sm {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

/* Sağ 3 sütun */
.ft-title {
    margin: 6px 0 10px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .25px;
    color: #fff;
}

.ft-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.ft-list a {
    color: var(--ft-text);
    opacity: .92;
}

.ft-list a:hover {
    color: #1f4be3;
}

/* Alt bar */
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: var(--ft-muted);
    font-size: 14px;
}

/* Sosyal butonlar */
.ft-social {
    display: flex;
    gap: 10px;
}

.ft-social .ic {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #111827;
    color: #e5e7eb;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--ft-shadow);
}

.ft-social .ic:hover {
    background: #1f2937;
}

/* Tema footer’ını, bizim footer görünürken gizle (opsiyonel) */
body:has(.forum-footer) .site-footer,
body:has(.forum-footer) footer.site-footer {
    display: none !important;
}

/* Responsive */
@media (max-width:1024px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .ft-main {
        grid-template-columns: 1fr;
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Sponsor Banner Grid — 2 sütun, 728×90 ===== */
.sponsor-grid {
    margin: 14px auto;
}

.sgrid-inner {
    width: min(1140px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sgrid-slot {
    position: relative;
    display: block;
    background: #f5f6f7;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(2, 6, 23, .10);
}

.sgrid-slot img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 728 / 90;
    object-fit: cover;
    transition: transform .22s ease;
}

.sgrid-slot:hover img {
    transform: scale(1.02);
}

/* Dolu bannerlarda ölçü etiketi (küçük pill) */
.sgrid-meta {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
}

/* Placeholder */
.sgrid-empty {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    border: 1px dashed #cbd5e1;
}

.sgrid-empty-inner {
    height: 100%;
    min-height: calc((92vw*0.5)/ (728/90) * 1px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
}

.sgrid-empty-title {
    font-weight: 800;
    font-size: 20px;
    color: #475569;
    text-align: center;
}

.sgrid-empty-size {
    color: #64748b;
    font-size: 14px;
}

.sgrid-empty-cta {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(30, 64, 175, .15);
}

.sgrid-empty-cta:hover {
    background: #bfdbfe;
}

/* Koyu tema */
.dark .sgrid-slot {
    background: #0b1220;
    border-color: #1f2937;
}

.dark .sgrid-empty {
    background: linear-gradient(180deg, #0b1220, #0f172a);
    border-color: #1f2937;
}

.dark .sgrid-empty-title {
    color: #e5e7eb;
}

.dark .sgrid-empty-size {
    color: #94a3b8;
}

.dark .sgrid-empty-cta {
    background: #1e3a8a;
    color: #e5e7eb;
}

.dark .sgrid-empty-cta:hover {
    background: #1d4ed8;
}

/* Responsive: mobilde tek sütun */
@media (max-width:640px) {
    .sgrid-inner {
        grid-template-columns: 1fr;
    }
}

/* Üst/alt aralıkları */
.sponsor-grid--top {
    margin-top: 8px;
    margin-bottom: 18px;
}

.sponsor-grid--bottom {
    margin-top: 18px;
    margin-bottom: 18px;
}

/* Adaptive banner ratio */
:root {
    --ad-w: 728;
    --ad-h: 90;
}

.sgrid-slot img {
    aspect-ratio: calc(var(--ad-w) / var(--ad-h));
}

@media (max-width:480px) {
    :root {
        --ad-w: 320;
        --ad-h: 100;
    }

    /* mobilde 320×100 */
}

.forum-header .hdr-logo img {
    display: block !important;
    visibility: visible !important;
}

#wpforo #wpforo-wrap .wpforo-post-head .wpf-post-head-top {
    background-color: #1F242A !important;
    border-left: 3px solid #ffffff;
}

#wpforo #wpforo-wrap.wpft-post .wpf-manage-link .wpf-action {
    background: #0f172a !important;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top .wpf-author {
    background-color: #1F242A !important;
}

#wpforo #wpforo-wrap .wpf-content-foot {
    background: #01FFBF !important;
}

#wpforo #wpforo-wrap .wpf-acp-content {
    background: #0f141c !important;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #666;
}

#wpforo #wpforo-wrap .wpf-acp-title {
    display: inline-block;
    background: #2563eb !important;
    padding: 3px 10px;
    font-size: 13px;
    color: #666;
}

#wpforo #wpforo-wrap .wpf-acp-footer {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    padding: 10px;
    border-top: 1px dashed #ccc;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#wpforo #wpforo-wrap .wpf-footer-box {
    background-color: #1F242A !important;
}

#wpforo #wpforo-wrap .wpf-topic-create {
    background-color: #1F242A !important;
    border-radius: 20px !important;
}

#wpforo #wpforo-wrap .wpf-post-create {
    background-color: #1F242A !important;
    border-radius: 20px !important;
}

#wpforo #wpforo-wrap .wpf-topic-navi .wpf-navi-wrap {
    background-color: #1F242A !important;
    border-radius: 20px !important;
}

#wpforo #wpforo-wrap .wpf-topic-visitors {
    background-color: #1F242A !important;
    border-radius: 20px !important;
}

.hdr-search {
    display: none !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 6px 10px;
    min-width: 220px;
}

.forum-header .hdr-shape {
    position: absolute;
    top: -0px !important;
    right: -16px;
    width: clamp(140px, 22vw, 320px);
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: .9;
    filter: drop-shadow(0 10px 24px rgba(2, 6, 23, .35));
}

#wpforo #wpforo-wrap .wpf-field input[type="text"],
#wpforo #wpforo-wrap .wpf-field input[type="search"],
#wpforo #wpforo-wrap .wpf-field input[type="password"],
#wpforo #wpforo-wrap .wpf-field input[type="email"],
#wpforo #wpforo-wrap .wpf-field input[type="date"],
#wpforo #wpforo-wrap .wpf-field input[type="number"],
#wpforo #wpforo-wrap .wpf-field input[type="url"],
#wpforo #wpforo-wrap .wpf-field input[type="tel"],
#wpforo #wpforo-wrap .wpf-field textarea,
#wpforo #wpforo-wrap .wpf-field select {
    box-shadow: none;
    background-color: #0f172a !important;
    border: 1px solid #e6e6e6;
}

#wpforo #wpforo-wrap .wpf-button-outlined.wpf-subscribe-topic {
    /* border tanımı gradient olamaz, sade renk bırakıldı */
    border: 1px solid #f59e0b !important;
    background-color: #0f172a !important;
    margin-right: 5px;
}

.sro-fab .circle-text text {
    fill: #ffffff !important;
}

.sro-fab {
    right: 5px;
    display: none !important;
}

/* === Forum Header • CSS-Only Shapes (aurora + blobs + noise) === */
.forum-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    /* Sayfa dark kalsın */
    isolation: isolate;
}

.forum-header .hdr-inner {
    position: relative;
    z-index: 2;
    width: min(1600px, 92%);
    margin: 0px auto;
    padding: 12px 16px;
    border-radius: 0px;
    background: rgba(9, 14, 23, .55);
    /* cam efekti */
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .04);
    overflow: hidden;
    /* şekiller köşeyi takip etsin */
}

/* İçerik üstte kalsın */
.forum-header .hdr-left,
.forum-header .hdr-right {
    position: relative;
    z-index: 3;
}

/* Daha önce eklenen shape resmi varsa gizle */
.forum-header .hdr-shape {
    display: none !important;
}

/* Katman 1 — Aurora & renk lekeleri */
.forum-header .hdr-inner::before {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1.1px) 0 0/16px 16px,
        radial-gradient(140px 120px at 7% 18%, rgba(99, 102, 241, .26), transparent 70%),
        radial-gradient(180px 140px at 92% 8%, rgba(14, 165, 233, .22), transparent 60%),
        radial-gradient(200px 180px at 70% 105%, rgba(234, 88, 12, .18), transparent 70%),
        conic-gradient(from 210deg at 30% -8%, rgba(59, 130, 246, .18), transparent 35%),
        linear-gradient(180deg, rgba(2, 6, 23, .92) 0%, rgba(2, 6, 23, .86) 100%);
    background-blend-mode: overlay, normal, normal, normal, screen, normal;
    filter: saturate(135%);
}

/* Katman 2 — Yumuşak hareketli parıltı */
.forum-header .hdr-inner::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(220px 220px at 110% -25%, rgba(56, 189, 248, .30), transparent 60%),
        radial-gradient(200px 180px at -15% -25%, rgba(236, 72, 153, .28), transparent 60%),
        radial-gradient(240px 220px at 50% 120%, rgba(34, 197, 94, .22), transparent 70%);
    filter: blur(16px);
    opacity: .85;
    animation: hdrFloat 14s ease-in-out infinite alternate;
}

/* Parlak üst kenar çizgisi (çok hafif) */
.forum-header::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    z-index: 1;
    pointer-events: none;
}

@keyframes hdrFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: .80;
    }

    100% {
        transform: translateY(8px) translateX(-6px) scale(1.03);
        opacity: .95;
    }
}

/* Light tema varyantı */
html:not(.dark) .forum-header .hdr-inner {
    background: rgba(255, 255, 255, .65);
    border-color: rgba(15, 23, 42, .12);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12), inset 0 1px 0 rgba(255, 255, 255, .6);
}

html:not(.dark) .forum-header .hdr-inner::before {
    background:
        radial-gradient(rgba(2, 6, 23, .05) 1px, transparent 1.1px) 0 0/16px 16px,
        radial-gradient(140px 120px at 7% 18%, rgba(99, 102, 241, .20), transparent 70%),
        radial-gradient(180px 140px at 92% 8%, rgba(14, 165, 233, .20), transparent 60%),
        radial-gradient(200px 180px at 70% 105%, rgba(234, 88, 12, .16), transparent 70%),
        conic-gradient(from 210deg at 30% -8%, rgba(59, 130, 246, .16), transparent 35%),
        linear-gradient(180deg, #eef2ff 0%, #e2e8f0 100%);
}

/* Küçük ekran uyarlamaları */
@media (max-width: 1024px) {
    .forum-header .hdr-inner {
        width: min(1200px, 94%);
        padding: 10px 12px;
    }

    .forum-header .hdr-inner::after {
        filter: blur(14px);
        opacity: .75;
    }
}

@media (max-width: 768px) {
    .forum-header .hdr-inner {
        border-radius: 12px;
        padding: 8px 10px;
    }

    .forum-header .hdr-inner::before {
        background-size: 16px 16px, auto, auto, auto, auto, auto;
    }
}

.btn-primary {
    background: #ffb700 !important;
    color: #fff !important;
}

/* (HATA düzeltme) user-chip → .user-chip */
.user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffb700 !important;
    color: #fff !important;
    border: 0;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(2, 6, 23, .10);
}

/* ==== 2 Kolon düzen + Sidebar kartları ==== */
.forum-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

@media (max-width:1100px) {
    .forum-layout {
        grid-template-columns: 1fr;
    }
}

.forum-aside .card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(2, 6, 23, .08);
}

html.dark .forum-aside .card {
    background: #0b1220;
    border-color: #1f2937;
    box-shadow: 0 10px 26px rgba(2, 6, 23, .35);
}

.card .card-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    font-weight: 800;
    font-size: 17px;
    color: #0f172a;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

html.dark .card .card-hd {
    color: #e5e7eb;
    background: #0f172a;
    border-color: #1f2937;
}

.card .list {
    padding: 6px 10px;
}

.card .li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 6px;
    border-radius: 10px;
}

.card .li+.li {
    margin-top: 4px;
}

.card .li:hover {
    background: rgba(2, 6, 23, .04);
}

html.dark .card .li:hover {
    background: rgba(255, 255, 255, .05);
}

.li .ava,
.li .datebox {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #eef2ff;
    color: #334155;
    font-weight: 800;
    border: 1px solid rgba(37, 99, 235, .18);
}

html.dark .li .ava,
html.dark .li .datebox {
    background: #0b1220;
    color: #cbd5e1;
    border-color: #1e293b;
}

.li .ava img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.li .title {
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.li .title a {
    color: #0b3b66;
    text-decoration: none;
}

.li .title a:hover {
    text-decoration: underline;
}

html.dark .li .title a {
    color: #bfdcff;
}

.li .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

html.dark .li .meta {
    color: #94a3b8;
}

.li .dot {
    opacity: .6;
}

.badge-cap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 4px 8px;
    border-radius: 8px;
}

html.dark .badge-cap {
    background: rgba(245, 158, 11, .14);
    border-color: rgba(245, 158, 11, .35);
    color: #fbbf24;
}

.datebox {
    grid-row: span 2;
}

.datebox .m {
    font-size: 13px;
    font-weight: 900;
}

.datebox .d {
    font-size: 16px;
    font-weight: 900;
}

.card .cat {
    color: #6b7280;
}

html.dark .card .cat {
    color: #9aa4b2;
}

.card .sep {
    margin: 4px 0;
    height: 1px;
    background: rgba(2, 6, 23, .06);
}

html.dark .card .sep {
    background: rgba(255, 255, 255, .06);
}

/* =============== FORUM LAYOUT (MAIN + ASIDE) =============== */
#forum-shell .forum-container {
    max-width: min(1600px, 92%);
    margin: 0 auto;
}

#forum-shell .forum-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 10px !important;
}

/* Ana bölüm taşma yapmasın */
#forum-shell .forum-main {
    min-width: 0;
}

/* Sağ sütun: sticky */
#forum-shell .forum-aside {
    position: sticky;
    top: 72px;
    margin-left: 0 !important;
    width: 360px;
    flex: 0 0 360px;
}

/* Küçük ekranlarda aside alta insin */
@media (max-width: 1100px) {
    #forum-shell .forum-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #forum-shell .forum-aside {
        position: static;
        width: auto;
        flex: none;
    }
}

/* ========= FORUM LAYOUT: ana içerik + sağ kolon ========= */
#forum-shell .forum-container {
    max-width: min(1600px, 92%);
    margin: 0 auto;
}

/* Ana içerik + aside yan yana, arada 10px */
#forum-shell .forum-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 10px;
    align-items: start;
}

/* Ana bölüm taşma yapmasın */
#forum-shell .forum-main {
    min-width: 0;
}

/* SAĞ SÜTUN – STICKY DEĞİL (gerekirse override edilir) */
#forum-shell .forum-aside {
    position: static !important;
    top: auto !important;
    width: 360px;
}

/* Küçük ekran: aside alta insin */
@media (max-width:1100px) {
    #forum-shell .forum-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #forum-shell .forum-aside {
        width: auto;
    }
}

/* ========= ASIDE KARTLARI ========= */
.forum-aside .forum-card {
    background: #0e1624;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, .25);
    padding: 14px 16px;
    color: #dbe2f0;
}

.forum-aside .forum-card+.forum-card {
    margin-top: 12px;
}

.forum-aside .fc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.forum-aside .fc-title {
    font-weight: 800;
    font-size: 20px;
    color: #e6edf7;
}

/* Öne çıkan içerik satırı */
.forum-aside .feat-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
}

.forum-aside .feat-av {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 40px;
    background: #0b1220;
    box-shadow: inset 0 2px 10px rgba(2, 6, 23, .25);
}

.forum-aside .feat-body {
    min-width: 0;
}

.forum-aside .feat-title {
    font-weight: 700;
    color: #cfe0ff;
    line-height: 1.25;
}

.forum-aside .feat-title a {
    color: inherit;
    text-decoration: none;
}

.forum-aside .feat-title a:hover {
    text-decoration: underline;
}

.forum-aside .feat-meta {
    margin-top: 4px;
    font-size: 13px;
    color: #9fb0c9;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Yaklaşan sunucular satırı */
.forum-aside .srv-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0;
}

.forum-aside .date-badge {
    flex: 0 0 40px;
    width: 40px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #1b2640, #121c33);
    border: 1px solid rgba(255, 255, 255, .08);
}

.forum-aside .date-badge .m {
    font-size: 12px;
    font-weight: 800;
    color: #d7e1ff;
    padding: 6px 0 2px;
}

.forum-aside .date-badge .d {
    font-size: 14px;
    font-weight: 800;
    color: #ffe6a3;
    padding-bottom: 6px;
}

.forum-aside .srv-body {
    min-width: 0;
}

.forum-aside .srv-title {
    font-weight: 800;
    color: #e6edf7;
    line-height: 1.25;
}

.forum-aside .srv-title a {
    color: inherit;
    text-decoration: none;
}

.forum-aside .srv-title a:hover {
    text-decoration: underline;
}

.forum-aside .srv-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #9fb0c9;
}

/* Link tonları */
.forum-aside a {
    color: #9dc3ff;
}

.forum-aside a:hover {
    color: #cfe0ff;
}

/* === [PATCH] Forum konteyner genişliğini eşitle === */
:root {
    --forum-container: min(1600px, 92%);
}

#forum-shell .forum-container,
.forum-shell .forum-toolbar,
.forum-shell .forum-core,
.forum-shell .hero-inner {
    width: var(--forum-container) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 2 kolon düzeni – aradaki boşluk 10px */
#forum-shell .forum-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 10px !important;
    align-items: start;
}

/* Sticky değilse bu kalsın; sticky kullanıyorsan bu bloğu kaldırabilirsin */
#forum-shell .forum-aside {
    position: static !important;
    top: auto !important;
    width: 360px;
}

/* Küçük ekran: aside alta */
@media (max-width:1100px) {
    #forum-shell .forum-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #forum-shell .forum-aside {
        width: auto;
    }
}

.forum-hero {
    margin: 18px 0 26px !important;
    display: none !important;
}

.forum-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 395px !important;
    gap: 0px;
    align-items: start;
    margin-top: 13px;
}

/******** SRONEWS — FORUM GENİŞLETME PATCH ********/
#forum-shell .forum-container {
    max-width: min(1800px, 96vw) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.forum-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 10px !important;
    align-items: start;
}

.forum-grid .forum-main,
.forum-grid .forum-core {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
}

/* === wpForo TAM GENİŞLİK PATCH === */
#forum-shell .forum-core {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#forum-shell .forum-core #wpforo,
#forum-shell .forum-core #wpforo #wpforo-wrap,
#forum-shell .forum-core #wpforo .wpforo-main,
#forum-shell .forum-core #wpforo .wpforo-content,
#forum-shell .forum-core #wpforo .wpf-container,
#forum-shell .forum-core #wpforo .wpfl-4,
#forum-shell .forum-core #wpforo .wpforo-section,
#forum-shell .forum-core #wpforo .wpf-threads {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#forum-shell .forum-core #wpforo #wpforo-menu .wpf-left {
    display: block !important;
}

#forum-shell .forum-core #wpforo .wpforo-subtop,
#forum-shell .forum-core #wpforo .wpf-breadcrumb {
    margin: 0 !important
}

#forum-shell .forum-core #wpforo .wpf-topic-forum-wrap {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important
}

@media (max-width:1100px) {
    #forum-shell .forum-grid {
        grid-template-columns: 1fr !important;
    }
}

.site-header .header-inner {
    display: none !important;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* === SRONEWS Footer click-fix (overlay kill) === */
.forum-footer {
    position: relative !important;
    z-index: 2147483646 !important;
    isolation: isolate !important;
}

.forum-footer * {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

.forum-footer::before,
.forum-footer::after {
    pointer-events: none !important;
}

.hdr-shape,
.forum-header .hdr-inner::before,
.forum-header .hdr-inner::after {
    pointer-events: none !important;
}

.elementor-location-footer,
.elementor-section-wrap,
.site,
.site-content,
.page,
.content {
    overflow: visible !important;
}

html.dark .side-card {
    background: #1F242A !important;
    border-color: #3f4957;
}

html.dark .btn-auth.btn-blue {
    background: #01FFBF !important;
    border-color: #2efac7 !important;
    color: #fff;
}

.auth-card .auth-link {
    font-size: 13px;
    text-decoration: none;
    color: #01FFBF !important;
}

html.dark .btn-auth.btn-ghost {
    background: transparent;
    color: #ffffff !important;
    border-color: #01FFBF !important;
}

#wpforo #wpforo-wrap .wpf-please-login {
    background-color: #1F242A !important;
}

#wpforo #wpforo-wrap .sro-badges {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    transform: translate(20px, 1px) !important;
}

/* ====================================================================
   === SRONEWS HEADER CUT OVERRIDE (aurora kapalı + sol şerit renk) ===
   ==================================================================== */
:root {
    --cut: #01FFBF;
    /* SOL KESİK ŞERİT ANA RENGİ (mint) */
    --cut2: rgba(1, 255, 191, .55);
    /* orta geçiş */
    --cut3: rgba(1, 255, 191, .18);
    /* dışa doğru solma */
}

/* Aurorayı sustur – mavi lekeleri kapat */
.forum-header .hdr-inner::before,
.forum-header .hdr-inner::after {
    display: none !important;
}

/* Sol kesik şerit */
.forum-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #01ffbf1f !important;
    overflow: hidden;
}

.forum-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(52vw, 860px);
    background: linear-gradient(135deg,
            var(--cut) 0%,
            var(--cut2) 35%,
            var(--cut3) 65%,
            rgba(1, 255, 191, 0) 100%);
    clip-path: polygon(0 0, 78% 0, 60% 100%, 0 100%);
    filter: drop-shadow(0 10px 24px rgba(2, 6, 23, .35));
    z-index: 0;
    pointer-events: none;
}

/* İçeriği üstte tut */
.forum-header .hdr-left,
.forum-header .hdr-right {
    position: relative;
    z-index: 1;
}

html.dark .auth-card .auth-row input[type="text"],
html.dark .auth-card .auth-row input[type="password"] {
    background: #135d4a !important;
    color: #e5e7eb;
    border-color: #1f2937;
}

#wpforo #wpforo-wrap .wpforo-post-head .wpf-post-head-top .wpf-post-stat .wpf-post-stat-box .wpf-tstat svg {
    fill: #01FFBF !important;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right {
    flex-grow: 1;
    padding-top: 15px;
    padding-left: 40px !important;
    dth: calc(100% - 100px);
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top .wpf-post-date {
    text-align: left;
    font-size: 12px;
    padding-bottom: 3px;
    padding-right: 30px !important;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post {
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
    border-radius: 20px !important;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-left .wpf-author-avatar {
    display: block;
    width: 100%;
    float: none;
    max-height: 80px;
    max-width: 80px;
    margin: 0 auto 7px auto;
    padding-left: 20px!important;
}

#wpforo #wpforo-wrap .wpforo-post-head .wpf-post-head-top {
    background-color: #F5F5F5;
    border-left: 3px solid #01FFBF !important;
}

#wpforo #wpforo-wrap .wpf-please-login {
    padding: 10px 30px;
    margin-top: 15px;
    text-align: center;
    border-radius: 20px !important;
}


.forum-header .hdr-center-img {
    position: absolute;
    left: 91% !important;
    top: 0px !important;
    transform: translateX(-50%);
    width: clamp(145px, 10vw, 534px) !important;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: .98;
    filter: drop-shadow(0 10px 28px rgba(2, 6, 23, .35));
}

#wpforo #wpforo-wrap #wpforo-stat-header .wpf-footer-title {
    border-bottom: 3px solid #01FFBF !important;
    margin-bottom: -2px;
}

.sron-rf-card {
    background: #1F242A !important;
    border: 1px solid #01FFBF !important;
    border-radius: 14px;
    box-shadow: 0 0px 20px rgb(2 123 94)!important;
    overflow: hidden;
}

.sron-rf-row label {
    display: block;
    font-size: 13px;
    margin: 4px 0 6px;
    opacity: .9;
    color: #fff !important;
}

.sron-rf-row input[type="text"], .sron-rf-row input[type="email"], .sron-rf-row input[type="password"] {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #01FFBF !important;
    border-radius: 10px;
    background: #135d4a !important;
    color: #0f172a;
    outline: 0;
}

.sron-rf-head {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-weight: 900;
    font-size: 20px;
    color: #fff !important;
}

.sron-btn.primary {
    background: #01FFBF !important;
    color: #fff;
    border-color: #ffffff !important;
}

.sron-btn.ghost {
    background: transparent;
    color: #01FFBF !important;
    border-color: #bfdbfe;
}

p {
    margin-block-end: .9rem;
    margin-block-start: 0;
    color: #fff !important;
}

*, :after, :before {
    box-sizing: border-box;
    color: #fff !important;
}

/* ===============================
   wpForo footer - kuvvetli & süslü
   Paste this into forum.css
   =============================== */

/* container - force important to override theme */
#wpforo-footer{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial !important;
  color: #dbeef3 !important;
  max-width: 1200px;
  margin: 18px auto !important;
  padding: 18px !important;
  box-sizing: border-box;
}

/* panel shells */
#wpforo-stat-header,
#wpforo-stat-body{
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(0,0,0,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.035) !important;
  box-shadow: 0 12px 36px rgba(2,6,10,0.65) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* subtle lift on hover to show interactivity */
#wpforo-stat-header:hover,
#wpforo-stat-body:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(2,6,10,0.72) !important;
}

/* header left title */
.wpf-footer-title{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  font-size:18px !important;
  color: #eaf7f9 !important;
  font-weight:600 !important;
}

/* icon box */
.wpf-footer-title svg{
  width:40px !important;
  height:40px !important;
  padding:6px !important;
  border-radius:10px !important;
  background: linear-gradient(135deg,#2ee6c8,#2bb7ff) !important;
  box-shadow: 0 8px 26px rgba(43,183,255,0.14) !important;
  flex-shrink:0 !important;
  -webkit-mask-size: cover;
  mask-size: cover;
}

/* header actions (sağ) */
.wpf-footer-buttons{
  display:flex !important;
  gap:10px !important;
  align-items:center !important;
  justify-content:flex-end !important;
  flex-wrap:wrap !important;
}
.wpf-footer-buttons a{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:9px 14px !important;
  border-radius:12px !important;
  border:1px solid rgba(255,255,255,0.04) !important;
  text-decoration:none !important;
  color:inherit !important;
  font-size:13px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00)) !important;
  transition: all .16s ease !important;
}
.wpf-footer-buttons a i{ font-size:15px !important; line-height:1 !important; }

/* action hover - neon glow */
.wpf-footer-buttons a:hover{
  transform: translateY(-5px) !important;
  border-color: rgba(43,183,255,0.22) !important;
  box-shadow: 0 12px 30px rgba(43,183,255,0.06) !important;
}

/* statistics row */
.wpf-footer-box ul{
  list-style:none !important;
  margin:0 !important;
  padding:12px 0 0 0 !important;
  display:flex !important;
  gap:26px !important;
  flex-wrap:wrap !important;
  align-items:center !important;
}
.wpf-footer-box ul li{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  min-width:130px !important;
  padding:8px 10px !important;
  border-radius:10px !important;
  transition: all .14s ease !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.008), rgba(0,0,0,0.02)) !important;
  border:1px solid rgba(255,255,255,0.02) !important;
}
.wpf-footer-box ul li:hover{
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 46px rgba(0,0,0,0.6) !important;
}

/* svg icons inside stats - colorize and size */
.wpf-footer-box ul li svg{
  width:30px !important;
  height:30px !important;
  flex-shrink:0 !important;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)) !important;
  transition: transform .18s ease, filter .18s ease !important;
}

/* icon hover pop */
.wpf-footer-box ul li:hover svg{ transform: scale(1.06) !important; filter: drop-shadow(0 8px 18px rgba(43,183,255,0.08)) !important; }

/* statistic value - gradient text, strong */
.wpf-stat-value{
  font-weight:800 !important;
  font-size:18px !important;
  letter-spacing:0.2px !important;
  background: linear-gradient(90deg,#7efce6,#57a8ff) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
}

/* labels */
.wpf-stat-label{
  display:block !important;
  font-size:13px !important;
  opacity:0.9 !important;
  margin-left:4px !important;
  color:#cfeff6 !important;
}

/* newest member / latest post */
.wpf-newest-member,
.wpf-newest-post{
  display:flex !important;
  gap:10px !important;
  align-items:center !important;
  padding:14px 0 0 0 !important;
  border-top:1px solid rgba(255,255,255,0.02) !important;
  font-size:14px !important;
  color:#d7eef2 !important;
}
.wpf-newest-member a,
.wpf-newest-post a{ color:#aef4ff !important; text-decoration:underline !important; }

/* small svg in newest */
.wpf-newest-member svg,
.wpf-newest-post svg{
  width:20px !important;
  height:20px !important;
  opacity:0.95 !important;
}

/* last info legends container */
.wpf-last-info{
  margin-top:12px !important;
  padding-top:12px !important;
  border-top:1px dashed rgba(255,255,255,0.03) !important;
  display:flex !important;
  gap:18px !important;
  flex-wrap:wrap !important;
  align-items:flex-start !important;
}

/* legend labels */
.wpf-forum-icons,
.wpf-topic-icons{ display:flex !important; gap:12px !important; align-items:center !important; flex-wrap:wrap !important; font-size:13px !important; color:#cfeff6 !important; }
.wpf-forum-icons .wpf-stat-label,
.wpf-topic-icons .wpf-stat-label{ font-weight:700 !important; margin-right:6px !important; color:#bfe9ee !important; }

/* legend items - pill style */
.wpf-topic-icons span,
.wpf-forum-icons span{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:7px 10px !important;
  border-radius:10px !important;
  background: rgba(255,255,255,0.01) !important;
  border:1px solid rgba(255,255,255,0.02) !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
  cursor:default !important;
}
.wpf-topic-icons span:hover,
.wpf-forum-icons span:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,0.55) !important;
}

/* FontAwesome specific coloring (gives each importance a tint) */
.fa-comments{ color:#9ee9ff !important; }
.fa-file, .far.fa-file{ color:#ffdca3 !important; }
.fa-file-alt, .far.fa-file-alt{ color:#cfe7ff !important; }
.fa-fire-flame-curved, .fa-fire{ color:#ffb86b !important; }
.fa-thumbtack{ color:#f4f4a8 !important; }
.fa-exclamation-circle{ color:#ff9aa2 !important; }
.fa-check-circle{ color:#9ef7b7 !important; }
.fa-eye-slash{ color:#c9c9d8 !important; }
.fa-lock{ color:#d1d1e0 !important; }

/* online indicator - pulse */
.wpf-footer-box ul li .wpf-stat-value.online{
  position:relative !important;
}
.wpf-footer-box ul li .wpf-stat-value.online::after{
  content:'' !important;
  position:absolute !important;
  right:-12px !important;
  top:6px !important;
  width:9px !important;
  height:9px !important;
  background:#39ff8a !important;
  border-radius:50% !important;
  box-shadow:0 0 12px rgba(57,255,138,0.5) !important;
  animation: pulseOnline 1600ms infinite ease-in-out !important;
  border:2px solid rgba(255,255,255,0.06) !important;
}
@keyframes pulseOnline{
  0%{ transform:scale(.9); opacity:1; }
  60%{ transform:scale(1.6); opacity:0.4; }
  100%{ transform:scale(.9); opacity:1; }
}

/* small powered-by adjustments */
#wpforo-poweredby{ text-align:right !important; margin-top:12px !important; opacity:0.78 !important; font-size:13px !important; }
#wpforo-poweredby .wpdimg{ height:22px !important; vertical-align:middle !important; margin-right:6px !important; }

/* make sure svgs inherit stroke/fill where possible */
#wpforo-footer svg path,
#wpforo-footer svg{ fill: currentColor !important; color:inherit !important; }

/* responsive tweaks */
@media (max-width:880px){
  .wpf-footer-buttons{ justify-content:flex-start !important; }
  .wpf-footer-box ul{ gap:10px !important; }
  .wpf-footer-box ul li{ min-width:92px !important; padding:8px !important; }
  #wpforo-footer{ padding:12px !important; }
}

/* last resort: if theme overrides with inline styles, use ultra-specific selector */
body #wpforo-footer, html body #wpforo-footer{
  --important-override: 1;
}

/* ---- Desktop'ta genişlet, mobile/tablet'de normale döndür ---- */
#wpforo-footer{
  box-sizing: border-box !important;
  max-width: none !important;
  /* Masaüstünde genişlik; merkezi hizalama için margin-left hesaplanıyor */
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* İç blokların da aynı genişlik davranışını sürdürmesi */
#wpforo-stat-header,
#wpforo-stat-body{
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* Eğer taşma olursa sayfa kaydırmasın diye (isteğe bağlı)
   Bu satırı eğer yatay scroll görürsen ekleyebilirsin:
html, body { overflow-x: hidden; } 
*/

/* --- Responsive: Tablet ve mobil için geri al ------------------- */
/* Tablet ve altında tam genişlik, taşma yok */
@media (max-width:1100px){
  #wpforo-footer{
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    border-radius: 12px !important; /* istersen kenar yuvarlağını geri al */
  }
}

/* Küçük mobil cihazlar için ekstra iç boşluk ve font/ikon küçültme */
@media (max-width:600px){
  #wpforo-footer{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .wpf-footer-title{ font-size:16px !important; }
  .wpf-footer-box ul li{ min-width:72px !important; gap:8px !important; padding:6px !important; }
  .wpf-footer-buttons a{ padding:8px 10px !important; font-size:13px !important; }
}

/* Eğer tasarımda yatay kaydırma (scroll) gözlemliyorsan:
   1) forum.css'e yapıştırdıktan sonra cache temizle,
   2) Tarayıcıda sayfayı F12 -> Responsive modda 320..768 aralıklarında kontrol et.
   3) Hâlâ yatay scroll varsa bana bildirin; hemen küçük tweak eklerim.
*/

#wpforo #wpforo-wrap #wpforo-footer .wpf-footer-box {
    padding: 8px 28px 30px !important;
    width: 100%;
}

#wpforo #wpforo-wrap .wpf-head-bar {
    background-color: #1F242A !important;
    border-bottom: 1px solid #01FFBF !important;
}

#wpforo #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-htr {
    border-bottom: #01FFBF 3px solid !important;
    color: #777777;
}

#wpforo #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-ttr {
    background: #1F242A !important;
}

#wpforo #wpforo-wrap .wpf-tools {
    background: #1F242A !important;
    outline: 3px solid #01FFBF !important;
}

#wpforo #wpforo-wrap #wpforo-poweredby p {
    text-align: end;
    display: none !important;
}