/*
Theme Name: RootDark
Theme URI: #
Author: Custom
Description: Dark premium Android rooting blog theme with glossy card UI
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rootdark
*/

/* =============================================
   RESET & VARIABLES
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #080808;
    --bg-sec:    #0f0f0f;
    --bg-card:   #121212;
    --bg-card2:  #181818;
    --accent:    #00e5ff;
    --accent2:   #00b8cc;
    --text:      #e2e2e2;
    --text-sec:  #888;
    --text-dim:  #444;
    --border:    #1e1e1e;
    --border2:   #2a2a2a;
    --glow:      rgba(0, 229, 255, 0.08);
    --glow-hover:rgba(0, 229, 255, 0.14);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.site-logo {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.site-logo span { color: var(--accent); }
.site-logo-img {
    width: 150px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav ul li a {
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all .2s;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
    color: var(--accent);
    background: var(--glow);
}


/* Mobile toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
    transition: color .2s, border-color .2s, transform .3s ease;
}

/* =============================================
   LAYOUT WRAPPER
   ============================================= */
.site-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.content-area { min-width: 0; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    padding: 40px 0 36px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}
.hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 14px;
}
.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
}
.hero-title span { color: var(--accent); }
.hero-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1.4;
}
.hero-sub {
    font-size: 14px;
    color: var(--text-sec);
    max-width: 480px;
    line-height: 1.75;
}

/* =============================================
   AD SPACES
   ============================================= */
.ad-banner {
    background: #111;
    border: 1px dashed #252525;
    border-radius: 8px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}
.ad-sidebar-box {
    background: #111;
    border: 1px dashed #252525;
    border-radius: 8px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   FEATURED POST (large 2-col card)
   ============================================= */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
    transition: border-color .3s, box-shadow .3s;
}
.featured-post:hover {
    border-color: rgba(0,229,255,.25);
    box-shadow: 0 8px 40px rgba(0,229,255,.06);
}

.feat-img {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    background: #111;
}
.feat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease;
}
.featured-post:hover .feat-img img { transform: scale(1.04); }
.feat-img .no-img {
    width: 100%; height: 100%;
    min-height: 290px;
    background: linear-gradient(135deg,#111,#1a1a1a);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    color: var(--text-dim);
}

.feat-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.post-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.badge {
    display: inline-block;
    background: rgba(0,229,255,.1);
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0,229,255,.2);
}
.post-date {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.feat-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}
.feat-body p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.75;
}
.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 20px;
    border-radius: 7px;
    align-self: flex-start;
    margin-top: 4px;
    transition: all .2s;
}
.btn-read:hover {
    background: #33eeff;
    color: #000;
    box-shadow: 0 4px 20px rgba(0,229,255,.35);
    transform: translateY(-1px);
}

/* =============================================
   SECTION LABEL
   ============================================= */
.sec-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-dim);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* =============================================
   MEDIUM CARDS — 2 column
   ============================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

.card-med {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .2s;
}
.card-med:hover {
    border-color: rgba(0,229,255,.22);
    box-shadow: 0 6px 28px rgba(0,229,255,.07);
    transform: translateY(-3px);
}

.card-img {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: #111;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s; }
.card-med:hover .card-img img { transform: scale(1.06); }
.card-img .no-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#111,#1c1c1c);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--text-dim);
}

.card-tag {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(0,0,0,.65);
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0,229,255,.2);
    backdrop-filter: blur(6px);
}

.card-body { padding: 18px 20px; }
.card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}
.card-body p {
    font-size: 12.5px;
    color: var(--text-sec);
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.link-module {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
}
.link-module:hover { color: #fff; gap: 9px; }

/* =============================================
   SMALL CARDS — 3 column
   ============================================= */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.card-sm {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .2s;
}
.card-sm:hover {
    border-color: rgba(0,229,255,.22);
    box-shadow: 0 4px 20px rgba(0,229,255,.07);
    transform: translateY(-2px);
}

.card-sm-img {
    height: 125px;
    overflow: hidden;
    background: #111;
}
.card-sm-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s; }
.card-sm:hover .card-sm-img img { transform: scale(1.06); }
.card-sm-img .no-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#111,#1c1c1c);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--text-dim);
}

.card-sm-body { padding: 14px 16px; }
.card-sm-body h3 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}
.card-sm-body p {
    font-size: 12px;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.link-log {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    transition: color .2s;
}
.link-log:hover { color: #fff; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--bg-card);
    border: 1px solid var(--border2);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-sec);
    transition: all .2s;
    white-space: nowrap;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 700;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    position: sticky;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
}

.widget-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget-head h3 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.widget-ver {
    font-size: 9px;
    color: var(--accent);
    background: rgba(0,229,255,.08);
    border: 1px solid rgba(0,229,255,.15);
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 600;
}
.widget-body { padding: 14px 18px; }

/* Tech Suite Items */
.suite-active {
    background: rgba(0,229,255,.07);
    border: 1px solid rgba(0,229,255,.15);
    border-radius: 7px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    cursor: pointer;
}
.suite-active .s-name { color: var(--accent); font-size: 13px; font-weight: 600; }
.suite-active .s-icon { color: var(--accent); font-size: 13px; }

.suite-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    color: inherit;
}
.suite-item:last-of-type { border-bottom: none; }
.suite-item .s-icon {
    width: 26px; height: 26px;
    background: rgba(0,229,255,.06);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--accent);
    flex-shrink: 0;
}
.suite-item .s-name { font-size: 13px; color: var(--text-sec); font-weight: 500; transition: color .2s; }
.suite-item:hover .s-name { color: var(--accent); }
.suite-item .s-arr { margin-left: auto; color: var(--text-dim); font-size: 12px; }

.btn-dl {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: var(--accent);
    color: #000;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px;
    border-radius: 7px;
    transition: all .2s;
}
.btn-dl:hover {
    background: #33eeff;
    color: #000;
    box-shadow: 0 4px 18px rgba(0,229,255,.3);
}

