/* CSS Custom Properties */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #161616;
    --bg-tertiary: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --border-color: #2a2a2a;
    --hover-bg: #252525;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-brand img {
    height: 24px;
    width: auto;
}

.nav-brand i {
    color: var(--accent-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.navbar .nav-link.active::after,
.nav-menu .nav-link.active::after,
.nav-link.active::after {
    display: none !important;
    content: none !important;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.version {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: -0.5rem;
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.version i {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--hover-bg);
    border-color: var(--accent-primary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Section Styles */
.download-section,
.docs-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.docs-section {
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.download-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.download-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-download {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* System Requirements */
.system-requirements {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.system-requirements h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.requirement-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.requirement-item strong {
    color: var(--accent-primary);
}

/* Documentation Grid */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.docs-category {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.docs-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.docs-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.docs-category h3 i {
    color: var(--accent-primary);
}

.docs-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.doc-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.doc-link:hover {
    color: var(--text-primary);
    background: var(--hover-bg);
    border-color: var(--accent-primary);
}

.doc-link i {
    color: var(--accent-primary);
    opacity: 0;
    transition: var(--transition);
}

.doc-link:hover i {
    opacity: 1;
    transform: translateX(4px);
}

/* Documentation Layout */
.docs-content {
    padding: 4rem 0;  /* Added more vertical padding */
}

.docs-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);  /* Increased from 280px to 300px */
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Documentation Content */
.docs-main {
    max-width: 1200px;  /* Set max-width for the main content */
    width: 100%;
}

/* Documentation Navigation Styles */
.docs-nav {
    position: sticky;
    top: 2rem;
    max-height: calc(85vh - 4rem); /* Reduced from 100vh to 85vh */
    padding-right: 0;  /* Remove padding here */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) var(--bg-secondary);
}

/* Custom scrollbar for Webkit browsers */
.docs-nav::-webkit-scrollbar {
    width: 8px;
    background-color: var(--bg-secondary);
    border-radius: 4px;
}

.docs-nav::-webkit-scrollbar-thumb {
    background-color: var(--text-muted);  /* Changed to text-muted (gray) */
    border-radius: 4px;
}

.docs-nav::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-secondary);  /* Lighter gray on hover */
}

.docs-nav::-webkit-scrollbar-track {
    background-color: var(--bg-secondary);
    border-radius: 4px;
}

/* Hide scrollbar when not hovering for a cleaner look */
.docs-nav {
    scrollbar-width: none;  /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
}

.docs-nav::-webkit-scrollbar {
    display: none;
}

/* Show scrollbar on hover */
.docs-nav:hover {
    scrollbar-width: thin;  /* For Firefox */
    -ms-overflow-style: auto;  /* For Internet Explorer and Edge */
}

.docs-nav:hover::-webkit-scrollbar {
    display: block;
}

.nav-section {
    margin-bottom: 3rem;
    padding-right: 8px; /* Space for scrollbar */
}

.nav-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding: 0 1.5rem; /* Match link padding */
}

.nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-section .nav-link {
    display: block;
    padding: 0.75rem 1.5rem; /* Increased padding */
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    white-space: normal;
    line-height: 1.4;
    word-wrap: break-word;
    margin: 0; /* Remove margins */
    width: 100%; /* Ensure full width */
}

/* Ensure the hover/active states maintain proper spacing */
.nav-section .nav-link:hover,
.nav-section .nav-link.active {
    color: var(--accent-primary);
    background-color: var(--bg-secondary);
}

.nav-section .nav-link.active {
    border-left-color: var(--accent-primary);
}

/* Documentation Content Styles */
.doc-article {
    margin-bottom: 6rem;  /* Added more space between articles */
    max-width: 1100px;  /* Increased width of the article content */
    width: 100%;
}

.article-header {
    margin-bottom: 3rem;  /* Added more space after header */
}

.article-content {
    max-width: 100%;  /* Ensure content can use full width */
}

.article-content h2 {
    margin-top: 3rem;  /* Added more space above subheadings */
    margin-bottom: 1.5rem;  /* Added more space below subheadings */
}

.article-content p {
    margin-bottom: 1.5rem;  /* Added more space between paragraphs */
    line-height: 1.7;  /* Improved readability with increased line height */
}

.article-content a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

.article-content a:hover {
    text-decoration: underline;
}

/* Common Image Styles */
.article-image {
    cursor: pointer;
    transition: opacity 0.2s ease;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-image:hover {
    opacity: 0.9;
}

.image-caption {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-brand i {
    color: var(--accent-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Page Headers */
.download-header,
.docs-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Download Page Specific Styles */
.download-card.featured {
    position: relative;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-download.primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

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

.btn-download.secondary:hover {
    background: var(--hover-bg);
    border-color: var(--accent-primary);
}

/* Release Notes */
.release-notes {
    background: var(--bg-tertiary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 4rem 0;
}

.release-notes h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.release-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Ensure responsive layout for smaller screens */
@media (max-width: 768px) {
    .release-content {
        grid-template-columns: 1fr;
    }
}

.release-highlights,
.release-improvements,
.release-fixes {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.release-highlights h3,
.release-improvements h3,
.release-fixes h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.release-highlights ul,
.release-improvements ul,
.release-fixes ul {
    list-style: none !important;
    margin: 0;
    padding-left: 0;
    list-style-type: none !important;
}

.release-highlights li,
.release-improvements li,
.release-fixes li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 0;
    list-style: none !important;
    list-style-type: none !important;
}

.release-highlights li::before,
.release-improvements li::before,
.release-fixes li::before {
    display: none !important;
    content: none !important;
}

/* Override any potential emoji additions */
.release-highlights li *::before,
.release-improvements li *::before,
.release-fixes li *::before,
.release-highlights li::marker,
.release-improvements li::marker,
.release-fixes li::marker {
    display: none !important;
    content: none !important;
}

/* Requirements Tabs */
.requirements-tabs {
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tab-button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    color: var(--text-primary);
    background: var(--hover-bg);
}

.tab-button.active {
    border-bottom: 2px solid var(--accent-primary);
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

/* Installation Help */
.installation-help {
    margin: 4rem 0;
}

.installation-help h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.help-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.help-link:hover {
    text-decoration: underline;
}

/* Installation Guide Styles */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.requirement-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.requirement-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.requirement-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.requirement-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Tabbed Instructions */
.tabbed-instructions {
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

.tab-content pre {
    background: var(--code-bg);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
}

.tab-content code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

/* Troubleshooting Box */
.troubleshooting-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.troubleshooting-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.troubleshooting-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.troubleshooting-box li {
    margin-bottom: 0.5rem;
}

.troubleshooting-box strong {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 1rem;
    }

    .tab-content {
        padding: 1rem;
    }

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

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .download-options {
        gap: 0.5rem;
    }
    
    .release-content {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: 1px solid var(--border-color);
    }
    
    .tab-button.active {
        border-bottom-color: var(--accent-primary);
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-header,
    .docs-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .release-notes,
    .installation-help {
        margin: 2rem 0;
    }
    
    .release-notes {
        padding: 2rem;
    }
    
    .help-card {
        padding: 1.5rem;
    }
}

/* Responsive adjustments for new pages */
@media (max-width: 1024px) {
    .docs-layout {
        max-width: 100%;
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-nav {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Next Steps Grid */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-step-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.next-step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.next-step-card i {
    color: var(--accent-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.next-step-card h3 {
    margin: 0 0 0.5rem;
    color: inherit;
}

.next-step-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* Side by Side Images */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.image-grid img {
    max-width: 100%;  /* Changed from width: 100% to max-width: 100% */
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 0 auto;  /* Center the image if smaller than container */
    display: block;  /* Ensure margin auto works */
}

.image-grid .image-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Custom image sizes in grid */
.image-grid .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add responsive styles for next-step-card */
@media (max-width: 768px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Showcase Navigation */
.showcase-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.showcase-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.showcase-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem;
}

.showcase-grid::-webkit-scrollbar {
    display: none;
}

.showcase-grid > div {
    flex: 0 0 auto;
    width: min(500px, 80vw);
    scroll-snap-align: center;
}

.showcase-grid .article-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-nav {
    background: rgba(0, 0, 0, 0.85);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: absolute;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.showcase-nav:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.showcase-nav.prev {
    left: -60px;
}

.showcase-nav.next {
    right: -60px;
}

.showcase-nav i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .showcase-nav {
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.9);
    }

    .showcase-nav.prev {
        left: -12px;
    }

    .showcase-nav.next {
        right: -12px;
    }

    .showcase-nav i {
        font-size: 20px;
    }
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    height: 150px;
}

/* License Section Styles */
.license-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: transparent;
}

.license-text {
    margin-top: 1.5rem;
}

.license-text pre {
    white-space: pre-wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow-x: auto;
}

.license-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Quote Section */
.quote-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
    color: var(--text-primary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.inspirational-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.inspirational-quote i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.inspirational-quote p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 1rem 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inspirational-quote footer {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-header.mnemo {
    background: var(--accent-gradient);
}

.comparison-header.traditional {
    background: var(--bg-tertiary);
}

.comparison-header.other-apps {
    background: var(--bg-tertiary);
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.comparison-header .price {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.comparison-features {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.comparison-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features i {
    width: 20px;
}

.comparison-features .ti-check {
    color: #22c55e;
}

.comparison-features .ti-x {
    color: #ef4444;
}

.comparison-features .ti-minus {
    color: #f59e0b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inspirational-quote p {
        font-size: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    width: calc(50% - 3rem);
    margin-left: auto;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -3.5rem;
    transform: translate(50%, -50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -3.5rem;
    transform: translate(-50%, -50%);
}

.timeline-content:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

/* Values Section */
.team-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Get Involved Section */
.get-involved-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.involvement-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.involvement-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.involvement-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.involvement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }
    
    .timeline-content {
        width: calc(100% - 3rem);
        margin-left: 3rem !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -3.5rem;
        transform: translate(-50%, -50%);
    }
    
    .mission-grid,
    .values-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content > p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Why Section Styles */
.why-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-text {
    background: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.why-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-list li:hover {
    transform: translateX(8px);
    border-color: var(--accent-primary);
}

.why-list li i {
    color: var(--accent-primary);
    font-size: 1.25rem;
    padding-top: 0.2rem;
}

.why-list li span {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for Why section */
@media (max-width: 768px) {
    .why-text {
        padding: 1.5rem;
    }

    .why-text p {
        font-size: 1rem;
    }

    .why-list li {
        padding: 0.75rem;
    }

    .why-list li span {
        font-size: 1rem;
    }
}

/* Documentation Loading States */
.doc-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--error-color);
    background: var(--error-bg);
    border-radius: 8px;
    margin: 1rem 0;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Search Documentation */
.search-docs {
    margin: 2rem 0;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* Search Results Styles */
.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.search-results:empty {
    display: none;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.search-result-item:hover {
    background: var(--hover-bg);
}

.search-result-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-title i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.search-result-path {
    color: var(--accent-primary);
    font-size: 0.85rem;
    opacity: 0.8;
}

.search-result-preview {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.search-result-match {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-weight: 500;
}

.no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Search Results Scrollbar */
.search-results {
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) var(--bg-secondary);
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background-color: var(--text-muted);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-secondary);
}

/* Loading State */
.search-loading {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.search-loading .loading-spinner {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
}

/* Donation Page Styles */
.donation-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.donation-options {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.donation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.donation-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-tertiary));
    box-shadow: var(--shadow-lg);
}

.donation-header {
    margin-bottom: 1.5rem;
}

.donation-header i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.donation-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin: 1rem 0;
}

.donation-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.donation-btn {
    width: 100%;
    justify-content: center;
}

.custom-donation {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.custom-donation h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.custom-donation p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.impact-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.impact-card p {
    color: var(--text-secondary);
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-item h3 i {
    color: var(--accent-primary);
}

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