:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #8B5CF6;
    --primary-glow: rgba(124, 58, 237, 0.3);
    --secondary: #EC4899;
    --accent: #06B6D4;
    --bg-dark: #0F0A1A;
    --bg-card: #1A1128;
    --bg-card-hover: #221738;
    --bg-input: #150E24;
    --border: rgba(124, 58, 237, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);
    --text: #F1F0F5;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --gradient: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-dark: linear-gradient(135deg, #4C1D95 0%, #831843 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px; height: 72px;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.nav-logo i { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.8rem; }
.nav-menu { display: flex; gap: 8px; align-items: center; }
.nav-link {
    padding: 8px 18px; border-radius: 10px; font-weight: 500; font-size: 0.95rem;
    color: var(--text-muted); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(124, 58, 237, 0.15); }
.nav-link.active { color: var(--primary-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: none; transition: var(--transition);
    text-decoration: none; white-space: nowrap; font-family: inherit;
}
.btn-primary {
    background: var(--gradient); color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px var(--primary-glow); color: white; }
.btn-outline {
    background: transparent; color: var(--text); border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(124, 58, 237, 0.1); color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }

/* Hero */
.hero {
    position: relative; padding: 160px 0 100px; overflow: hidden;
    min-height: 85vh; display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.hero-platforms { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.platform-badge {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px;
    font-size: 0.9rem; color: var(--text-muted); transition: var(--transition);
}
.platform-badge:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.platform-badge i { font-size: 1.2rem; color: var(--primary-light); }

/* Sections */
.section-title {
    text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 60px;
    letter-spacing: -0.01em;
}
.features, .how-it-works, .dl-features { padding: 100px 0; }
.features { background: linear-gradient(180deg, transparent 0%, rgba(26, 17, 40, 0.5) 100%); }

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 30px; transition: var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--primary); }
.feature-icon {
    width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: var(--gradient-subtle); margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary-light);
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Steps */
.how-it-works { background: var(--gradient-subtle); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    text-align: center; padding: 40px 30px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    position: relative;
}
.step-number {
    width: 56px; height: 56px; border-radius: 50%; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: white; margin: 0 auto 20px;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* CTA */
.cta { padding: 80px 0; }
.cta-content {
    text-align: center; padding: 60px 40px; background: var(--gradient-dark);
    border-radius: var(--radius-lg); border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}
.cta-content h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

/* Downloader Page */
.downloader-hero { padding: 120px 0 60px; text-align: center; }
.downloader-hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.downloader-hero > .container > p { color: var(--text-muted); margin-bottom: 40px; }
.downloader-box {
    max-width: 720px; margin: 0 auto; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; box-shadow: var(--shadow-lg);
}
.input-group { display: flex; gap: 12px; }
.input-group input {
    flex: 1; padding: 16px 20px; background: var(--bg-input); border: 2px solid var(--border);
    border-radius: var(--radius); color: var(--text); font-size: 1rem; font-family: inherit;
    transition: var(--transition); outline: none;
}
.input-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.input-group input::placeholder { color: var(--text-dim); }
.platform-detect {
    margin-top: 12px; min-height: 24px; font-size: 0.9rem; color: var(--text-muted);
}
.result-area { margin-top: 24px; }
.result-card {
    display: flex; gap: 16px; padding: 16px; background: var(--bg-input);
    border-radius: var(--radius); margin-bottom: 20px;
}
.result-thumb { width: 120px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--bg-dark); }
.result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.result-info { flex: 1; }
.result-info h3 { font-size: 1rem; margin-bottom: 4px; line-height: 1.4; }
.result-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.format-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.format-btn {
    padding: 10px 20px; background: var(--bg-input); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-weight: 500;
    cursor: pointer; transition: var(--transition); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem;
}
.format-btn:hover, .format-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.download-note { font-size: 0.85rem; color: var(--text-dim); text-align: center; }
.loading { text-align: center; padding: 30px; }
.spinner {
    width: 40px; height: 40px; border: 3px solid var(--border);
    border-top-color: var(--primary); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.error-msg {
    padding: 16px; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm); color: #FCA5A5; margin-top: 16px; text-align: center;
}
.supported-platforms { display: flex; gap: 24px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.sp-item { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.95rem; }
.sp-item i { font-size: 1.3rem; color: var(--primary-light); }

/* Blog */
.blog-section { padding: 120px 0 60px; }
.blog-header { text-align: center; margin-bottom: 40px; }
.blog-header h1 { font-size: 2.5rem; margin-bottom: 8px; }
.blog-header p { color: var(--text-muted); }
.blog-categories { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.cat-tag {
    padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border);
    transition: var(--transition);
}
.cat-tag:hover, .cat-tag.active { background: var(--primary); color: white; border-color: var(--primary); }
.cat-tag span { font-size: 0.8rem; opacity: 0.7; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-category {
    display: inline-block; padding: 4px 12px; background: var(--gradient-subtle);
    border-radius: 50px; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 10px;
}
.blog-card-body h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.5; }
.blog-card-body h2 a { color: var(--text); }
.blog-card-body h2 a:hover { color: var(--primary-light); }
.blog-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-dim); }
.blog-card-meta i { margin-right: 4px; }

