/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========== FONT AWESOME CDN (IMPORTED VIA HTML) ========== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --secondary: #00CEC9;
    --accent: #FD79A8;
    --dark: #0A0A1A;
    --dark-light: #1A1A2E;
    --text: #E8E8F0;
    --text-muted: #9898B0;
    --white: #FFFFFF;
    --card-bg: rgba(22, 22, 44, 0.85);
    --border: rgba(108, 92, 231, 0.25);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px rgba(108, 92, 231, 0.3);
    --glow: 0 0 40px rgba(108, 92, 231, 0.4);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

/* ========== NO LOADER - REMOVED SPLASH SCREEN ========== */

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

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1001;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.logo-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

/* Nav Links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.download-btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
    border: none;
}

.download-btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}

.download-btn-nav::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12), transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.08), transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.25); opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px var(--secondary);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(108, 92, 231, 0.6);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

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

.btn-secondary:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
}

/* Hero Image */
.hero-image {
    animation: fadeInRight 1s ease 0.5s both;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 320px;
    height: 480px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(0, 206, 201, 0.2));
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: 0 30px 80px rgba(108, 92, 231, 0.25);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,26,0.6) 100%);
    border-radius: 32px;
}

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

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    animation: float 3.5s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.floating-card.version {
    top: 8%;
    right: -5%;
    animation-delay: 0s;
}

.floating-card.size {
    bottom: 22%;
    left: -5%;
    animation-delay: 1.7s;
}

.floating-card .fc-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card .fc-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ========== SECTION STYLES ========== */
section {
    padding: 100px 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.12);
    color: var(--primary);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.3px;
}

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

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.06), rgba(0, 206, 201, 0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.15));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ========== SCREENSHOT SLIDER ========== */
.screenshots-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.screenshot-card {
    min-width: 260px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.screenshot-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.screenshot-card .ss-placeholder {
    width: 260px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.screenshot-card:nth-child(1) .ss-placeholder { background: linear-gradient(180deg, #1a1a2e, #6C5CE7); }
.screenshot-card:nth-child(2) .ss-placeholder { background: linear-gradient(180deg, #1a1a2e, #00CEC9); }
.screenshot-card:nth-child(3) .ss-placeholder { background: linear-gradient(180deg, #1a1a2e, #FD79A8); }
.screenshot-card:nth-child(4) .ss-placeholder { background: linear-gradient(180deg, #1a1a2e, #A29BFE); }
.screenshot-card:nth-child(5) .ss-placeholder { background: linear-gradient(180deg, #1a1a2e, #55EFC4); }

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(108, 92, 231, 0.5);
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 10px;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

/* ========== BLOG SECTION ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

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

.blog-card-image {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    color: rgba(255,255,255,0.8);
}

.blog-card-image i {
    opacity: 0.9;
}

.blog-card:nth-child(1) .blog-card-image { background: linear-gradient(135deg, #6C5CE7, #A29BFE); }
.blog-card:nth-child(2) .blog-card-image { background: linear-gradient(135deg, #00CEC9, #55EFC4); }
.blog-card:nth-child(3) .blog-card-image { background: linear-gradient(135deg, #FD79A8, #FDCB6E); }

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more:hover {
    color: var(--secondary);
    gap: 8px;
}

/* ========== FAQ SECTION ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.5);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.15);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    user-select: none;
    gap: 12px;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.35s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    text-align: center;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.25), transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.cta-card h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(15, 15, 32, 0.95);
    border-top: 1px solid var(--border);
    padding: 48px 20px 24px;
    backdrop-filter: blur(12px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== BLOG POST PAGE ========== */
.blog-post-container {
    max-width: 820px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--primary);
}

.blog-post-header {
    margin-bottom: 32px;
}

.blog-post-header h1 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-post-meta {
    display: flex;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.blog-post-content {
    color: var(--text);
    line-height: 1.9;
    font-size: 1.02rem;
}

.blog-post-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.blog-post-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 28px 0 12px;
}

.blog-post-content p {
    margin-bottom: 16px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-post-content li {
    margin-bottom: 8px;
}

.blog-post-content strong {
    color: var(--white);
}

.highlight-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    margin: 24px 0;
    backdrop-filter: blur(12px);
}

.download-box {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.08));
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    margin: 32px 0;
    backdrop-filter: blur(12px);
}

.download-box h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.download-box .apk-info {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.download-box .apk-info span {
    background: rgba(0, 0, 0, 0.35);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin: 32px 0;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    font-weight: 500;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-wa { background: #25D366; }
.share-tg { background: #0088cc; }

.related-posts {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.related-posts h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

.related-post-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.related-post-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(108, 92, 231, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.7);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 28px;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .cta-card h2 {
        font-size: 1.7rem;
    }
    
    .blog-post-header h1 {
        font-size: 1.7rem;
    }

    section {
        padding: 70px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TABLE STYLES (FOR BLOG) ========== */
table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
    font-size: 0.9rem;
}

table th {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    color: var(--white);
    font-weight: 700;
}

table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}

table tr:hover td {
    background: rgba(108, 92, 231, 0.05);
}

/* ========== CODE & INLINE ELEMENTS ========== */
code {
    background: rgba(108, 92, 231, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--secondary);
    border: 1px solid var(--border);
}
