/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007AFF;
    --primary-hover: #0056CC;
    --secondary-color: #5856D6;
    --accent-color: #FF3B30;
    --professional-blue: #1B365C;
    --professional-gray: #2C3E50;
    --accent-color: #FF3B30;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --text-tertiary: #8E8E93;
    --background: #FFFFFF;
    --background-secondary: #F5F5F7;
    --background-tertiary: #E5E5EA;
    --border-color: #D2D2D7;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.app-icon {
    font-size: 24px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--background-secondary);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #CBD5E1 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: stretch;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #4A47A3);
    box-shadow: 0 6px 25px rgba(0, 122, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.hero-info {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.info-item {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Share Button */
.share-container {
    position: relative;
    display: flex;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .share-button {
    width: 100%;
    justify-content: center;
}

.guide-share {
    justify-content: center;
}

.share-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: var(--spacing-xs);
    display: flex;
    gap: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
    transform-origin: bottom center;
}

.share-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.share-popup a,
.share-popup button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-secondary);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-popup a:hover,
.share-popup button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-container {
    background: var(--background);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.before-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.demo-section {
    text-align: center;
}

.demo-section h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 20px;
    font-weight: 700;
    color: var(--professional-blue);
}

.app-grid {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.app-grid .app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease;
}

.app-grid .app-icon:hover {
    transform: scale(1.05);
}

.app-grid .gaming {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.app-grid .social {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.app-grid .entertainment {
    background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
}

.app-grid .work {
    background: linear-gradient(135deg, #F7F7F7, #E8E8E8);
    color: var(--text-primary);
}

.app-grid .work-real {
    background: linear-gradient(135deg, #FFFFFF, #FAFAFA);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disguise-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    background: rgba(0, 122, 255, 0.15);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-sm) 0;
    border: 2px solid rgba(0, 122, 255, 0.2);
}

.demo-section p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--professional-blue);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, var(--background) 0%, var(--background-secondary) 100%);
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--professional-blue);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.screenshot-container {
    display: flex;
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.app-screenshot {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: var(--border-radius-large);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-screenshot:hover {
    transform: scale(1.05);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Key Features Section */
.key-features {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: var(--background-tertiary);
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Download Section */
.download {
    /* To adjust the space above the footer, change the bottom padding value here (e.g., 24px) */
    padding: var(--spacing-xl) 0 24px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.download-buttons {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.pricing-info {
    display: flex;
    justify-content: center;
}

.price-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.download .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.download .btn-primary:hover {
    background: var(--background-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.download-icon {
    font-size: 20px;
}

.download-info {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.requirement {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: left;
    backdrop-filter: blur(10px);
}

.requirement strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.requirement ul {
    list-style: none;
    padding-left: 0;
}

.requirement li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.requirement li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--professional-blue), var(--professional-gray));
    color: white;
    padding: var(--spacing-lg) 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    font-size: 18px;
}

.footer-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-sm) 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .nav-links {
        gap: var(--spacing-sm);
    }

    .hero {
        padding: calc(140px + var(--spacing-md)) 0 var(--spacing-lg) 0;
    }

    .hero-title {
        margin-top: var(--spacing-md);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

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

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

    .before-after {
        flex-direction: column;
        gap: var(--spacing-md);
    }

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

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

    .features-list {
        grid-template-columns: 1fr;
    }

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

    .download-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        gap: var(--spacing-sm);
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .demo-container {
        padding: var(--spacing-md);
    }

    .app-grid .app-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.disclaimer {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.footer-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Additional professional styling */
.hero-title {
    color: var(--professional-blue);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
        --background-secondary: #FFFFFF;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}


/* Enhanced hover effects for demo icons */
.app-grid .work-real:hover {
    transform: scale(1.05);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease;
}

/* Guides Page */
.guides-gallery {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.guides-gallery .container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.guides-gallery h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--professional-blue);
}

.guides-gallery .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guide-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    text-align: left;
}

.guide-tile {
    display: block;
    background: var(--background);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-lg);
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.guide-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guide-tile h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--professional-blue);
    line-height: 1.3;
}

.guide-tile p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Guide Content Page */
.guide-content {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
}

.guide-content .guide-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.guide-share {
    margin-top: var(--spacing-md);
}

.guide-content .guide-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--professional-blue);
}

.guide-content .guide-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-content .article-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.guide-content .article-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    background-image: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 100%;
    transition: all 0.2s ease-in-out;
}

.guide-content .article-body a:hover {
    color: var(--background);
    background-size: 100% 100%;
}

.guide-content .article-body h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--professional-blue);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.guide-content .article-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.guide-content .article-body ul,
.guide-content .article-body ol {
    padding-left: 40px; /* Indent lists */
    margin-bottom: var(--spacing-md);
}

.guide-content .article-body li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-xs);
    line-height: 1.7;
}

.guide-content .article-body .btn-primary {
    margin-top: var(--spacing-sm);
    display: inline-block;
}

.next-guide {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.next-guide p {
    font-size: 1.1rem;
    font-weight: 500;
}

.next-guide a {
    color: var(--primary-color);
    text-decoration: none;
    background-image: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 100%;
    transition: all 0.2s ease-in-out;
}

.next-guide a:hover {
    color: var(--background);
    background-size: 100% 100%;
    padding: 2px 4px;
    border-radius: 4px;
}

.download .download-guides-link {
    margin-top: var(--spacing-lg);
    font-size: 12px; /* Made very small */
    color: rgba(255, 255, 255, 0.6); /* Made more subtle */
    text-align: center;
}

.download-guides-link a {
    color: rgba(255, 255, 255, 0.8); /* Adjusted for contrast */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Made underline more subtle */
    transition: all 0.2s ease;
}

.download-guides-link a:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}
