:root {
    /* Colors - Earthy Prepper Palette */
    --color-bg-dark: #0c0a09;
    --color-bg-medium: #1c1917;
    --color-bg-light: #292524;
    --color-border: #44403c;
    --color-border-light: #78716c;
    
    --color-text-primary: #f5f5f4;
    --color-text-secondary: #a8a29e;
    --color-text-muted: #78716c;
    
    --color-accent: #10b981;
    --color-accent-dark: #059669;
    --color-accent-light: #34d399;
    --color-accent-secondary: #14b8a6;
    
    --color-gradient-start: #10b981;
    --color-gradient-end: #14b8a6;
    
    /* Typography */
    --font-display: 'Space Grotesk', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 10px 30px -5px rgba(16, 185, 129, 0.3);
    --shadow-accent-hover: 0 15px 40px -5px rgba(16, 185, 129, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-slow);
}

#navbar.scrolled {
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(120, 113, 108, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeSlideIn 0.8s ease-out;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.logo-subtitle {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--transition-base);
    animation: fadeSlideIn 0.8s ease-out;
}

.nav-link:nth-child(2) { animation-delay: 0.1s; }
.nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-link:nth-child(4) { animation-delay: 0.3s; }
.nav-link:nth-child(5) { animation-delay: 0.4s; }

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
    background: var(--color-bg-light);
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    left: 0;
    transition: transform var(--transition-base);
}

.hamburger::before { top: -0.5rem; }
.hamburger::after { bottom: -0.5rem; }

.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-menu-btn.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.4s ease-out;
}

.section.active {
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(120, 113, 108, 0.03) 0px, transparent 1px, transparent 80px, rgba(120, 113, 108, 0.03) 81px),
        repeating-linear-gradient(0deg, rgba(120, 113, 108, 0.03) 0px, transparent 1px, transparent 80px, rgba(120, 113, 108, 0.03) 81px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 1.5rem 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: var(--color-accent-light);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeSlideIn 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeSlideIn 1s ease-out 0.4s both;
}

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

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
    animation: fadeSlideIn 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeSlideIn 1s ease-out 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    animation: fadeSlideIn 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all var(--transition-slow);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-accent-hover);
}

.btn-primary .icon-arrow {
    transition: transform var(--transition-base);
}

.btn-primary:hover .icon-arrow {
    transform: translateX(0.25rem);
}

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

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-light);
}

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

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-arrow {
    width: 1.25rem;
    height: 1.25rem;
}

/* Features Preview */
.features-preview {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

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

.feature-card {
    padding: 2rem;
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    transition: all var(--transition-slow);
    animation: fadeSlideIn 0.8s ease-out both;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-0.25rem);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent-light);
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.feature-card:hover .feature-title {
    color: var(--color-accent-light);
}

.feature-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

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

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-light);
    font-weight: 700;
    text-decoration: none;
    transition: gap var(--transition-slow);
}

.link-with-arrow:hover {
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: var(--color-accent-light);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 8rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Feature Details */
.feature-details {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-bottom: 6rem;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.detail-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.detail-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text-primary);
}

.detail-list li::before {
    content: '';
    min-width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.detail-image {
    aspect-ratio: 16 / 9;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-medium) 100%);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-text-muted);
}

.placeholder-image svg {
    width: 6rem;
    height: 6rem;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.placeholder-image p {
    font-size: 0.875rem;
}

/* Blog Section */
.blog-filters,
.forum-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-accent);
    color: var(--color-accent-light);
}

.filter-btn.active {
    background: rgba(16, 185, 129, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-slow);
    animation: fadeSlideIn 0.6s ease-out both;
}

.blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-card:nth-child(3) { animation-delay: 0.2s; }
.blog-card:nth-child(4) { animation-delay: 0.3s; }

.blog-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-0.25rem);
}

.blog-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.3) 0%, rgba(20, 184, 166, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.blog-image svg {
    width: 4rem;
    height: 4rem;
    color: rgba(16, 185, 129, 0.3);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.blog-category {
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-light);
    border-radius: 9999px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.blog-card:hover .blog-title {
    color: var(--color-accent-light);
}

.blog-excerpt {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-light);
    font-weight: 600;
    transition: gap var(--transition-slow);
}

.blog-card:hover .blog-read-more {
    gap: 1rem;
}

/* Blog Post View */
.blog-post-view {
    max-width: 56rem;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--color-accent-light);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: gap var(--transition-slow);
}

.back-btn:hover {
    gap: 1rem;
}

.blog-post-content {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 3rem;
}

.blog-post-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.blog-post-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent-light);
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-content p {
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-post-content code {
    background: var(--color-bg-dark);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
}

.blog-post-content pre {
    background: var(--color-bg-dark);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.blog-post-content pre code {
    padding: 0;
    background: none;
}

/* Forum Section */
.forum-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
}

.forum-threads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.forum-thread {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-slow);
    animation: fadeSlideIn 0.6s ease-out both;
}

.forum-thread:nth-child(2) { animation-delay: 0.05s; }
.forum-thread:nth-child(3) { animation-delay: 0.1s; }
.forum-thread:nth-child(4) { animation-delay: 0.15s; }

.forum-thread:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-0.25rem);
}

.thread-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.thread-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.thread-category {
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-light);
    color: var(--color-text-secondary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.thread-solved {
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-light);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.thread-solved svg {
    width: 0.75rem;
    height: 0.75rem;
}

.thread-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-text-muted);
}

.thread-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.forum-thread:hover .thread-title {
    color: var(--color-accent-light);
}

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

.thread-author {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.thread-stats {
    display: flex;
    gap: 1rem;
}

/* Forum Sidebar */
.forum-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.sidebar-card.stats-card {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title .icon {
    color: var(--color-accent-light);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent-light);
}

.guidelines-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guidelines-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.guidelines-list li::before {
    content: '';
    min-width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Download Section */
.download-container {
    padding-bottom: 6rem;
}

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

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

.download-card.primary-card {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.download-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.download-icon.disabled {
    background: var(--color-bg-light);
    box-shadow: none;
}

.download-icon svg {
    width: 3rem;
    height: 3rem;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.download-meta {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.system-requirements {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.requirements-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.requirement-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-accent-light);
}

.requirement-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.requirement-item li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-text-secondary);
}

.requirement-item li::before {
    content: '';
    min-width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.privacy-notice {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
}

.privacy-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.privacy-notice h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.privacy-notice p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 2rem;
    height: 2rem;
}

.footer-logo .logo-title {
    font-size: 1.125rem;
}

.footer-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 0.5rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-0.125rem);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--color-accent-light);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .forum-layout {
        grid-template-columns: 1fr;
    }
    
    .forum-sidebar {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg-medium);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:hover {
        background: var(--color-bg-light);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        padding-top: 6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .feature-detail,
    .feature-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .detail-image {
        order: -1;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}