/* Widget Search */
.w-search {
    display: flex;
    background: #151515;
    border: 1px solid var(--border2);
    border-radius: 7px;
    overflow: hidden;
}
.w-search input {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 13px;
    padding: 9px 12px;
    outline: none;
    width: 100%;
}
.w-search input::placeholder { color: var(--text-dim); }
.w-search button {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 9px 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s;
}
.w-search button:hover { background: #33eeff; }

/* Category list */
.cat-list li { border-bottom: 1px solid var(--border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    color: var(--text-sec);
    font-size: 13px;
    transition: color .2s;
}
.cat-list li a:hover { color: var(--accent); }
.cat-list li a .cnt {
    background: #1a1a1a;
    color: var(--text-dim);
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 3px;
}

/* Recent posts in sidebar */
.recent-list li { border-bottom: 1px solid var(--border); }
.recent-list li:last-child { border-bottom: none; }
.recent-list li a {
    display: block;
    padding: 10px 0;
    color: var(--text-sec);
    font-size: 13px;
    line-height: 1.4;
    transition: color .2s;
}
.recent-list li a:hover { color: var(--accent); }

/* =============================================
   SINGLE POST
   ============================================= */
.single-header { margin-bottom: 28px; }
.single-header h1 {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-top: 12px;
}
.single-thumb {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border2);
    margin-bottom: 32px;
}

/* Post content typography */
.post-content { color: var(--text); font-size: 15px; line-height: 1.8; }
.post-content h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 32px 0 14px; }
.post-content h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 24px 0 10px; }
.post-content h4 { font-size: 16px; font-weight: 600; color: #fff; margin: 20px 0 8px; }
.post-content h5, .post-content h6 { font-size: 14px; font-weight: 600; color: #ddd; margin: 16px 0 6px; }
.post-content p { margin-bottom: 16px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content ul, .post-content ol { margin: 14px 0; padding-left: 22px; }
.post-content li { margin-bottom: 7px; }
.post-content img { border-radius: 8px; margin: 20px 0; border: 1px solid var(--border2); }
.post-content code {
    background: #1a1a1a;
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}
.post-content pre {
    background: #0f0f0f;
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}
.post-content pre code { background: transparent; padding: 0; color: #e0e0e0; font-size: 13.5px; }
.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 24px 0;
    background: rgba(0,229,255,.03);
    border-radius: 0 8px 8px 0;
    color: var(--text-sec);
    font-style: italic;
}

/* Post navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.post-nav-item { display: flex; flex-direction: column; gap: 6px; max-width: 48%; }
.post-nav-right { text-align: right; align-items: flex-end; }
.post-nav-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.post-nav-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.4; transition: color .2s; }
.post-nav-title:hover { color: var(--accent); }

/* =============================================
   PAGE (static)
   ============================================= */
.page-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 32px; font-weight: 800; color: #fff; }

/* =============================================
   ARCHIVE / SEARCH
   ============================================= */
.arch-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.arch-header h1 { font-size: 24px; font-weight: 800; color: #fff; }
.arch-header span { color: var(--accent); }
.cat-hero-h2 { font-size: 15px; font-weight: 500; color: var(--accent); margin-top: 8px; line-height: 1.5; }
body.light-mode .cat-hero-h2 { color: var(--accent); }
body.light-mode .arch-header h1 { color: #111; }

/* =============================================
   CATEGORY — BRAND GRID (like firmwarefile.com)
   ============================================= */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 4px;
    margin-bottom: 36px;
}

@media (max-width: 600px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
    .brand-grid { grid-template-columns: 1fr; }
}

.brand-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 28px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .25s ease, border-color .25s, box-shadow .25s;
    cursor: pointer;
}
.brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,229,255,.3);
    box-shadow: 0 10px 32px rgba(0,229,255,.09);
}

.brand-card-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid var(--border);
}
.brand-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    filter: brightness(.85) saturate(.9);
    transition: filter .25s;
}
.brand-card:hover .brand-card-img img {
    filter: brightness(1.05) saturate(1.1);
}
.brand-card-img .brand-icon {
    font-size: 32px;
    line-height: 1;
}

.brand-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-sec);
    transition: color .2s;
    line-height: 1.3;
}
.brand-card:hover h3 { color: var(--accent); }

.brand-card .b-count {
    font-size: 10px;
    color: var(--text-dim);
    background: #1a1a1a;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* Category info bar */
.cat-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.cat-info p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
    flex: 1;
}
.cat-total {
    font-size: 11px;
    color: var(--text-dim);
    background: #151515;
    border: 1px solid var(--border2);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-sec); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--accent); }

/* =============================================
   404
   ============================================= */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    min-height: 50vh;
}
.error-404 .err-code { font-size: 100px; font-weight: 900; color: var(--accent); line-height: 1; }
.error-404 h2 { font-size: 24px; color: #fff; margin: 16px 0 10px; }
.error-404 p { color: var(--text-sec); margin-bottom: 24px; }
.btn-home {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 11px 24px;
    border-radius: 7px;
    transition: all .2s;
}
.btn-home:hover { background: #33eeff; color: #000; box-shadow: 0 4px 20px rgba(0,229,255,.3); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-disclaimer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
}
.footer-disclaimer h4 {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.footer-disclaimer p {
    font-size: 11.5px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 820px;
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-logo { font-size: 15px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-logo span { color: var(--accent); }

.footer-nav ul { display: flex; gap: 20px; }
.footer-nav ul li a {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .2s;
}
.footer-nav ul li a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--text-dim); }

/* =============================================
   THEME TOGGLE BUTTON
   ============================================= */
.theme-toggle {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text-sec);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    line-height: 1;
}
.theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,229,255,.07);
    transform: rotate(20deg);
}

/* =============================================
   LIGHT MODE
   ============================================= */
body.light-mode {
    --bg:         #f2f4f7;
    --bg-sec:     #e8eaed;
    --bg-card:    #ffffff;
    --bg-card2:   #f8f9fa;
    --accent:     #0099bb;
    --accent2:    #007a99;
    --text:       #1a1a1a;
    --text-sec:   #444444;
    --text-dim:   #888888;
    --border:     #dde1e7;
    --border2:    #cdd1d8;
    --glow:       rgba(0,153,187,.06);
    --glow-hover: rgba(0,153,187,.12);
    background: var(--bg);
    color: var(--text);
}

