/* ============================================================
   SocialDown Pro — Global Design System 2026
   Premium dark glassmorphism theme
   ============================================================ */

/* === VARIABLES === */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --bg: #050508;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --tiktok: #ff0050;
    --instagram: #e1306c;
    --facebook: #1877f2;
    --youtube: #ff0000;
    --success: #22c55e;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

p { color: var(--text-dim); margin-bottom: 16px; }
a { transition: color 0.25s, opacity 0.25s; }
strong { color: var(--text-main); }

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BACKGROUND GLOW === */
.bg-glow {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow-1, .glow-2 {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(140px);
}

.glow-1 {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    top: -250px; right: -150px;
}

.glow-2 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.14) 0%, transparent 70%);
    bottom: -250px; left: -150px;
}

/* === NAV WRAPPER (centers nav same as .container) === */
.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 40%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.35));
    transition: filter 0.3s;
}

.logo:hover {
    filter: drop-shadow(0 0 26px rgba(236, 72, 153, 0.55));
}

.logo span {
    background: linear-gradient(135deg, #818cf8 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.nav-item:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.06);
}

.nav-item.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
}

/* === HERO SECTION === */
.hero {
    text-align: center;
    padding: 70px 0 90px;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

/* === PLATFORM BADGES === */
.platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.75);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

/* === Per-platform colors on hover & selected === */
.platform-badge[data-platform="tiktok"]:hover,
.platform-badge[data-platform="tiktok"].selected {
    color: #ff0050;
    border-color: #ff0050;
    background: rgba(255, 0, 80, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3), 0 6px 18px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.platform-badge[data-platform="instagram"]:hover,
.platform-badge[data-platform="instagram"].selected {
    color: #e1306c;
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3), 0 6px 18px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.platform-badge[data-platform="facebook"]:hover,
.platform-badge[data-platform="facebook"].selected {
    color: #1877f2;
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3), 0 6px 18px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.platform-badge[data-platform="youtube"]:hover,
.platform-badge[data-platform="youtube"].selected {
    color: #ff0000;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), 0 6px 18px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

/* === DOWNLOAD CARD === */
.download-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 40px 45px;
    border-radius: 32px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.input-group {
    display: flex;
    gap: 14px;
}

.input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.055);
    border: 1.5px solid var(--glass-border);
    padding: 20px 24px;
    border-radius: 18px;
    color: #fff;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.25s;
    min-width: 0;
}

.input-group input::placeholder { color: var(--text-dim); opacity: 0.7; }

.input-group input:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: #fff;
    border: none;
    padding: 0 38px;
    border-radius: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    min-height: 64px;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(236, 72, 153, 0.55);
    background: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
}

.btn-premium:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* === LOADING SHIMMER === */
.shimmer {
    display: none;
    text-align: center;
    padding: 35px 20px;
}

.loading-pulse {
    width: 52px; height: 52px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pulse-anim 1.4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
}

@keyframes pulse-anim {
    0%   { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(99,102,241,0.7); }
    50%  { transform: scale(1.08); box-shadow: 0 0 0 14px rgba(99,102,241,0); }
    100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}

/* === RESULT AREA === */
#result-area { display: none; margin-top: 30px; }

.video-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
}

/* Thumbnail column */
.video-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb { transform: scale(1.04); }

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(5,5,8,0.9) 100%),
                linear-gradient(to top, rgba(99,102,241,0.25) 0%, transparent 50%);
}

/* Info column */
.video-info {
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    width: 100%;
    border: none;
}

.dl-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.35);
}

.dl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(236, 72, 153, 0.55);
}

.dl-btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
}

.dl-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

/* === FEATURES GRID === */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 90px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 36px;
    border-radius: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover { transform: translateY(-8px); border-color: rgba(99,102,241,0.3); }
.feature-card:hover::before { opacity: 1; }

.feature-icon, .f-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p { font-size: 0.95rem; color: var(--text-dim); margin: 0; }

/* === SEO CONTENT GRID === */
.seo-content { margin: 90px 0; }

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.seo-block {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 34px;
    border-radius: 28px;
    transition: border-color 0.25s;
}

.seo-block:hover { border-color: rgba(99,102,241,0.25); }

.seo-block h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.seo-block p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

.seo-block a { color: var(--primary); text-decoration: none; font-weight: 600; }
.seo-block a:hover { text-decoration: underline; }

.seo-main-text {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
}

.seo-main-text h3 { font-size: 1.3rem; margin-bottom: 12px; }
.seo-main-text p { max-width: 650px; margin: 0 auto 20px; font-size: 0.95rem; }

/* === FAQ === */
.faq {
    margin-top: 80px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: 32px;
}

.faq > h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    user-select: none;
    transition: color 0.2s;
    gap: 16px;
}

.faq-q:hover { color: var(--primary); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a p { font-size: 0.95rem; color: var(--text-dim); padding-bottom: 20px; margin: 0; }

.faq-item.active .faq-a { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* === TOAST NOTIFICATION === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--glass-border);
    padding: 16px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    white-space: nowrap;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* === FOOTER === */
footer {
    text-align: center;
    padding: 60px 0 40px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

footer p { margin: 0; color: var(--text-dim); font-size: 0.9rem; }

/* === SILO/INTERNAL NAV === */
.silo-nav {
    border-top: 1px solid var(--glass-border);
    padding: 70px 0;
    margin-top: 80px;
}

.silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.silo-column h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }

.silo-column a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.silo-column a:hover { color: var(--primary); padding-left: 6px; }

/* === BLOG STYLES === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.blog-card img { width: 100%; height: 200px; object-fit: cover; }

.blog-card-content { padding: 26px; }

.blog-card h2 { font-size: 1.15rem; margin-bottom: 12px; color: #fff; }
.blog-card p { color: var(--text-dim); font-size: 0.93rem; line-height: 1.6; margin: 0; }

.blog-header { text-align: center; margin-bottom: 60px; }

.blog-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    background: linear-gradient(135deg, var(--primary), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Blog Article */
.article-container {
    max-width: 800px;
    margin: 60px auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 36px;
    line-height: 1.8;
}

.article-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-container h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--primary); }

