/**
 * Tickblaze-inspired Design CSS for PropTradingTech.net
 * Dark tech platform aesthetic with electric blue/purple gradients
 */

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Readex+Pro:wght@300;400;600;700&display=swap');

/* ============================================================
   GLOBAL BODY / BASE
   ============================================================ */
body {
    background: var(--color-secondary);
    color: var(--color-text-white);
    font-family: var(--font-main);
}

/* ============================================================
   HEADER - Dark sticky
   ============================================================ */
.header {
    background: rgba(10, 10, 31, 0.97);
    border-bottom: 1px solid rgba(46, 99, 254, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-logo {
    text-decoration: none;
}

.header-logo img {
    filter: brightness(1.2);
}

.header-logo-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.3rem;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(46,99,254,0.15);
}

.nav-dropdown {
    background: #0e0e28;
    border: 1px solid rgba(46,99,254,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.nav-dropdown-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    background: rgba(46,99,254,0.15);
    color: #ffffff;
}

/* Header CTA Button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-btn);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-btn:hover {
    box-shadow: var(--shadow-btn-hover);
    transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION - Full dark with gradient glow
   ============================================================ */
.hero-tb {
    position: relative;
    background: #0a0a1f;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-tb-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/ref/bg-bg-bg-O.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-tb-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(61,32,251,0.25) 0%, transparent 65%),
                radial-gradient(ellipse at 30% 80%, rgba(46,99,254,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-tb-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 5rem 0;
}

.hero-tb-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.hero-tb-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tb-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-tb-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-tb-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tb-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(46,99,254,0.3);
    transition: transform 0.4s ease;
}

.hero-tb-image img:hover {
    transform: translateY(-5px);
}

/* Audience cards in hero */
.hero-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-audience-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(46,99,254,0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-audience-card:hover {
    background: rgba(46,99,254,0.15);
    border-color: rgba(46,99,254,0.5);
    transform: translateY(-3px);
}

.hero-audience-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    box-shadow: var(--shadow-btn-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

/* ============================================================
   PARTNER LOGOS BAR
   ============================================================ */
.partners-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

.partners-bar:hover .partners-track {
    animation-play-state: paused;
}

.partners-track img {
    height: 28px;
    width: auto;
    opacity: 0.5;
    filter: brightness(2) grayscale(1);
    transition: opacity 0.3s ease;
}

.partners-track img:hover {
    opacity: 0.9;
    filter: brightness(2) grayscale(0);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   FEATURE CARDS GRID - Dark numbered cards
   ============================================================ */
.section-dark {
    background: #0a0a1f;
    padding: 5rem 0;
}

.section-dark-alt {
    background: #0e0e28;
    padding: 5rem 0;
}

.section-light-on-dark {
    background: #12122e;
    padding: 5rem 0;
}

.section-title-tb {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.section-subtitle-tb {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card-tb {
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card-tb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-tb:hover {
    background: #1a1a40;
    border-color: rgba(46,99,254,0.35);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.feature-card-tb:hover::before {
    opacity: 1;
}

.feature-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(46,99,254,0.3);
}

.feature-card-icon-tb {
    width: 56px;
    height: 56px;
    background: rgba(46,99,254,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.feature-card-tb:hover .feature-card-icon-tb {
    background: rgba(46,99,254,0.25);
}

.feature-card-icon-tb svg {
    width: 28px;
    height: 28px;
    fill: var(--color-primary-light);
    color: var(--color-primary-light);
}

.feature-card-tb h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.feature-card-tb p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.feature-card-tb .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.feature-card-tb .learn-more:hover {
    gap: 0.7rem;
    color: #ffffff;
}

/* ============================================================
   SPLIT LAYOUT SECTIONS
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.split-image:hover img {
    transform: scale(1.02);
}

.split-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(46,99,254,0.2);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(46,99,254,0.15);
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.split-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.split-feature-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.split-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.split-feature-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-primary);
    margin-top: 2px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section-tb {
    background: rgba(46,99,254,0.08);
    border-top: 1px solid rgba(46,99,254,0.15);
    border-bottom: 1px solid rgba(46,99,254,0.15);
    padding: 4rem 0;
}

.stats-grid-tb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item-tb {
    padding: 1.5rem;
}

.stat-number-tb {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label-tb {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section-tb {
    background: #0e0e28;
    padding: 5rem 0;
}

.category-card-tb {
    display: block;
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.12);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-tb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card-tb:hover {
    background: #1a1a40;
    border-color: rgba(46,99,254,0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.category-card-tb:hover::after {
    transform: scaleX(1);
}

.category-card-icon-tb {
    width: 52px;
    height: 52px;
    background: rgba(46,99,254,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.category-card-tb:hover .category-card-icon-tb {
    background: rgba(46,99,254,0.25);
}

.category-card-icon-tb svg {
    width: 26px;
    height: 26px;
    fill: #5a80ff;
    color: #5a80ff;
}

.category-card-tb h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.category-card-tb p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* ============================================================
   TAGS SECTION
   ============================================================ */
.tags-section-tb {
    background: #0a0a1f;
    padding: 4rem 0;
}

.tags-grid-tb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag-pill-tb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(46,99,254,0.1);
    border: 1px solid rgba(46,99,254,0.2);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tag-pill-tb:hover {
    background: rgba(46,99,254,0.25);
    border-color: rgba(46,99,254,0.5);
    color: #ffffff;
}

/* ============================================================
   CAROUSEL SECTION
   ============================================================ */
.carousel-section-tb {
    background: #0e0e28;
    padding: 3rem 0;
}

.carousel-section-tb .section-header {
    margin-bottom: 1.5rem;
}

.carousel-section-tb .section-title {
    color: #ffffff;
}

.kw-pill {
    background: rgba(46,99,254,0.1);
    border: 1px solid rgba(46,99,254,0.2);
    color: rgba(255,255,255,0.75);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kw-pill:hover {
    background: rgba(46,99,254,0.25);
    border-color: rgba(46,99,254,0.5);
    color: #ffffff;
}

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-section-tb {
    background: #0a0a1f;
    padding: 4rem 0;
}

.seo-content-tb {
    max-width: 900px;
    margin: 0 auto;
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.seo-content-tb p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================================
   FOOTER - Dark multi-column
   ============================================================ */
.footer {
    background: #05050f;
    border-top: 1px solid rgba(46,99,254,0.1);
    padding: 4rem 0 1.5rem;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(46,99,254,0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '›';
    color: var(--color-primary-light);
    font-weight: 700;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-disclaimer {
    margin-bottom: 0.5rem;
    font-size: 0.75rem !important;
}

/* ============================================================
   PAGE HERO BANNER - Internal pages
   ============================================================ */
.page-hero-tb {
    background: linear-gradient(135deg, #0a0a1f 0%, #12122e 50%, #0a0a1f 100%);
    border-bottom: 1px solid rgba(46,99,254,0.15);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero-tb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(61,32,251,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-tb .container {
    position: relative;
    z-index: 1;
}

.page-hero-tb h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.page-hero-tb p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-tb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.breadcrumb-tb a,
.breadcrumb-tb span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-tb a:hover {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-tb .sep {
    color: rgba(255,255,255,0.25);
}

.breadcrumb-tb .current {
    color: rgba(255,255,255,0.7);
}

/* ============================================================
   MAIN CONTENT AREA - Internal pages
   ============================================================ */
.main {
    background: #0a0a1f;
    padding-top: 0;
    padding-bottom: 0;
    flex: 1;
}

.content-area {
    padding: 3rem 0;
}

/* ============================================================
   ARTICLE CARDS - Dark style
   ============================================================ */
.article-card-tb {
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.article-card-tb:hover {
    border-color: rgba(46,99,254,0.3);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.article-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #1a1a40;
    flex-shrink: 0;
}

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

.article-card-tb:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-body h3,
.article-card-body h2 {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    flex: 1;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: auto;
}

.article-card-cat {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(46,99,254,0.15);
    color: var(--color-primary-light);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

/* Articles grid */
.articles-grid-tb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */
.article-layout {
    background: #0a0a1f;
    padding: 3rem 0;
}

.article-layout .container {
    max-width: 900px;
}

.article-content {
    background: #0a0a1f;
    color: #ffffff;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #ffffff;
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.article-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-content a {
    color: #5a80ff;
    text-decoration: underline;
}

.article-content a:hover {
    color: #ffffff;
}

.article-content ul,
.article-content ol {
    color: rgba(255,255,255,0.82);
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
    display: block;
    border: 1px solid rgba(46,99,254,0.15);
}

.article-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 1rem 1.5rem;
    background: rgba(46,99,254,0.07);
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-content th {
    background: rgba(46,99,254,0.15);
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.article-content td {
    color: rgba(255,255,255,0.75);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-content tr:hover td {
    background: rgba(46,99,254,0.05);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-tb {
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #0a0a1f;
    border: 1px solid rgba(46,99,254,0.2);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(46,99,254,0.5);
    box-shadow: 0 0 0 3px rgba(46,99,254,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-tb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.pagination-tb a,
.pagination-tb span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(46,99,254,0.15);
    color: rgba(255,255,255,0.6);
    background: #12122e;
}

.pagination-tb a:hover {
    background: rgba(46,99,254,0.15);
    color: #ffffff;
    border-color: rgba(46,99,254,0.35);
}

.pagination-tb .current-page {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page-tb {
    background: #0a0a1f;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-code-tb {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page-tb h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.error-page-tb p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mobile-nav {
    background: #0a0a1f;
    border-left: 1px solid rgba(46,99,254,0.15);
}

.mobile-nav-link {
    color: rgba(255,255,255,0.75);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(46,99,254,0.1);
}

.mobile-nav-dropdown a {
    color: rgba(255,255,255,0.55);
}

.mobile-nav-dropdown a:hover,
.mobile-nav-dropdown a.active {
    color: #ffffff;
}

.mobile-menu-toggle span {
    background: #ffffff;
}

/* ============================================================
   SECTION TITLE ACCENT LINE
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46,99,254,0.15);
    border: 1px solid rgba(46,99,254,0.25);
    border-radius: var(--radius-full);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    background: #12122e;
    border: 1px solid rgba(46,99,254,0.2);
    color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-title {
    color: #ffffff;
}

.modal-close {
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-tb-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-tb-text p {
        max-width: none;
    }

    .hero-tb-btns {
        justify-content: center;
    }

    .hero-audience-grid {
        max-width: 420px;
        margin: 0 auto;
    }

    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .stats-grid-tb {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .articles-grid-tb {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid-tb {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-audience-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-dark,
    .section-dark-alt,
    .section-light-on-dark,
    .stats-section-tb,
    .categories-section-tb,
    .tags-section-tb,
    .seo-section-tb,
    .carousel-section-tb {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .articles-grid-tb {
        grid-template-columns: 1fr;
    }

    .stats-grid-tb {
        grid-template-columns: 1fr;
    }

    .hero-tb-content {
        padding: 3rem 0;
    }

    .hero-tb-text h1 {
        font-size: 1.75rem;
    }
}