/* Header */
body.light-mode .site-header {
    background: rgba(242,244,247,.96);
    border-bottom-color: var(--border);
}
body.light-mode .site-logo { color: #111; }

/* Cards */
body.light-mode .featured-post,
body.light-mode .card-med,
body.light-mode .card-sm,
body.light-mode .widget,
body.light-mode .brand-card {
    background: #fff;
    border-color: var(--border2);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
body.light-mode .featured-post:hover,
body.light-mode .card-med:hover,
body.light-mode .card-sm:hover,
body.light-mode .brand-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,153,187,.12);
}
body.light-mode .brand-card-img {
    background: #eef0f3;
    border-color: var(--border2);
}
body.light-mode .brand-card .b-count {
    background: #eee;
    border-color: var(--border2);
    color: #888;
}

/* Text */
body.light-mode .feat-body h2,
body.light-mode .card-body h3,
body.light-mode .card-sm-body h3,
body.light-mode .brand-card h3,
body.light-mode .single-header h1,
body.light-mode .arch-header h1,
body.light-mode .page-header h1,
body.light-mode .post-content h2,
body.light-mode .post-content h3,
body.light-mode .post-content h4,
body.light-mode .post-content h5,
body.light-mode .post-content h6 { color: #111; }
body.light-mode .post-content { color: var(--text); }

body.light-mode .feat-body p,
body.light-mode .card-body p,
body.light-mode .card-sm-body p,
body.light-mode .post-content { color: #444; }

/* Hero */
body.light-mode .hero-title { color: #111; }
body.light-mode .hero-title span { color: var(--accent); }
body.light-mode .hero-heading { color: var(--accent); }
body.light-mode .hero-sub { color: #555; }
body.light-mode .hero-section { border-bottom-color: var(--border); }

/* Nav */
body.light-mode .main-nav ul li a { color: #555; }
body.light-mode .main-nav ul li a:hover,
body.light-mode .main-nav ul li.current-menu-item > a {
    color: var(--accent);
    background: rgba(0,153,187,.07);
}
body.light-mode .main-nav ul li { border-bottom-color: var(--border); }

/* Sidebar */
body.light-mode .widget-head { border-bottom-color: var(--border); }
body.light-mode .widget-head h3 { color: #111; }
body.light-mode .suite-item { border-bottom-color: var(--border); }
body.light-mode .suite-item .s-name { color: #555; }
body.light-mode .cat-list li { border-bottom-color: var(--border); }
body.light-mode .cat-list li a { color: #555; }
body.light-mode .cat-list li a .cnt { background: #eee; color: #888; }
body.light-mode .recent-list li { border-bottom-color: var(--border); }
body.light-mode .recent-list li a { color: #555; }
body.light-mode .w-search { background: #f0f0f0; border-color: var(--border2); }
body.light-mode .w-search input { color: #111; }

/* Badges & Tags */
body.light-mode .badge {
    background: rgba(0,153,187,.1);
    border-color: rgba(0,153,187,.25);
}
body.light-mode .card-tag { background: rgba(0,0,0,.55); }

/* Buttons */
body.light-mode .btn-read { background: var(--accent); color: #fff; }
body.light-mode .btn-read:hover { background: var(--accent2); color: #fff; }
body.light-mode .btn-dl { background: var(--accent); color: #fff; }

/* Ad banners */
body.light-mode .ad-banner,
body.light-mode .ad-sidebar-box {
    background: #eef0f3;
    border-color: #ccc;
    color: #999;
}

/* Pagination */
body.light-mode .pagination .page-numbers {
    background: #fff;
    border-color: var(--border2);
    color: #555;
}
body.light-mode .pagination .page-numbers:hover,
body.light-mode .pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
body.light-mode .pagination { border-top-color: var(--border); }

/* Post nav */
body.light-mode .post-nav { border-top-color: var(--border); }
body.light-mode .post-nav-label { color: #aaa; }
body.light-mode .post-nav-title { color: #111; }

/* Section label */
body.light-mode .sec-label {
    color: #aaa;
    border-bottom-color: var(--border);
}

/* Post content */
body.light-mode .post-content a { color: var(--accent); }
body.light-mode .post-content code { background: #eef0f3; color: var(--accent); }
body.light-mode .post-content pre { background: #eef0f3; border-color: var(--border2); }
body.light-mode .post-content blockquote { background: rgba(0,153,187,.04); }

/* Dark mode: override hardcoded light-theme inline styles in post content */
body:not(.light-mode) .post-content [style*="background: #f8f9ff"],
body:not(.light-mode) .post-content [style*="background: #fff8f6"],
body:not(.light-mode) .post-content [style*="background: #fff8e1"],
body:not(.light-mode) .post-content [style*="background: #f0f4ff"],
body:not(.light-mode) .post-content [style*="background: #e8f4ff"],
body:not(.light-mode) .post-content [style*="background: #e8fff0"] {
    background: #1a2233 !important;
    border-color: var(--border2) !important;
}
body:not(.light-mode) .post-content [style*="color: #1a1a2e"],
body:not(.light-mode) .post-content [style*="color: #333"],
body:not(.light-mode) .post-content [style*="color: #444"],
body:not(.light-mode) .post-content [style*="color: #555"] {
    color: #dde1e7 !important;
}
body:not(.light-mode) .post-content [style*="color: #0077cc"] {
    color: var(--accent) !important;
}
body:not(.light-mode) .post-content [style*="color: #e65100"] {
    color: #ffc107 !important;
}
body:not(.light-mode) .post-content [style*="color: #888"] {
    color: #aaa !important;
}

/* =============================================
   PRIVACY POLICY — .arr-* component styles
   ============================================= */
.arr-privacy-wrap { font-family: 'Segoe UI', sans-serif; max-width: 860px; margin: 0 auto; }

/* Hero */
.arr-privacy-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 16px; padding: 48px 40px; margin-bottom: 40px; text-align: center;
}
.arr-privacy-hero .badge {
    display: inline-block; background: rgba(0,200,255,0.15); color: #00c8ff;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 20px; border: 1px solid rgba(0,200,255,0.3); margin-bottom: 20px;
}
.arr-privacy-hero h1 { color: #fff; font-size: 32px; font-weight: 800; margin: 0 0 14px; line-height: 1.3; }
.arr-privacy-hero p { color: #8faabe; font-size: 15px; margin: 0; line-height: 1.7; }
.arr-privacy-hero .updated {
    display: inline-block; margin-top: 20px; background: rgba(255,255,255,0.07);
    color: #aabbcc; font-size: 13px; padding: 8px 20px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Quick Nav */
.arr-quick-nav {
    background: #f0f7ff; border: 1px solid #c8e0ff;
    border-radius: 12px; padding: 22px 26px; margin-bottom: 36px;
}
.arr-quick-nav > p { font-weight: 700; font-size: 14px; color: #0055aa; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px; }
.arr-quick-nav ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
.arr-quick-nav ol li { margin-bottom: 8px; font-size: 14px; }
.arr-quick-nav ol li a { color: #0077cc; text-decoration: none; font-weight: 500; }
.arr-quick-nav ol li a:hover { text-decoration: underline; }

/* Section Cards */
.arr-section {
    background: #ffffff; border: 1px solid #e8eef8;
    border-radius: 12px; padding: 28px 32px; margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.arr-section-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid #f0f4ff;
}
.arr-section-icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.arr-section h2 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin: 0; }
.arr-section p { font-size: 14px; color: #555; line-height: 1.85; margin: 0 0 12px; }
.arr-section p:last-child { margin-bottom: 0; }
.arr-section ul { margin: 10px 0; padding-left: 20px; }
.arr-section ul li { font-size: 14px; color: #555; line-height: 1.85; margin-bottom: 6px; }

/* Info Boxes */
.arr-info-box { border-radius: 8px; padding: 14px 18px; margin: 14px 0; font-size: 13px; line-height: 1.75; }
.arr-info-box.blue  { background: #e8f4ff; border-left: 4px solid #00c8ff; color: #004477; }
.arr-info-box.green { background: #e8fff0; border-left: 4px solid #00c851; color: #004422; }
.arr-info-box.amber { background: #fff8e1; border-left: 4px solid #ffc107; color: #664400; }
.arr-info-box.red   { background: #fff0f0; border-left: 4px solid #ff4444; color: #660000; }

/* Contact Card */
.arr-contact-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 14px; padding: 32px; text-align: center; margin-top: 32px;
}
.arr-contact-card h3 { color: #00c8ff; font-size: 20px; margin: 0 0 10px; }
.arr-contact-card p { color: #8faabe; font-size: 14px; margin: 0 0 20px; line-height: 1.7; }
.arr-contact-card a {
    display: inline-block; background: #00c8ff; color: #000;
    font-weight: 700; font-size: 14px; padding: 12px 32px; border-radius: 8px; text-decoration: none;
}

@media (max-width: 600px) {
    .arr-privacy-hero { padding: 32px 20px; }
    .arr-privacy-hero h1 { font-size: 24px; }
    .arr-section { padding: 20px 18px; }
    .arr-quick-nav ol { columns: 1; }
}

/* =============================================
   CONTACT PAGE — .arr-c-* / .arr-contact-* styles
   ============================================= */
.arr-contact-wrap { font-family: 'Segoe UI', sans-serif; max-width: 900px; margin: 0 auto; color: #1a1a2e; }

/* Hero */
.arr-c-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 16px; padding: 52px 40px; margin-bottom: 36px;
    text-align: center; position: relative; overflow: hidden;
}
.arr-c-hero::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,200,255,0.15), transparent 70%); border-radius: 50%;
}
.arr-c-hero::after {
    content: ''; position: absolute; bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(0,200,255,0.1), transparent 70%); border-radius: 50%;
}
.arr-c-hero .badge {
    display: inline-block; background: rgba(0,200,255,0.15); color: #00c8ff;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 20px; border: 1px solid rgba(0,200,255,0.3); margin-bottom: 18px;
}
.arr-c-hero h1 { color: #fff; font-size: 34px; font-weight: 800; margin: 0 0 14px; line-height: 1.3; position: relative; z-index: 1; }
.arr-c-hero h1 span { color: #00c8ff; }
.arr-c-hero p { color: #8faabe; font-size: 15px; margin: 0 auto; max-width: 560px; line-height: 1.75; position: relative; z-index: 1; }

/* Info Cards */
.arr-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.arr-info-card {
    background: #fff; border: 1px solid #e8eef8; border-radius: 12px;
    padding: 24px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.arr-info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.arr-info-card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
.arr-info-card h3 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.arr-info-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }
.arr-info-card a { color: #0077cc; text-decoration: none; font-weight: 600; font-size: 13px; }

/* Contact Grid */
.arr-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-bottom: 36px; }

/* Form Card */
.arr-form-card {
    background: #fff; border: 1px solid #e8eef8; border-radius: 14px;
    padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.arr-form-card h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.arr-form-card .subtitle { font-size: 13px; color: #888; margin: 0 0 24px; }
.arr-form-group { margin-bottom: 18px; }
.arr-form-group label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 7px; }
.arr-form-group label span { color: #ff4444; }
.arr-form-group input,
.arr-form-group select,
.arr-form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #dde4f0; border-radius: 8px;
    font-size: 14px; color: #333; background: #f8f9ff; box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s; font-family: 'Segoe UI', sans-serif; outline: none;
}
.arr-form-group input:focus,
.arr-form-group select:focus,
.arr-form-group textarea:focus { border-color: #00c8ff; box-shadow: 0 0 0 3px rgba(0,200,255,0.12); background: #fff; }
.arr-form-group textarea { resize: vertical; min-height: 130px; }
.arr-submit-btn {
    width: 100%; background: linear-gradient(135deg, #00c8ff, #0099cc); color: #000;
    font-weight: 700; font-size: 15px; padding: 14px; border: none; border-radius: 10px;
    cursor: pointer; letter-spacing: 0.3px; transition: opacity 0.2s, transform 0.2s; font-family: 'Segoe UI', sans-serif;
}
.arr-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.arr-form-note { font-size: 12px; color: #aaa; text-align: center; margin-top: 12px; }

/* Right Side */
.arr-contact-right { display: flex; flex-direction: column; gap: 18px; }
.arr-right-card {
    background: #fff; border: 1px solid #e8eef8; border-radius: 12px;
    padding: 22px 24px; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.arr-right-card h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.arr-right-card ul { list-style: none; margin: 0; padding: 0; }
.arr-right-card ul li { font-size: 13px; color: #555; padding: 8px 0; border-bottom: 1px solid #f0f4f8; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.arr-right-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.arr-right-card ul li .dot { width: 7px; height: 7px; background: #00c8ff; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }

/* Response Card */
.arr-response-card { background: linear-gradient(135deg, #f0faff, #e8f4ff); border: 1px solid #c8e4ff; border-radius: 12px; padding: 20px 22px; }
.arr-response-card h3 { font-size: 14px; font-weight: 700; color: #0055aa; margin: 0 0 12px; }
.arr-response-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(0,100,200,0.1); font-size: 13px; }
.arr-response-row:last-child { border-bottom: none; }
.arr-response-row .label { color: #555; }
.arr-response-row .value { font-weight: 700; color: #0077cc; }
.arr-response-row .value.fast { color: #00a84f; }
.arr-response-row .value.slow { color: #cc7700; }

/* Topics */
.arr-topics { margin-bottom: 36px; }
.arr-topics h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.arr-topics .sub { font-size: 14px; color: #888; margin: 0 0 20px; }
.arr-topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.arr-topic-item {
    background: #f8f9ff; border: 1.5px solid #e4eaf8; border-radius: 10px;
    padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px;
    transition: border-color 0.2s, background 0.2s;
}
.arr-topic-item:hover { border-color: #00c8ff; background: #f0faff; }
.arr-topic-item .t-icon { font-size: 24px; flex-shrink: 0; }
.arr-topic-item h4 { font-size: 13px; font-weight: 700; color: #1a1a2e; margin: 0 0 4px; }
.arr-topic-item p { font-size: 12px; color: #777; margin: 0; line-height: 1.5; }

/* Social Card */
.arr-social-card { background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: 14px; padding: 32px; text-align: center; margin-bottom: 24px; }
.arr-social-card h2 { color: #fff; font-size: 20px; margin: 0 0 8px; }
.arr-social-card p { color: #8faabe; font-size: 14px; margin: 0 0 24px; }
.arr-social-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.arr-social-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.arr-social-link:hover { opacity: 0.88; transform: translateY(-2px); }
.arr-social-link.youtube  { background: #ff0000; color: #fff; }
.arr-social-link.telegram { background: #0088cc; color: #fff; }
.arr-social-link.facebook { background: #1877f2; color: #fff; }
.arr-social-link.twitter  { background: #1da1f2; color: #fff; }
.arr-social-link.whatsapp { background: #25d366; color: #fff; }

/* FAQ */
.arr-faq h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.arr-faq .sub { font-size: 14px; color: #888; margin: 0 0 20px; }
.arr-faq-item { background: #fff; border: 1px solid #e8eef8; border-radius: 10px; padding: 18px 20px; margin-bottom: 12px; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.arr-faq-item h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; display: flex; gap: 8px; align-items: flex-start; }
.arr-faq-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.75; }

@media (max-width: 700px) {
    .arr-info-cards { grid-template-columns: 1fr; }
    .arr-contact-grid { grid-template-columns: 1fr; }
    .arr-topics-grid { grid-template-columns: 1fr 1fr; }
    .arr-c-hero h1 { font-size: 24px; }
    .arr-c-hero { padding: 36px 20px; }
}

/* Dark mode: Contact page */
body:not(.light-mode) .arr-contact-wrap { color: #dde1e7 !important; }
body:not(.light-mode) .arr-info-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-info-card h3 { color: #fff !important; }
body:not(.light-mode) .arr-info-card p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-info-card a { color: var(--accent) !important; }
body:not(.light-mode) .arr-form-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-form-card h2 { color: #fff !important; }
body:not(.light-mode) .arr-form-card .subtitle { color: #8899aa !important; }
body:not(.light-mode) .arr-form-group label { color: #ccd6e0 !important; }
body:not(.light-mode) .arr-form-group input,
body:not(.light-mode) .arr-form-group select,
body:not(.light-mode) .arr-form-group textarea { background: #0d1624 !important; border-color: #1e2f47 !important; color: #dde1e7 !important; }
body:not(.light-mode) .arr-form-group input:focus,
body:not(.light-mode) .arr-form-group select:focus,
body:not(.light-mode) .arr-form-group textarea:focus { background: #111c2d !important; border-color: var(--accent) !important; }
body:not(.light-mode) .arr-form-note { color: #556677 !important; }
body:not(.light-mode) .arr-right-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-right-card h3 { color: #fff !important; }
body:not(.light-mode) .arr-right-card ul li { color: #b0bec5 !important; border-bottom-color: #1e2f47 !important; }
body:not(.light-mode) .arr-response-card { background: #0d1624 !important; border-color: #1e3050 !important; }
body:not(.light-mode) .arr-response-card h3 { color: var(--accent) !important; }
body:not(.light-mode) .arr-response-row .label { color: #8899aa !important; }
body:not(.light-mode) .arr-response-row { border-bottom-color: #1e2f47 !important; }
body:not(.light-mode) .arr-topics h2 { color: #fff !important; }
body:not(.light-mode) .arr-topics .sub { color: #8899aa !important; }
body:not(.light-mode) .arr-topic-item { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-topic-item:hover { background: #0d1e35 !important; border-color: var(--accent) !important; }
body:not(.light-mode) .arr-topic-item h4 { color: #fff !important; }
body:not(.light-mode) .arr-topic-item p { color: #8899aa !important; }
body:not(.light-mode) .arr-faq h2 { color: #fff !important; }
body:not(.light-mode) .arr-faq .sub { color: #8899aa !important; }
body:not(.light-mode) .arr-faq-item { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-faq-item h4 { color: #fff !important; }
body:not(.light-mode) .arr-faq-item p { color: #b0bec5 !important; }

/* Dark mode: Privacy Policy page (.arr-* classes) */
body:not(.light-mode) .arr-privacy-wrap { color: #dde1e7 !important; }

body:not(.light-mode) .arr-quick-nav {
    background: #111c2d !important;
    border-color: #1e3050 !important;
}
body:not(.light-mode) .arr-quick-nav p { color: var(--accent) !important; }
body:not(.light-mode) .arr-quick-nav ol li a { color: var(--accent) !important; }

body:not(.light-mode) .arr-section {
    background: #111c2d !important;
    border-color: #1e2f47 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}
body:not(.light-mode) .arr-section-header { border-bottom-color: #1e2f47 !important; }
body:not(.light-mode) .arr-section h2 { color: #fff !important; }
body:not(.light-mode) .arr-section p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-section ul li { color: #b0bec5 !important; }
body:not(.light-mode) .arr-section a { color: var(--accent) !important; }

body:not(.light-mode) .arr-info-box.blue  { background: rgba(0,200,255,0.08) !important; border-left-color: var(--accent) !important; color: #90cfe8 !important; }
body:not(.light-mode) .arr-info-box.green { background: rgba(0,200,81,0.08)  !important; border-left-color: #00c851      !important; color: #80d8a0 !important; }
body:not(.light-mode) .arr-info-box.amber { background: rgba(255,193,7,0.08) !important; border-left-color: #ffc107      !important; color: #d4a830 !important; }
body:not(.light-mode) .arr-info-box.red   { background: rgba(255,68,68,0.08) !important; border-left-color: #ff4444      !important; color: #e07070 !important; }

/* =============================================
   ABOUT PAGE — .arr-about-* styles
   ============================================= */
.arr-about-wrap { font-family: 'Segoe UI', sans-serif; max-width: 900px; margin: 0 auto; color: #1a1a2e; width: 100%; box-sizing: border-box; overflow: hidden; }

/* Hero */
.arr-about-hero { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); border-radius: 16px; padding: 56px 40px; margin-bottom: 36px; text-align: center; position: relative; overflow: hidden; }
.arr-about-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(0,200,255,0.13), transparent 70%); border-radius: 50%; }
.arr-about-hero::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,200,255,0.08), transparent 70%); border-radius: 50%; }
.arr-about-hero .badge { display: inline-block; background: rgba(0,200,255,0.15); color: #00c8ff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; border: 1px solid rgba(0,200,255,0.3); margin-bottom: 20px; }
.arr-about-hero h1 { color: #fff; font-size: 36px; font-weight: 800; margin: 0 0 16px; line-height: 1.3; position: relative; z-index: 1; }
.arr-about-hero h1 span { color: #00c8ff; }
.arr-about-hero p { color: #8faabe; font-size: 15px; margin: 0 auto; max-width: 600px; line-height: 1.8; position: relative; z-index: 1; }
.arr-about-hero .hero-stats { display: flex !important; justify-content: center !important; align-items: flex-start !important; gap: 40px; margin-top: 36px; position: relative; z-index: 1; flex-wrap: wrap; }
.arr-about-hero .stat { flex: 0 0 auto !important; text-align: center !important; min-width: 70px; }
.arr-about-hero .stat-number { display: block !important; font-size: 30px; font-weight: 800; color: #00c8ff; line-height: 1; text-align: center !important; }
.arr-about-hero .stat-label { display: block !important; font-size: 12px; color: #8faabe !important; margin-top: 6px; letter-spacing: 0.5px; text-align: center !important; }
.arr-about-hero .stat-divider { flex: 0 0 1px !important; width: 1px; background: rgba(255,255,255,0.1); height: 40px; align-self: center; }

/* Section Titles */
.arr-section-title { font-size: 22px; font-weight: 800; color: #1a1a2e; margin: 0 0 6px; position: relative; padding-left: 16px; }
.arr-section-title::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 22px; background: linear-gradient(to bottom, #00c8ff, #0077cc); border-radius: 4px; }
.arr-section-sub { font-size: 14px; color: #888; margin: 0 0 24px; padding-left: 16px; }

/* What Is Card */
.arr-what-card { background: #fff; border: 1px solid #e8eef8; border-radius: 14px; padding: 32px; margin-bottom: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.05); width: 100%; box-sizing: border-box; }
.arr-what-card p { font-size: 15px; color: #444; line-height: 1.9; margin: 0 0 14px; }
.arr-what-card p:last-child { margin-bottom: 0; }
.arr-what-card strong { color: #1a1a2e; }

/* Mission Vision */
.arr-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.arr-mv-card { border-radius: 14px; padding: 28px 26px; box-sizing: border-box; }
.arr-mv-card.mission { background: linear-gradient(135deg, #0f2027, #203a43); border: 1px solid rgba(0,200,255,0.2); }
.arr-mv-card.vision { background: linear-gradient(135deg, #1a1a2e, #16213e); border: 1px solid rgba(108,99,255,0.2); }
.arr-mv-card .mv-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.arr-mv-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; }
.arr-mv-card.mission h3 { color: #00c8ff !important; }
.arr-mv-card.vision h3 { color: #a78bfa !important; }
.arr-mv-card p { font-size: 14px; line-height: 1.8; margin: 0; color: #8faabe !important; }

/* Offer Grid */
.arr-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.arr-offer-card { background: #fff; border: 1.5px solid #e4eaf8; border-radius: 12px; padding: 22px 18px; text-align: center; box-sizing: border-box; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.arr-offer-card:hover { border-color: #00c8ff; transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,200,255,0.12); }
.arr-offer-card .o-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.arr-offer-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.arr-offer-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }
.arr-offer-card .o-tag { display: inline-block; margin-top: 10px; background: #e8f4ff; color: #0077cc; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 10px; }

/* Why Choose Us */
.arr-why-list { background: #fff; border: 1px solid #e8eef8; border-radius: 14px; padding: 28px 32px; margin-bottom: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); width: 100%; box-sizing: border-box; }
.arr-why-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f0f4f8; }
.arr-why-item:last-child { border-bottom: none; padding-bottom: 0; }
.arr-why-item:first-child { padding-top: 0; }
.arr-why-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.arr-why-item h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 5px; }
.arr-why-item p { font-size: 13px; color: #666; margin: 0; line-height: 1.7; }

/* Brands */
.arr-brands-section { background: #f8f9ff; border: 1px solid #e4eaf8; border-radius: 14px; padding: 26px 28px; margin-bottom: 28px; box-sizing: border-box; width: 100%; }
.arr-brands-section h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 16px; text-align: center; }
.arr-brands-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.arr-brand-tag { background: #fff; border: 1.5px solid #dde4f0; color: #1a1a2e; font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 20px; transition: border-color 0.2s, background 0.2s; }
.arr-brand-tag:hover { border-color: #00c8ff; background: #e8f4ff; color: #0077cc; }

/* Promise Cards */
.arr-promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.arr-promise-card { border-radius: 12px; padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px; box-sizing: border-box; background: #fff; border: 1.5px solid #e4eaf8; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.arr-promise-card .p-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.arr-promise-card h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin: 0 0 5px; }
.arr-promise-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.65; }

/* Team Card */
.arr-team-card { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); border-radius: 14px; padding: 36px 32px; margin-bottom: 28px; text-align: center; width: 100%; box-sizing: border-box; }
.arr-team-card h3 { color: #00c8ff; font-size: 20px; font-weight: 800; margin: 0 0 12px; }
.arr-team-card p { color: #8faabe; font-size: 14px; line-height: 1.85; margin: 0 auto; max-width: 680px; }
.arr-team-card p strong { color: #fff; }

/* CTA Banner */
.arr-cta-banner { background: linear-gradient(135deg, #00c8ff 0%, #0077cc 100%); border-radius: 14px; padding: 36px 32px; text-align: center; margin-bottom: 28px; width: 100%; box-sizing: border-box; }
.arr-cta-banner h3 { color: #000; font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.arr-cta-banner p { color: rgba(0,0,0,0.65); font-size: 14px; margin: 0 0 22px; line-height: 1.7; }
.arr-cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.arr-cta-btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.arr-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.arr-cta-btn.dark  { background: #000; color: #fff; }
.arr-cta-btn.white { background: #fff; color: #0077cc; border: 2px solid #fff; }

/* Disclaimer */
.arr-disclaimer { background: #fff8e1; border: 1.5px solid #ffc107; border-radius: 12px; padding: 20px 24px; margin-bottom: 8px; width: 100%; box-sizing: border-box; }
.arr-disclaimer h4 { font-size: 14px; font-weight: 700; color: #b45309; margin: 0 0 8px; }
.arr-disclaimer p { font-size: 13px; color: #78350f; margin: 0; line-height: 1.75; }

@media (max-width: 700px) {
    .arr-about-hero { padding: 36px 20px; }
    .arr-about-hero h1 { font-size: 26px; }
    .arr-about-hero .hero-stats { gap: 20px; }
    .arr-about-hero .stat-divider { display: none; }
    .arr-mv-grid { grid-template-columns: 1fr; }
    .arr-offer-grid { grid-template-columns: 1fr 1fr; }
    .arr-promise-grid { grid-template-columns: 1fr; }
    .arr-what-card, .arr-why-list { padding: 22px 18px; }
    .arr-cta-banner { padding: 28px 20px; }
}

/* Dark mode: About page */
body:not(.light-mode) .arr-about-wrap { color: #dde1e7 !important; }
body:not(.light-mode) .arr-section-title { color: #fff !important; }
body:not(.light-mode) .arr-section-sub { color: #8899aa !important; }
body:not(.light-mode) .arr-what-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-what-card p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-what-card strong { color: #fff !important; }
body:not(.light-mode) .arr-offer-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-offer-card:hover { border-color: var(--accent) !important; }
body:not(.light-mode) .arr-offer-card h4 { color: #fff !important; }
body:not(.light-mode) .arr-offer-card p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-offer-card .o-tag { background: rgba(0,200,255,0.12) !important; color: var(--accent) !important; }
body:not(.light-mode) .arr-why-list { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-why-item { border-bottom-color: #1e2f47 !important; }
body:not(.light-mode) .arr-why-icon { background: rgba(255,255,255,0.07) !important; }
body:not(.light-mode) .arr-why-item h4 { color: #fff !important; }
body:not(.light-mode) .arr-why-item p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-brands-section { background: #0d1624 !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-brands-section h3 { color: #fff !important; }
body:not(.light-mode) .arr-brand-tag { background: #111c2d !important; border-color: #1e2f47 !important; color: #b0bec5 !important; }
body:not(.light-mode) .arr-brand-tag:hover { background: rgba(0,200,255,0.1) !important; border-color: var(--accent) !important; color: var(--accent) !important; }
body:not(.light-mode) .arr-promise-card { background: #111c2d !important; border-color: #1e2f47 !important; }
body:not(.light-mode) .arr-promise-card h4 { color: #fff !important; }
body:not(.light-mode) .arr-promise-card p { color: #b0bec5 !important; }
body:not(.light-mode) .arr-disclaimer { background: rgba(255,193,7,0.08) !important; border-color: rgba(255,193,7,0.4) !important; }
body:not(.light-mode) .arr-disclaimer h4 { color: #d4a830 !important; }
body:not(.light-mode) .arr-disclaimer p { color: #b08840 !important; }

/* Footer */
body.light-mode .site-footer { background: #e8eaed; border-top-color: var(--border); }
body.light-mode .footer-disclaimer { border-bottom-color: var(--border); }
body.light-mode .footer-disclaimer p,
body.light-mode .footer-disclaimer h4,
body.light-mode .footer-copy { color: #888; }
body.light-mode .footer-logo { color: #111; }
body.light-mode .footer-nav ul li a { color: #888; }

/* Category breadcrumb & info */
body.light-mode .breadcrumb a { color: #555; }
body.light-mode .cat-info p { color: #555; }
body.light-mode .cat-total { background: #eee; border-color: var(--border2); color: #666; }

/* Mobile menu */
body.light-mode .menu-toggle { border-color: var(--border2); color: #555; }
body.light-mode .theme-toggle { border-color: var(--border2); color: #555; }

/* No-image placeholders */
body.light-mode .no-img,
body.light-mode .feat-img .no-img,
body.light-mode .card-img .no-img,
body.light-mode .card-sm-img .no-img { background: #e8eaed; }

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 24px 48px;
    margin-top: 16px;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 16px;
}

.empty-icon {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 18px rgba(0,229,255,.25));
}

.empty-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.empty-desc {
    font-size: 14px;
    color: var(--text-sec);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.empty-desc strong { color: var(--accent); font-weight: 600; }

.empty-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-empty-home,
.btn-empty-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .2s ease;
}

.btn-empty-home {
    background: var(--accent);
    color: #000;
    border: 1px solid var(--accent);
}
.btn-empty-home:hover {
    background: var(--accent2);
    border-color: var(--accent2);
    color: #000;
    transform: translateY(-2px);
}

.btn-empty-back {
    background: transparent;
    color: var(--text-sec);
    border: 1px solid var(--border2);
}
.btn-empty-back:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--glow);
    transform: translateY(-2px);
}

/* Light mode */
body.light-mode .empty-state {
    background: #fff;
    border-color: var(--border2);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
body.light-mode .empty-title { color: #111; }
body.light-mode .btn-empty-home { color: #fff; }
body.light-mode .btn-empty-home:hover { color: #fff; }

/* =============================================
   COMMENTS
   ============================================= */
.comments-section {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

/* Section title */
.comments-title,
.comment-form-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -.2px;
}

/* ── Comment list ── */
.comment-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.comment-list .children { list-style: none; margin-top: 14px; padding-left: 28px; display: flex; flex-direction: column; gap: 14px; }

.comment-item > .comment-body {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color .2s;
}
.comment-item > .comment-body:hover { border-color: rgba(0,229,255,.18); }

/* Admin reply gets cyan left accent */
.comment-by-admin > .comment-body {
    border-left: 3px solid var(--accent);
    background: linear-gradient(145deg, rgba(0,229,255,.04), var(--bg-card2));
}

/* Comment header row */
.comment-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.comment-avatar-wrap { flex-shrink: 0; }
.comment-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border2);
    display: block;
}
.comment-by-admin .comment-avatar { border-color: var(--accent); }

.comment-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.comment-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.comment-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    background: var(--accent);
    color: #000;
    padding: 2px 7px;
    border-radius: 20px;
}
.comment-date {
    font-size: 11px;
    color: var(--text-dim);
}

/* Reply button */
.comment-reply-btn { margin-left: auto; }
.comment-reply-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
    background: transparent;
    border: 1px solid var(--border2);
    padding: 4px 10px;
    border-radius: 6px;
    transition: all .2s;
    white-space: nowrap;
}
.comment-reply-link:hover { color: var(--accent); border-color: var(--accent); background: var(--glow); }

/* Pending moderation */
.comment-pending {
    font-size: 12px;
    color: #f0a30a;
    margin-bottom: 8px;
}

/* Comment text */
.comment-content { font-size: 14px; color: var(--text-sec); line-height: 1.7; }
.comment-content p { margin-bottom: 8px; }
.comment-content p:last-child { margin-bottom: 0; }

/* ── Submission banner (shown via ?unapproved= URL) ── */
.comment-mod-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(0,229,255,.07);
    border: 1px solid rgba(0,229,255,.25);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 28px;
}
.cmb-icon {
    width: 36px; height: 36px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}
.cmb-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}
.cmb-text p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
    margin: 0;
}

/* ── Pending comment (visible only to submitter via cookie) ── */
.comment-is-pending > .comment-body {
    border-color: rgba(240,163,10,.3);
    background: linear-gradient(145deg, rgba(240,163,10,.04), var(--bg-card2));
    opacity: .85;
}
.comment-pending-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #f0a30a;
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(240,163,10,.25);
}
.cpb-dot {
    width: 7px; height: 7px;
    background: #f0a30a;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cpb-pulse 1.6s ease-in-out infinite;
}
@keyframes cpb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.75); }
}
.comment-content--dim { opacity: .6; }

/* Light mode */
body.light-mode .comment-mod-banner {
    background: rgba(0,153,187,.06);
    border-color: rgba(0,153,187,.2);
}
body.light-mode .cmb-text strong { color: var(--accent); }

/* Comments closed */
.comments-closed {
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    padding: 20px;
    border: 1px dashed var(--border2);
    border-radius: 10px;
}

/* Comment nav */
.comment-nav { display: flex; justify-content: space-between; margin-bottom: 28px; }
.comment-nav a { font-size: 13px; color: var(--accent); }

/* ── Comment Form ── */
#commentform { display: flex; flex-direction: column; gap: 16px; }
#cancel-comment-reply-link { font-size: 12px; color: var(--text-dim); margin-left: 10px; }
#cancel-comment-reply-link:hover { color: var(--accent); }

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field--full { grid-column: 1 / -1; }

.cf-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cf-req { color: var(--accent); }

.cf-field input,
.cf-field textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea {
    background: var(--bg-card2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus,
#commentform input:focus,
#commentform textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,229,255,.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-dim); }

.btn-comment-submit {
    align-self: flex-start;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 11px 24px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.btn-comment-submit:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

/* Logged in as notice */
#commentform .logged-in-as {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: -8px;
}
#commentform .logged-in-as a { color: var(--accent); }

/* ── Light mode ── */
body.light-mode .comment-item > .comment-body {
    background: #fff;
    border-color: var(--border2);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
body.light-mode .comment-by-admin > .comment-body {
    background: rgba(0,153,187,.03);
}
body.light-mode .comment-author-name { color: #111; }
body.light-mode .comment-content { color: #444; }
body.light-mode .comments-title,
body.light-mode .comment-form-title { color: #111; }
body.light-mode .comment-reply-link { color: #555; border-color: var(--border2); }
body.light-mode .cf-field input,
body.light-mode .cf-field textarea,
body.light-mode #commentform input[type="text"],
body.light-mode #commentform input[type="email"],
body.light-mode #commentform textarea {
    background: #f8f9fa;
    border-color: var(--border2);
    color: #111;
}
body.light-mode .btn-comment-submit { color: #fff; }
body.light-mode .btn-comment-submit:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
    .site-main { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .hero-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .header-inner { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 10px; }
    .site-logo-img { width: 130px; height: 44px; }
    .main-nav {
        width: 100%;
        order: 3;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
    }
    .main-nav.open {
        max-height: 480px;
        opacity: 1;
        transform: translateY(0);
    }
    .main-nav ul { flex-direction: column; gap: 0; padding: 6px 0 10px; }
    .main-nav ul li a { display: block; padding: 10px 8px; }
    .main-nav ul li { border-bottom: 1px solid var(--border); }
    .main-nav ul li:last-child { border-bottom: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .theme-toggle { display: flex; margin-left: 0; }
    .hero-title { font-size: 30px; }
    .featured-post { grid-template-columns: 1fr; }
    .feat-img { min-height: 200px; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .grid-3 { grid-template-columns: 1fr; }
    .hero-title { font-size: 26px; }
    .site-main { padding: 24px 16px 48px; }
    .cf-row { grid-template-columns: 1fr; }
    .comment-list .children { padding-left: 14px; }
}