/* Blog Post */
.blog-post-page { padding: 120px 0 60px; }
.blog-post-header { max-width: 800px; margin: 0 auto 32px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 0.9rem; color: var(--text-dim); }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb span { color: var(--text-dim); }
.blog-post-header h1 { font-size: 2.4rem; line-height: 1.3; margin-bottom: 16px; }
.post-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.9rem; flex-wrap: wrap; align-items: center; }
.post-meta i { margin-right: 4px; }
.post-featured-image {
    max-width: 800px; margin: 0 auto 32px; border-radius: var(--radius-lg); overflow: hidden;
}
.post-featured-image img { width: 100%; display: block; }
.post-content {
    max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9;
    color: var(--text);
}
.post-content h2 { font-size: 1.6rem; margin: 40px 0 16px; font-weight: 700; }
.post-content h3 { font-size: 1.3rem; margin: 32px 0 12px; font-weight: 600; }
.post-content p { margin-bottom: 20px; }
.post-content img { max-width: 100%; border-radius: var(--radius); margin: 20px 0; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content code { background: var(--bg-card); padding: 2px 8px; border-radius: 4px; font-size: 0.9em; }
.post-content pre { background: var(--bg-card); padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 20px 0; }
.post-content blockquote {
    border-left: 4px solid var(--primary); padding: 16px 24px; margin: 20px 0;
    background: var(--gradient-subtle); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-muted);
}
.post-share {
    max-width: 800px; margin: 40px auto; padding: 24px; background: var(--bg-card);
    border-radius: var(--radius); display: flex; align-items: center; gap: 16px;
    border: 1px solid var(--border);
}
.post-share span { font-weight: 600; }
.share-btn {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1rem; color: white; transition: var(--transition);
}
.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #4267B2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn:hover { transform: scale(1.1); color: white; }
.related-posts { max-width: 800px; margin: 60px auto 0; }
.related-posts h3 { font-size: 1.5rem; margin-bottom: 24px; }

/* Page Headers */
.page-header {
    padding: 140px 0 60px; text-align: center;
    background: var(--gradient-subtle);
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 8px; }
.page-header p { color: var(--text-muted); font-size: 1.1rem; }

/* FAQ */
.faq-section { padding: 60px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
    overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: var(--bg-card); border: none; color: var(--text);
    font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit;
    text-align: left; transition: var(--transition);
}
.faq-question i { transition: var(--transition); color: var(--text-muted); flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: var(--bg-input);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 20px 24px; color: var(--text-muted); line-height: 1.8; }

