/*
Theme Name: Trading Signals Pro
Theme URI: https://tradingsignalgroups.com
Author: Solo Admin
Description: A premium, fast, and custom directory theme for trading signal groups. Next-level UI.
Version: 2.0
Text Domain: tradingsignals
*/

/* ==========================================
   CSS VARIABLES — SAME AS ORIGINAL
   ========================================== */
:root {
    --bg-main:       #f8fafc;
    --card-bg:       #ffffff;
    --text-main:     #0f172a;
    --accent-blue:   #2563eb;
    --accent-green:  #16a34a;
    --accent-red:    #dc2626;
    --border-thick:  3px solid #0f172a;
    --shadow-hard:   6px 6px 0px 0px #0f172a;
    --radius-box:    8px;
    /* Extended palette */
    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --yellow:    #f59e0b;
    --orange:    #f97316;
    --purple:    #7c3aed;
    --teal:      #0d9488;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
}

/* ==========================================
   BASE RESET & TYPOGRAPHY
   ========================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-blue); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent-blue); }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   LAYOUT: TWO-COLUMN GRID
   ========================================== */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding-bottom: 60px;
}

.content-area { min-width: 0; }
.sidebar-area { position: sticky; top: 100px; }

@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar-area { position: static; }
}

/* ==========================================
   HEADER (SAME AS ORIGINAL — GLASSMORPHISM)
   ========================================== */
.site-header.premium-header-bar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    position: relative;
    top: auto;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--slate-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.custom-logo-img {
    max-height: 90px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
    object-fit: contain;
}
.logo a:hover .custom-logo-img { transform: scale(1.02); }

.nav-wrapper { display: flex; align-items: center; gap: 40px; }

.main-nav ul, .dummy-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: 0.2px;
}
.main-nav a:hover { color: var(--accent-blue); }

.submit-btn {
    background: var(--slate-900);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius-box);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(15,23,42,0.15);
    white-space: nowrap;
}
.submit-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.25);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--slate-900);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: block;
}

@media (max-width: 992px) {
    .mobile-toggle { display: flex; }
    .nav-wrapper {
        position: absolute;
        top: 85px; left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--slate-200);
        gap: 30px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        visibility: hidden;
        transition: clip-path 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s;
    }
    .nav-wrapper.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        visibility: visible;
    }
    .main-nav ul, .dummy-menu { flex-direction: column; align-items: center; gap: 25px; width: 100%; }
    .main-nav a { font-size: 1.2rem; }
    .submit-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }
    .mobile-toggle.active .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ==========================================
   HERO SECTION — NEXT LEVEL
   ========================================== */
.ts-hero {
    background: var(--slate-900);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

.ts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37,99,235,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(124,58,237,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.ts-hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 780px; margin: 0 auto; text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37,99,235,0.2);
    color: #93c5fd;
    border: 1px solid rgba(37,99,235,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.hero-accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-400);
    margin: 0 0 36px;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search-bar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 36px;
}

.hero-search-bar form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
    font-weight: 500;
}

.hero-search-input::placeholder { color: var(--slate-500); }

.hero-search-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}
.hero-search-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
    .ts-hero { padding: 60px 0 50px; }
    .hero-search-bar form { flex-direction: column; }
    .hero-search-input, .hero-search-btn { width: 100%; }
    .hero-stat-divider { display: none; }
    .hero-stats { gap: 20px; }
}

/* ==========================================
   PLATFORM BOXES SECTION
   ========================================== */
.ts-platforms-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid var(--slate-200);
}

.section-header { text-align: center; margin-bottom: 36px; }
.section-title { font-size: 1.8rem; font-weight: 900; margin: 0 0 8px; }
.section-sub { color: var(--slate-500); margin: 0; font-size: 1rem; }

.platform-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.plat-box {
    background: var(--card-bg);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--slate-900);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.plat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s;
}

