* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --violet: #667eea;
    --purple: #764ba2;
    --pink: #ff6b9d;
    --magenta: #c86bfa;
    --warm-start: #fa709a;
    --warm-end: #fee140;
    --green: #4ade80;
    --orange: #f97316;
    --red: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--violet), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--violet);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--violet);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--violet);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--violet) 0%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-title {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.mockup-icon {
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.earnings-display {
    text-align: center;
    margin-bottom: 40px;
}

.earnings-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.earnings-amount {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--warm-start), var(--warm-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 15px rgba(250, 112, 154, 0.3));
}

.earnings-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.status-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    background: white;
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--violet), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink), var(--magenta));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.download-card.other-os {
    opacity: 0.6;
    transform: scale(0.95);
}

.download-card.other-os:hover {
    opacity: 0.8;
    transform: scale(0.95) translateY(-5px);
}

.os-icon {
    font-size: 80px;
    margin-bottom: 25px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

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

.download-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.download-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.version-info {
    font-size: 13px;
    color: #999;
    margin-bottom: 25px;
}

.download-btn {
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    transition: all 0.3s;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: white;
    padding: 100px 5%;
    color: #333;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    position: relative;
    animation: scaleIn 0.5s ease-out backwards;
}

.step:nth-child(1) .step-number { animation-delay: 0.2s; }
.step:nth-child(2) .step-number { animation-delay: 0.4s; }
.step:nth-child(3) .step-number { animation-delay: 0.6s; }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.step h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.step p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 16px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: white;
    padding: 100px 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.feature-card {
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ===== USE CASES ===== */
.use-cases-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 100px 5%;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.use-case-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: inline-block;
}

.use-case-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.use-case-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: white;
    padding: 100px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--violet);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--violet), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.author-info .name {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-info .earnings {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: linear-gradient(135deg, var(--violet) 0%, var(--purple) 100%);
    padding: 80px 5%;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item h3 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding: 100px 5%;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--violet);
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    padding: 100px 5%;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--violet) 0%, var(--purple) 100%);
    color: white;
    padding: 80px 5% 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

.social-links a {
    display: inline-block;
    padding: 0;
}

.social-links a:hover {
    transform: scale(1.2);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 20px 5%;
    background: #f9f9f9;
    font-size: 14px;
}

.breadcrumbs nav {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: var(--violet);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--purple);
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: #999;
}

.breadcrumbs .current {
    color: #666;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ARTICLE STYLES ===== */
.article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.article-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.article-header {
    padding: 60px 60px 40px;
}

.category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}

.article-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.article-excerpt {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-details .name {
    font-weight: 700;
    color: #333;
    display: block;
    font-size: 15px;
}

.author-details .date {
    font-size: 13px;
    color: #999;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
}

.article-stats {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-content {
    padding: 60px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #222;
}

.article-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 15px;
    color: #333;
}

.article-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #444;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content ul,
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content a {
    color: var(--violet);
    text-decoration: none;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.article-content a:hover {
    border-bottom-color: var(--violet);
}

.article-content blockquote {
    border-left: 5px solid var(--pink);
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e83e8c;
}

.article-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 25px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 30px 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #f8f8f2;
}

.toc {
    background: linear-gradient(145deg, #f9f9f9, #ffffff);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--violet);
}

.toc h3 {
    margin: 0 0 15px 0 !important;
    font-size: 20px !important;
}

.toc ul {
    list-style: none;
    padding: 0 !important;
}

.toc li {
    margin: 10px 0 !important;
}

.toc a {
    border: none !important;
}

.article-tags {
    padding: 40px 60px;
    border-top: 2px solid #f0f0f0;
}

.tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--violet);
    color: white;
}

.share-section {
    padding: 40px 60px;
    border-top: 2px solid #f0f0f0;
}

.share-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.share-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-bio {
    padding: 40px 60px;
    border-top: 2px solid #f0f0f0;
    background: #f8f9fa;
}

.author-bio-content {
    display: flex;
    gap: 25px;
    align-items: start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-text h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.author-bio-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    text-decoration: none;
}

.recent-post-content h4 a:hover {
    color: var(--violet);
}

.recent-post-date {
    font-size: 12px;
    color: #999;
}

.cta-widget {
    background: linear-gradient(145deg, var(--pink), var(--magenta));
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    margin: 15px 0 25px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--magenta);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(145deg, var(--violet), var(--purple));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.related-posts {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}

.related-posts h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

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

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.related-card-content {
    padding: 25px;
}

.related-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.related-card-content h3 a {
    color: #333;
    text-decoration: none;
}

.related-card-content h3 a:hover {
    color: var(--violet);
}

.related-card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.comments-section {
    padding: 60px;
    border-top: 2px solid #f0f0f0;
}

.comments-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .article-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .earnings-amount {
        font-size: 56px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-header,
    .article-content,
    .article-tags,
    .share-section,
    .author-bio,
    .comments-section {
        padding: 30px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-excerpt {
        font-size: 17px;
    }

    .featured-image {
        height: 300px;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .earnings-amount {
        font-size: 48px;
    }

    .trust-item h3 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}