/* Legal Pages */
.legal-content { padding: 60px 0; }
.content-card {
    max-width: 800px; margin: 0 auto; background: var(--bg-card);
    padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.content-card h2 { font-size: 1.4rem; margin: 32px 0 16px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.content-card h2:first-child { margin-top: 0; }
.content-card p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.content-card ul { margin: 0 0 20px 24px; color: var(--text-muted); }
.content-card li { margin-bottom: 8px; line-height: 1.7; }

/* Contact */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); text-align: center;
}
.info-icon { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-form-wrapper {
    background: var(--bg-card); padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 18px; background: var(--bg-input); border: 2px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-size: 1rem; font-family: inherit;
    transition: var(--transition); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Alerts */
.alert {
    padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px; font-size: 0.95rem;
}
.alert-success { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #6EE7B7; }
.alert-error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #FCA5A5; }

/* Badges */
.badge {
    display: inline-flex; padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.badge-info { background: rgba(59, 130, 246, 0.15); color: #93C5FD; }
.badge-success { background: rgba(16, 185, 129, 0.15); color: #6EE7B7; }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: #FCD34D; }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: #FCA5A5; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination .btn-sm { min-width: 40px; justify-content: center; }

/* Empty State */
.empty-state {
    text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h3 { margin-bottom: 8px; color: var(--text); }

/* Maintenance */
.maintenance-banner {
    margin-top: 100px; padding: 20px; background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius);
    text-align: center; color: #FCD34D;
}

/* Footer */
.footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 60px 0 30px; margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.footer-logo i { color: var(--primary-light); }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary-light); }
.footer-platforms span { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-platforms i { margin-right: 8px; color: var(--primary-light); width: 20px; }
.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 8px; }
.disclaimer { font-size: 0.8rem !important; max-width: 600px; margin: 0 auto; }

/* Info Section */
.info-section { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.info-section .container { max-width: 800px; }
.info-section h2 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
.info-section p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.9; text-align: center; }
.info-section a { color: var(--primary-light); font-weight: 500; }
.info-section a:hover { color: var(--secondary); }

/* Recent Posts Section */
.recent-posts { padding: 80px 0; }
.recent-posts .section-title { margin-bottom: 40px; }
.recent-posts .blog-grid { max-width: 1000px; margin: 0 auto; }
.recent-posts .view-all { text-align: center; margin-top: 32px; }

/* Manual Ad Slot */
.manual-ad-slot { max-width: 728px; margin: 20px auto; text-align: center; overflow: hidden; }

/* About Page */
.about-section { padding: 60px 0; }
.about-content { max-width: 800px; margin: 0 auto; }
.about-content .content-card h2 { color: var(--text); }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.about-highlight { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.about-highlight i { font-size: 2rem; color: var(--primary-light); margin-bottom: 12px; }
.about-highlight h3 { font-size: 1.1rem; margin-bottom: 8px; }
.about-highlight p { color: var(--text-muted); font-size: 0.9rem; }

/* Lazy load images */
img[loading="lazy"] { opacity: 1; transition: opacity 0.3s ease; }

/* Post Explore Links */
.post-explore {
    max-width: 800px; margin: 40px auto; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.post-explore h3 { margin-bottom: 16px; font-size: 1.1rem; }
.post-explore ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* Footer Links Section */
.footer-links { margin: 24px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); }
.footer-links h4 { margin-bottom: 12px; color: var(--text); font-size: 1rem; }
.footer-internal-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-internal-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-internal-links a:hover { color: var(--primary-light); }

/* Minimal Layout - Stats */
.minimal-stats {
    display: flex; justify-content: center; gap: 40px; margin: 60px 0;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    display: block; font-size: 2.5rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* Minimal Layout - Platform Showcase */
.platform-showcase {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    max-width: 800px; margin: 0 auto;
}
.platform-showcase-card {
    display: flex; align-items: center; gap: 12px; padding: 20px 24px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text); font-weight: 500; transition: var(--transition); text-decoration: none;
}
.platform-showcase-card i:first-child { font-size: 1.4rem; color: var(--primary-light); }
.platform-showcase-card i:last-child { margin-left: auto; color: var(--text-dim); font-size: 0.8rem; }
.platform-showcase-card:hover {
    border-color: var(--primary); transform: translateY(-4px);
    box-shadow: var(--shadow-glow); color: var(--text);
}
.features-minimal { padding: 60px 0; }

/* Bold Layout - Hero Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: var(--gradient-subtle); border: 1px solid var(--border);
    border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    color: var(--primary-light); margin-bottom: 24px;
}
.hero-bold h1 { font-size: 3.8rem; }
.hero-minimal { min-height: 70vh; }
.hero-minimal h1 { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--bg-card); border-bottom: 1px solid var(--border);
        flex-direction: column; padding: 16px;
    }
    .nav-menu.active { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .features-grid, .steps-grid, .blog-grid { grid-template-columns: 1fr; }
    .features-grid.cols-3 { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; margin-bottom: 40px; }
    .input-group { flex-direction: column; }
    .input-group .btn { width: 100%; justify-content: center; }
    .downloader-hero h1 { font-size: 1.8rem; }
    .blog-post-header h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .content-card { padding: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: row; flex-wrap: wrap; }
    .info-card { flex: 1; min-width: 140px; }
    .footer-grid { grid-template-columns: 1fr; }
    .post-share { flex-wrap: wrap; }
    .about-highlights { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .platform-showcase { grid-template-columns: repeat(2, 1fr); }
    .hero-bold h1 { font-size: 2.2rem; }
    .hero-minimal h1 { font-size: 2rem; }
    .post-explore ul { flex-direction: column; }
    .footer-internal-links { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .container { padding: 0 16px; }
    .downloader-box { padding: 20px; }
    .platform-showcase { grid-template-columns: 1fr; }
    .minimal-stats { gap: 24px; }
}