.plat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.plat-telegram:hover { background: rgba(42,171,238,0.06); border-color: #2AABEE40; }
.plat-youtube:hover  { background: rgba(255,0,0,0.04);   border-color: #FF000040; }
.plat-whatsapp:hover { background: rgba(37,211,102,0.06); border-color: #25D36640; }
.plat-discord:hover  { background: rgba(88,101,242,0.06); border-color: #5865F240; }
.plat-facebook:hover { background: rgba(24,119,242,0.06); border-color: #1877F240; }
.plat-twitter:hover  { background: rgba(0,0,0,0.04);     border-color: #00000020; }

.plat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plat-icon svg { width: 100%; height: 100%; transition: transform 0.3s; }
.plat-box:hover .plat-icon svg { transform: scale(1.15) rotate(-5deg); }

.plat-text { text-align: center; font-size: 0.9rem; line-height: 1.4; }
.plat-text b { display: block; font-size: 1rem; }
.plat-text small { color: var(--slate-500); font-size: 0.78rem; }

.plat-arrow {
    font-size: 1.2rem;
    color: var(--slate-400);
    transition: all 0.2s;
    display: none;
}
.plat-box:hover .plat-arrow { color: var(--accent-blue); display: block; }

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.ts-categories-section { padding: 50px 0; }

.colorful-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.cat-card {
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    color: white;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: var(--border-thick);
    box-shadow: var(--shadow-hard);
}
.cat-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px 0px var(--text-main); color: white; }
.cat-icon { font-size: 1.8rem; }

.bg-crypto  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-forex   { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.bg-stocks  { background: linear-gradient(135deg, #16a34a, #15803d); }
.bg-options { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.bg-meme    { background: linear-gradient(135deg, #ec4899, #db2777); }
.bg-depin   { background: linear-gradient(135deg, #0d9488, #0f766e); }

/* ==========================================
   SECTION HEADINGS
   ========================================== */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--slate-200);
}

.section-heading h2 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0;
    color: var(--slate-900);
}

.see-all-link {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.see-all-link:hover { gap: 8px; }

/* ==========================================
   SIGNAL CARDS GRID — NEXT LEVEL
   ========================================== */
.ts-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

.ts-signal-card {
    background: var(--card-bg);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.ts-signal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

/* Card Thumbnail */
.ts-card-thumb {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: var(--slate-100);
}

.ts-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ts-signal-card:hover .ts-card-thumb img { transform: scale(1.05); }

.ts-card-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Free/Paid Badges on Thumbnail */
.ts-free-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.ts-paid-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
}

.ts-freemium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
}

.ts-new-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Card Body */
.ts-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.ts-card-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

/* Platform Badge */
.ts-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* Risk Badges */
.ts-risk-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}
.risk-low    { background: rgba(22,163,74,0.12);  color: var(--accent-green); }
.risk-medium { background: rgba(245,158,11,0.12); color: #b45309; }
.risk-high   { background: rgba(220,38,38,0.12);  color: var(--accent-red); }

/* Activity Badges */
.ts-activity-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}
.badge-very-active { background: rgba(22,163,74,0.12);  color: var(--accent-green); }
.badge-active      { background: rgba(37,99,235,0.1);   color: var(--accent-blue); }
.badge-moderate    { background: rgba(245,158,11,0.12); color: #b45309; }
.badge-low         { background: rgba(220,38,38,0.1);   color: var(--accent-red); }

.ts-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    color: var(--slate-900);
}
.ts-card-title a { color: inherit; text-decoration: none; }
.ts-card-title a:hover { color: var(--accent-blue); }

.ts-card-excerpt { font-size: 0.88rem; color: var(--slate-500); margin: 0; line-height: 1.5; }

.ts-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.ts-meta-item { font-size: 0.82rem; font-weight: 600; color: var(--slate-500); }

/* Star Rating */
.ts-star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
.ts-star-rating .star { font-size: 1rem; line-height: 1; }
.ts-star-rating .filled { color: var(--yellow); }
.ts-star-rating .empty  { color: var(--slate-300); }
.ts-star-rating .rating-num { font-size: 0.8rem; font-weight: 700; color: var(--slate-500); margin-left: 6px; }

/* Card Footer */
.ts-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--slate-100);
    margin-top: auto;
    gap: 10px;
}

/* Voting Box */
.vote-box-animated {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--slate-100);
    border-radius: 8px;
    overflow: hidden;
}

.vote-box-animated .upvote-btn,
.vote-box-animated .downvote-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s;
    color: var(--slate-600);
    font-family: inherit;
}
.vote-box-animated .upvote-btn:hover { background: rgba(22,163,74,0.15); color: var(--accent-green); }
.vote-box-animated .downvote-btn:hover { background: rgba(220,38,38,0.12); color: var(--accent-red); }
.vote-box-animated .vote-count { font-weight: 800; color: var(--slate-700); font-size: 0.85rem; }

.ts-view-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent-blue);
    color: white;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.ts-view-btn:hover { background: #1d4ed8; color: white; transform: translateY(-1px); }

/* Compact card variant */
.ts-signal-card-compact .ts-card-body { padding: 16px; }

.ts-no-posts { grid-column: 1/-1; text-align: center; padding: 40px; background: var(--slate-50); border-radius: var(--radius-lg); border: 2px dashed var(--slate-300); color: var(--slate-500); }

/* ==========================================
   BLOG CARDS
   ========================================== */
.ts-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ts-blog-card {
    background: var(--card-bg);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}
.ts-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--slate-300); }

.ts-blog-thumb { overflow: hidden; height: 180px; }
.ts-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ts-blog-card:hover .ts-blog-thumb img { transform: scale(1.05); }

.ts-blog-content { padding: 20px; }
.ts-blog-date { font-size: 0.78rem; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.5px; }
.ts-blog-title { font-size: 1.05rem; font-weight: 800; margin: 8px 0 10px; line-height: 1.3; }
.ts-blog-title a { color: var(--slate-900); text-decoration: none; }
.ts-blog-title a:hover { color: var(--accent-blue); }
.ts-blog-excerpt { font-size: 0.88rem; color: var(--slate-500); margin: 0 0 15px; line-height: 1.5; }
.ts-blog-readmore { font-size: 0.85rem; font-weight: 800; color: var(--accent-blue); text-decoration: none; }
.ts-blog-readmore:hover { text-decoration: underline; }

/* ==========================================
   SINGLE SIGNAL GROUP — NEXT LEVEL
   ========================================== */
.ts-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--slate-500);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.ts-post-breadcrumb a { color: var(--slate-500); font-weight: 600; }
.ts-post-breadcrumb a:hover { color: var(--accent-blue); }
.ts-post-breadcrumb span { color: var(--slate-400); }

.ts-single-post { background: var(--card-bg); border-radius: var(--radius-lg); border: 2px solid var(--slate-200); padding: 40px; margin-bottom: 32px; box-shadow: var(--shadow-md); }

/* Post Header */
.ts-post-header { margin-bottom: 30px; }

.ts-post-header-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.ts-platform-badge-lg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 800;
    border: 1.5px solid transparent;
}

.ts-free-badge-lg     { background: rgba(22,163,74,0.1);  color: var(--accent-green); border-color: rgba(22,163,74,0.3);  padding: 6px 16px; border-radius: 100px; font-weight: 800; font-size: 0.9rem; }
.ts-paid-badge-lg     { background: rgba(124,58,237,0.1); color: var(--purple);       border-color: rgba(124,58,237,0.3); padding: 6px 16px; border-radius: 100px; font-weight: 800; font-size: 0.9rem; }
.ts-freemium-badge-lg { background: rgba(249,115,22,0.1); color: var(--orange);       border-color: rgba(249,115,22,0.3); padding: 6px 16px; border-radius: 100px; font-weight: 800; font-size: 0.9rem; }

.ts-post-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--slate-900);
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ts-post-header-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ts-hmeta-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ts-post-rating-display { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.ts-post-rating-display .ts-star-rating .star { font-size: 1.3rem; }
.ts-post-rating-display .rating-num { font-size: 1rem; font-weight: 800; }

.ts-accuracy-tag {
    background: rgba(13,148,136,0.1);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(13,148,136,0.2);
}

.ts-post-votebox {
    background: var(--slate-100);
    border-radius: 10px;
    padding: 4px;
}
.ts-post-votebox .upvote-btn, .ts-post-votebox .downvote-btn { padding: 8px 14px; font-size: 0.9rem; }

.ts-post-vote-only { margin-bottom: 8px; }

/* Featured Image */
.ts-post-featured-img { margin: 24px 0; border-radius: var(--radius-md); overflow: hidden; }
.ts-post-img { width: 100%; height: auto; display: block; max-height: 450px; object-fit: cover; }

/* Quick Stats Grid */
.ts-post-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 28px 0;
}