.article-container p { font-size: 1.05rem; color: var(--text-dim); }

.article-container img { width: 100%; border-radius: 18px; margin: 28px 0; border: 1px solid var(--glass-border); }

.article-container ol, .article-container ul { margin: 0 0 28px 28px; color: var(--text-dim); }
.article-container li { margin-bottom: 10px; }

.meta-info {
    display: flex;
    gap: 20px;
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.cta-box {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99,102,241,0.3);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    margin: 38px 0;
}

/* === PRIVACY & TERMS PAGES === */
.legal-container {
    max-width: 860px;
    margin: 60px auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 32px;
}

.legal-container h1 { font-size: 2.2rem; margin-bottom: 30px; }
.legal-container h2 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--primary); }
.legal-container p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 18px; }

/* === 404 PAGE === */
.error-container {
    text-align: center;
    padding: 120px 20px;
}

.error-container h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 18px; padding: 20px 0; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .nav-item { padding: 8px 14px; font-size: 0.85rem; }

    .hero { padding: 40px 0 70px; }

    .download-card { padding: 28px 22px; border-radius: 24px; }
    .input-group { flex-direction: column; gap: 12px; }
    .btn-premium { min-height: 58px; width: 100%; }

    .video-card { display: flex; flex-direction: column; }
    .video-thumb { width: 100%; min-width: unset; height: 200px; max-height: 240px; }

    .faq { padding: 30px 22px; }

    .article-container, .legal-container { padding: 28px 22px; margin: 30px auto; }

    .seo-block h2 { font-size: 1.15rem; }
    .features { gap: 18px; }
    .feature-card { padding: 28px; }

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

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero h1 { font-size: 2rem; }
    .platforms { gap: 8px; }
    .platform-badge { padding: 8px 14px; font-size: 0.82rem; }
    .meta-info { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   BLOG SPECIFIC STYLES
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: inline-block;
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }

/* Article Container */
.blog-article {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 32px;
    line-height: 1.8;
    backdrop-filter: blur(12px);
}

/* Hero */
.blog-hero {
    text-align: center;
    margin-bottom: 40px;
}
.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-dim);
}
.blog-category {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
}
.blog-category[data-platform="instagram"] { background: rgba(225,48,108,0.2); color: #e1306c; }
.blog-category[data-platform="youtube"] { background: rgba(255,0,0,0.2); color: #ff0000; }
.blog-category[data-platform="facebook"] { background: rgba(24,119,242,0.2); color: #1877f2; }
.blog-category[data-platform="tiktok"] { background: rgba(255,0,80,0.2); color: #ff0050; }

.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-hero h1 span {
    background: linear-gradient(135deg, var(--primary), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-lead {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 30px;
}
.blog-hero-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Table of Contents */
.blog-toc {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 16px;
    margin: 40px 0;
}
.blog-toc strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}
.blog-toc ol {
    margin: 0;
    padding-left: 20px;
}
.blog-toc li {
    margin-bottom: 8px;
}
.blog-toc a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.blog-toc a:hover { color: var(--primary); }

/* Content Typography */
.blog-content h2 {
    font-size: 1.7rem;
    color: #fff;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.blog-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 30px 0 15px;
}
.blog-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
}
.blog-content ul, .blog-content ol {
    color: var(--text-dim);
    margin-bottom: 25px;
    padding-left: 20px;
}
.blog-content li {
    margin-bottom: 10px;
}
.blog-content strong {
    color: #e2e8f0;
}
.blog-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.blog-content a:hover {
    border-color: var(--primary);
}

/* UI Elements inside blog */
.blog-tip {
    background: rgba(236, 72, 153, 0.1);
    border-left: 4px solid #ec4899;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
    color: #e2e8f0;
}

.blog-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.step {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}
.step-num {
    background: var(--primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}
.step strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.step p { margin: 0; font-size: 0.95rem; }

.blog-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}
.comparison-item {
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    color: #e2e8f0;
}
.comparison-item.good { border-left: 4px solid #10b981; }
.comparison-item.bad { border-left: 4px solid #ef4444; }

/* FAQs */
.faq-item {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
}
.faq-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.faq-item p { margin: 0; }

/* Call to Action */
.blog-cta {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.1));
    border: 1px solid var(--primary);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin: 50px 0;
}
.blog-cta h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}
.blog-cta p {
    color: var(--text-dim);
    margin-bottom: 25px;
}

/* Related */
.blog-related {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    margin-top: 40px;
}
.blog-related h3 { color: #fff; margin-bottom: 20px; }
.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.related-card {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s;
}
.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.related-platform {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 10px;
}
.related-card strong {
    display: block;
    color: #fff;
    line-height: 1.4;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-article { padding: 30px 20px; }
    .blog-comparison, .related-grid { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 1.8rem; }
}