.ts-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 12px 8px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-200);
}

.ts-stat-icon { font-size: 1.5rem; }
.ts-stat-value { font-size: 0.9rem; font-weight: 800; color: var(--slate-900); }
.ts-stat-label { font-size: 0.72rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.4px; }

/* Join Buttons */
.ts-join-section { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 8px; }

.ts-join-btn-primary {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-blue);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-box);
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    border: 3px solid var(--slate-900);
    box-shadow: var(--shadow-hard);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ts-join-btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px 0px var(--slate-900); color: white; }

.ts-join-btn-vip {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-box);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: 3px solid var(--slate-900);
    box-shadow: var(--shadow-hard);
    transition: all 0.2s;
}
.ts-join-btn-vip:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px 0px var(--slate-900); color: white; }

.ts-join-btn-website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--slate-900);
    padding: 16px 24px;
    border-radius: var(--radius-box);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--slate-300);
    transition: all 0.2s;
}
.ts-join-btn-website:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

.ts-btn-arrow { font-size: 1.1rem; }

.ts-join-disclaimer {
    font-size: 0.78rem;
    color: var(--slate-400);
    margin: 0 0 24px;
}

/* Editor Review */
.ts-editor-review {
    background: rgba(37,99,235,0.04);
    border: 1px solid rgba(37,99,235,0.15);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.ts-editor-review-header { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 800; color: var(--accent-blue); margin-bottom: 10px; }
.ts-editor-review p { margin: 0; color: var(--slate-700); font-size: 0.95rem; line-height: 1.7; }

/* Post Content */
.ts-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-700);
    margin: 28px 0;
}
.ts-post-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--slate-900); margin-top: 36px; margin-bottom: 14px; }
.ts-post-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--slate-800); margin-top: 28px; }
.ts-post-content p { margin-bottom: 18px; }
.ts-post-content ul, .ts-post-content ol { padding-left: 24px; margin-bottom: 18px; }
.ts-post-content li { margin-bottom: 6px; }
.ts-post-content blockquote { border-left: 4px solid var(--accent-blue); background: var(--slate-50); padding: 16px 20px; margin: 24px 0; font-style: italic; border-radius: 0 8px 8px 0; color: var(--slate-700); }
.ts-post-content a { color: var(--accent-blue); font-weight: 600; text-decoration: underline; }

/* Pros & Cons */
.ts-section-heading {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--slate-900);
    margin: 36px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--slate-200);
}

.ts-pros-cons-section { margin: 10px 0 32px; }
.ts-pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (max-width: 640px) { .ts-pros-cons-grid { grid-template-columns: 1fr; } }

.ts-pros-box, .ts-cons-box {
    border-radius: var(--radius-md);
    padding: 24px;
    border: 2px solid transparent;
}
.ts-pros-box { background: rgba(22,163,74,0.05); border-color: rgba(22,163,74,0.2); }
.ts-cons-box { background: rgba(220,38,38,0.04); border-color: rgba(220,38,38,0.15); }

.ts-pros-box h3 { color: var(--accent-green); font-size: 1rem; font-weight: 800; margin: 0 0 16px; }
.ts-cons-box h3 { color: var(--accent-red); font-size: 1rem; font-weight: 800; margin: 0 0 16px; }

.ts-pros-box ul, .ts-cons-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ts-pros-box li, .ts-cons-box li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--slate-700); line-height: 1.5; }
.ts-pro-check, .ts-con-x { flex-shrink: 0; font-size: 0.9rem; }

/* Screenshots */
.ts-screenshots-section { margin: 10px 0 32px; }
.ts-screenshots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.ts-screenshot-item { border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--slate-200); display: block; transition: all 0.2s; }
.ts-screenshot-item:hover { border-color: var(--accent-blue); transform: scale(1.02); }
.ts-screenshot-item img { width: 100%; height: 140px; object-fit: cover; display: block; }

/* Post Footer Meta */
.ts-post-footer-meta { padding-top: 20px; border-top: 1px dashed var(--slate-200); display: flex; flex-direction: column; gap: 8px; }
.ts-post-tags { font-size: 0.88rem; color: var(--slate-600); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ts-footer-tag { background: var(--slate-100); padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; color: var(--slate-600); text-decoration: none; }
.ts-footer-tag:hover { background: var(--accent-blue); color: white; }

/* Related Cards */
.ts-related-section { background: var(--card-bg); border-radius: var(--radius-lg); border: 2px solid var(--slate-200); padding: 32px; margin-bottom: 32px; box-shadow: var(--shadow-md); }
.ts-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.ts-related-card { display: flex; flex-direction: column; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: all 0.2s; }
.ts-related-card:hover { border-color: var(--accent-blue); transform: translateY(-3px); }
.ts-related-img { width: 100%; height: 110px; object-fit: cover; display: block; }
.ts-related-img-placeholder { width: 100%; height: 110px; background: var(--slate-100); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.ts-related-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.ts-related-body h4 { font-size: 0.9rem; font-weight: 800; color: var(--slate-900); margin: 0; line-height: 1.3; }

/* Reviews Section */
.ts-reviews-section { background: var(--card-bg); border-radius: var(--radius-lg); border: 2px solid var(--slate-200); padding: 32px; margin-bottom: 32px; box-shadow: var(--shadow-md); }
.ts-styled-comments .comment-list { list-style: none; padding: 0; margin: 0; }
.ts-styled-comments .comment { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.ts-styled-comments .comment-author { font-weight: 800; color: var(--slate-900); }
.ts-styled-comments .comment-content p { margin: 8px 0 0; color: var(--slate-700); }

/* ==========================================
   SIDEBAR — NEXT LEVEL
   ========================================== */
.main-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
    background: var(--card-bg);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-500);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--slate-100);
}

.widget-no-padding { padding: 0; overflow: hidden; }

/* Sidebar Search */
.ts-sidebar-search-widget { padding: 12px; }
.ts-sidebar-search { width: 100%; padding: 10px 14px; border: 2px solid var(--slate-200); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem; margin-bottom: 8px; box-sizing: border-box; }
.ts-sidebar-search:focus { border-color: var(--accent-blue); outline: none; }
.ts-sidebar-search-btn { width: 100%; background: var(--accent-blue); color: white; border: none; padding: 10px; border-radius: var(--radius-sm); font-family: inherit; font-weight: 800; cursor: pointer; font-size: 0.9rem; }

/* Recent Signals */
.recent-signals-list { display: flex; flex-direction: column; gap: 10px; }
.recent-signal-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s; }
.recent-signal-item:hover { background: var(--slate-50); }
.ts-recent-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; background: var(--slate-100); }
.ts-recent-body { flex: 1; min-width: 0; }
.recent-sig-title { font-size: 0.85rem; font-weight: 700; color: var(--slate-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-sig-meta { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.vote-count-small { font-size: 0.72rem; font-weight: 700; color: var(--accent-green); }
.tiny-tag { font-size: 0.7rem; font-weight: 700; background: var(--slate-100); color: var(--slate-500); padding: 1px 6px; border-radius: 4px; }

/* Platform List in Sidebar */
.ts-sidebar-platforms { display: flex; flex-direction: column; gap: 6px; }
.ts-sidebar-plat-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s; }
.ts-sidebar-plat-item:hover { background: var(--slate-50); }
.ts-sidebar-plat-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ts-sidebar-plat-name { flex: 1; font-size: 0.88rem; font-weight: 700; color: var(--slate-800); }
.ts-sidebar-plat-count { font-size: 0.75rem; font-weight: 800; background: var(--slate-100); color: var(--slate-500); padding: 2px 8px; border-radius: 100px; }

/* Sidebar Categories */
.sidebar-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.side-cat-card { border-radius: 8px; padding: 10px 8px; text-align: center; font-weight: 800; font-size: 0.78rem; text-decoration: none; color: white; transition: all 0.2s; display: block; border: 2px solid var(--text-main); box-shadow: 3px 3px 0 var(--text-main); }
.side-cat-card:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--text-main); color: white; }

/* Top Rated List */
.ts-top-rated-list { display: flex; flex-direction: column; gap: 8px; }
.ts-top-rated-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s; }
.ts-top-rated-item:hover { background: var(--slate-50); }
.ts-top-rank { font-size: 0.78rem; font-weight: 900; color: var(--slate-400); width: 22px; text-align: center; flex-shrink: 0; }
.ts-top-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ts-top-title { font-size: 0.84rem; font-weight: 700; color: var(--slate-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-top-stars { font-size: 0.8rem; }
.ts-top-plat { font-size: 1.1rem; flex-shrink: 0; }

/* Recent Reviews */
.recent-reviews-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-review-item { padding-bottom: 14px; border-bottom: 1px solid var(--slate-100); }
.sidebar-review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-author-info { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-avatar { border-radius: 50%; }
.review-author { font-size: 0.85rem; font-weight: 800; color: var(--slate-900); }
.review-text { font-size: 0.82rem; color: var(--slate-600); line-height: 1.5; font-style: italic; }
.review-post-link { display: block; font-size: 0.75rem; font-weight: 700; color: var(--accent-blue); margin-top: 4px; }

/* Submit CTA */
.ts-submit-cta-widget { background: var(--slate-900); border-color: var(--slate-900); color: white; text-align: center; }
.ts-submit-cta-widget h3 { color: white; margin: 0 0 10px; font-size: 1.1rem; }
.ts-submit-cta-widget p { color: var(--slate-400); font-size: 0.85rem; margin: 0 0 16px; line-height: 1.5; }
.ts-submit-cta-btn { display: block; background: var(--accent-blue); color: white; padding: 12px; border-radius: var(--radius-sm); font-weight: 800; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.ts-submit-cta-btn:hover { background: #1d4ed8; color: white; transform: translateY(-2px); }

/* Ad Placeholder */
.ad-placeholder-300 { background: var(--slate-100); width: 100%; height: 250px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: var(--slate-400); border: 2px dashed var(--slate-300); }

/* ==========================================
   BLOG / PAGE SINGLE TEMPLATES
   ========================================== */
.blog-single-card {
    background: var(--card-bg);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}
.blog-single-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--slate-900); line-height: 1.2; margin: 0; }
.blog-single-content { font-size: 1.05rem; line-height: 1.8; color: var(--slate-700); }
.blog-single-content h2 { color: var(--slate-900); font-size: 1.6rem; font-weight: 800; margin-top: 36px; }
.blog-single-content h3 { color: var(--slate-800); font-size: 1.3rem; font-weight: 700; margin-top: 28px; }
.blog-single-content blockquote { border-left: 4px solid var(--accent-blue); background: var(--slate-50); padding: 16px 20px; margin: 24px 0; font-style: italic; border-radius: 0 8px 8px 0; }
.blog-meta { font-size: 0.88rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.blog-category a { color: var(--accent-blue); text-decoration: none; }

.static-page-card { background: var(--card-bg); border: 2px solid var(--slate-200); border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--shadow-md); }
.page-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--slate-900); margin: 0; }
.page-content { font-size: 1.05rem; line-height: 1.8; color: var(--slate-700); }
.page-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--slate-900); margin-top: 36px; }
.page-content a { color: var(--accent-blue); font-weight: 700; text-decoration: none; }
.page-content a:hover { text-decoration: underline; }

/* ==========================================
   FOOTER (SAME CONTENT — UPGRADED STYLE)
   ========================================== */
.premium-footer {
    background: var(--text-main);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: var(--border-thick);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-description { font-size: 0.9rem; color: #94a3b8; line-height: 1.7; margin: 0; }

.footer-heading { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #64748b; margin: 0 0 16px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.copyright { font-size: 0.85rem; color: #64748b; font-weight: 600; }
.footer-disclaimer { font-size: 0.78rem; color: #475569; line-height: 1.6; max-width: 700px; margin: 0 auto; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .blog-single-card, .static-page-card { padding: 24px; }
    .ts-single-post { padding: 24px; }
    .ts-pros-cons-grid { grid-template-columns: 1fr; }
    .ts-post-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   SVG LOGO IN PLATFORM BOXES
   ========================================== */
.plat-icon svg { width: 100%; height: 100%; transition: transform 0.3s ease; }
.plat-box:hover .plat-icon svg { transform: scale(1.15) rotate(-5deg); }

/* ==========================================
   LEGACY COMPATIBILITY (Old HTML classes)
   ========================================== */
.group-card { background: var(--card-bg); border: var(--border-thick); box-shadow: var(--shadow-hard); border-radius: var(--radius-box); padding: 20px; }
.group-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px 0px var(--text-main); }
.join-btn { display: block; text-align: center; background: var(--accent-blue); color: white; padding: 12px; font-weight: 800; border: var(--border-thick); border-radius: var(--radius-box); text-transform: uppercase; }

/* Single old-style classes used in ajax load-more */
.single-premium-card { background: var(--card-bg); border: 2px solid var(--slate-200); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.single-premium-card:hover { border-color: var(--accent-blue); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.premium-title { font-size: 2rem; font-weight: 900; color: var(--slate-900); margin: 0 0 16px; }
.premium-header.text-center { text-align: center; }
.premium-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px; }
.pro-tag { background: var(--slate-100); color: var(--slate-600); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; }
.date-text { font-size: 0.82rem; color: var(--slate-400); font-weight: 600; }
.premium-content { font-size: 1rem; line-height: 1.8; color: var(--slate-700); margin: 24px 0; }
.premium-action-area { margin-top: 28px; }
.pro-join-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent-blue); color: white; padding: 15px 30px; border-radius: var(--radius-box); font-weight: 900; font-size: 1rem; text-decoration: none; border: 3px solid var(--slate-900); box-shadow: var(--shadow-hard); transition: all 0.2s; text-transform: uppercase; }
.pro-join-btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--slate-900); color: white; }
.btn-text { font-weight: 900; }
.btn-icon { font-size: 1.1rem; }
.related-signals-container, .premium-reviews-container { background: var(--card-bg); border: 2px solid var(--slate-200); border-radius: var(--radius-md); padding: 28px; margin-top: 24px; }
.related-title, .reviews-main-title { font-size: 1.2rem; font-weight: 900; margin: 0 0 20px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-card { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius-sm); padding: 16px; text-decoration: none; display: block; transition: all 0.2s; }
.related-card:hover { border-color: var(--accent-blue); }
.related-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--slate-900); margin: 0 0 6px; }
.related-read-more { font-size: 0.8rem; color: var(--accent-blue); font-weight: 700; }

/* ==========================================
   AD SPACES (HOMEPAGE)
   ========================================== */
.homepage-ad-wrapper { margin-bottom: 0; }
.ad-728x90 { background: var(--slate-100); width: 100%; max-width: 728px; height: 90px; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--slate-300); font-size: 0.82rem; font-weight: 700; color: var(--slate-400); margin: 0 auto; border-radius: var(--radius-sm); }

/* ==========================================
   TAXONOMY HERO (Platform & Signal Type)
   ========================================== */
.ts-tax-hero { padding: 50px 0 40px; }

.ts-tax-hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ts-tax-hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 3rem;
}
.ts-tax-hero-icon svg { width: 52px; height: 52px; }

.ts-tax-hero-text { flex: 1; min-width: 0; }

.ts-tax-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.ts-tax-breadcrumb a { color: #64748b; font-weight: 600; }
.ts-tax-breadcrumb a:hover { color: #2563eb; }

.ts-tax-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ts-tax-desc { font-size: 1rem; color: #475569; margin: 0 0 16px; line-height: 1.6; }

.ts-tax-stats { display: flex; flex-wrap: wrap; gap: 8px; }

.ts-tax-stat-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* ==========================================
   FILTER / SORT BAR
   ========================================== */
.ts-filter-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.ts-filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ts-result-count { font-size: 0.88rem; font-weight: 700; color: #475569; }
.ts-result-count strong { color: #0f172a; font-size: 1rem; }

.ts-filter-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ts-sort-label { font-size: 0.82rem; font-weight: 700; color: #64748b; white-space: nowrap; }

.ts-sort-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.ts-sort-pill {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.ts-sort-pill:hover { background: #e2e8f0; color: #0f172a; }
.ts-sort-pill.active { background: #0f172a; color: white; }

/* ==========================================
   LOAD MORE BUTTON
   ========================================== */
.ts-load-more-wrapper { text-align: center; padding: 40px 0 20px; }

.ts-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #0f172a;
    border: 3px solid #0f172a;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 4px 4px 0 #0f172a;
    transition: all 0.2s;
}
.ts-load-more-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #0f172a; }
.ts-load-more-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ts-load-more-arrow { font-size: 1rem; }

/* ==========================================
   SEO CONTENT BLOCK
   ========================================== */
.ts-seo-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin-top: 48px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
}
.ts-seo-block h2 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 12px; }
.ts-seo-block p { margin: 0 0 10px; }
.ts-seo-block p:last-child { margin-bottom: 0; }

.ts-vip-available { color: #7c3aed !important; font-weight: 700; font-size: 0.75rem !important; }

/* ==========================================
   SEARCH PAGE
   ========================================== */
.ts-search-hero {
    background: #0f172a;
    padding: 50px 0 40px;
    color: white;
}
.ts-search-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; color: white; margin: 0 0 8px; }
.ts-search-query { color: #60a5fa; }
.ts-search-count { color: #94a3b8; font-size: 0.95rem; margin: 0 0 24px; font-weight: 600; }

.ts-search-form { display: flex; gap: 8px; max-width: 600px; }
.ts-search-input-lg {
    flex: 1;
    padding: 13px 18px;
    border-radius: 8px;
    border: 2px solid #334155;
    background: #1e293b;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}
.ts-search-input-lg::placeholder { color: #64748b; }
.ts-search-input-lg:focus { border-color: #2563eb; outline: none; }
.ts-search-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

/* No Results */
.ts-no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}
.ts-no-results-icon { font-size: 4rem; margin-bottom: 16px; }
.ts-no-results h2 { font-size: 1.8rem; font-weight: 900; color: #0f172a; margin: 0 0 12px; }
.ts-no-results p { color: #64748b; font-size: 1rem; margin: 0 0 28px; }
.ts-no-results-suggestions h3 { font-size: 0.9rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 12px; }
.ts-suggestion-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.ts-suggestion-pill {
    background: #f1f5f9;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}
.ts-suggestion-pill:hover { background: #0f172a; color: white; }

/* ==========================================
   404 PAGE
   ========================================== */
.ts-404-wrapper { max-width: 560px; margin: 0 auto; }
.ts-404-number { font-size: 8rem; font-weight: 900; color: #e2e8f0; line-height: 1; margin-bottom: 16px; letter-spacing: -4px; }
.ts-404-title { font-size: 2rem; font-weight: 900; color: #0f172a; margin: 0 0 12px; }
.ts-404-desc { color: #64748b; font-size: 1rem; margin: 0 0 28px; }
.ts-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ts-404-search { margin-top: 40px; }

/* ==========================================
   COMMENTS / REVIEWS TEMPLATE
   ========================================== */
.ts-comments-count { font-size: 1.2rem; font-weight: 900; color: #0f172a; margin: 0 0 20px; }
.ts-comment-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }

.ts-comment-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.2s;
}
.ts-comment-card:hover { border-color: #2563eb; }

.ts-comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.ts-avatar { border-radius: 50%; flex-shrink: 0; }
.ts-comment-meta { flex: 1; }
.ts-comment-author { display: block; font-weight: 800; color: #0f172a; font-size: 0.95rem; }
.ts-comment-date { display: block; font-size: 0.78rem; color: #94a3b8; font-weight: 600; margin-top: 2px; }
.ts-comment-pending { font-size: 0.75rem; font-weight: 700; color: #f59e0b; background: rgba(245,158,11,0.1); padding: 3px 10px; border-radius: 100px; }

.ts-comment-body { font-size: 0.92rem; color: #334155; line-height: 1.7; }
.ts-comment-body p { margin: 0; }
.ts-comment-reply { margin-top: 10px; }
.ts-comment-reply a { font-size: 0.8rem; font-weight: 700; color: #2563eb; text-decoration: none; }

/* Comment Form */
.ts-comment-form-wrapper {
    margin-top: 36px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}
.ts-comment-form-title { font-size: 1.2rem; font-weight: 900; color: #0f172a; margin: 0 0 8px; }
.ts-comment-note { font-size: 0.88rem; color: #64748b; margin: 0 0 20px; }
.ts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ts-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ts-form-field label { font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.ts-form-field label span { color: #dc2626; }
.ts-form-field input, .ts-form-field textarea {
    padding: 11px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    resize: vertical;
    box-sizing: border-box;
    width: 100%;
}
.ts-form-field input:focus, .ts-form-field textarea:focus { border-color: #2563eb; outline: none; }
.ts-cookie-consent { flex-direction: row !important; align-items: center; }
.ts-cookie-consent label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; cursor: pointer; }

.ts-comment-submit {
    background: #0f172a;
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    border: 3px solid #0f172a;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.15);
    transition: all 0.2s;
}
.ts-comment-submit:hover { background: #2563eb; border-color: #2563eb; transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.1); }

.ts-comments-closed { font-size: 0.9rem; color: #94a3b8; text-align: center; padding: 20px; background: #f8fafc; border-radius: 8px; border: 1px dashed #e2e8f0; }

@media (max-width: 640px) {
    .ts-form-row { grid-template-columns: 1fr; }
    .ts-tax-hero-inner { flex-direction: column; text-align: center; }
    .ts-tax-stats { justify-content: center; }
    .ts-filter-inner { flex-direction: column; align-items: flex-start; }
    .ts-search-form { flex-direction: column; }
    .ts-search-input-lg, .ts-search-submit { width: 100%; }
}
