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

:root {
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --primary-light: #22d3ee;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0a0e1a;
    --dark-light: #1a1f35;
    --dark-lighter: #2a2f45;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                var(--dark);
}

.stars,
.stars2,
.stars3 {
    position: absolute;
    width: 200%;
    height: 200%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 60px 70px, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 120px, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 280px 200px, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 400px 90px, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 500px 250px, white, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 600px 300px;
    animation: moveStars 120s linear infinite;
    opacity: 0.15;
}

.stars2 {
    background-image: 
        radial-gradient(1.5px 1.5px at 100px 50px, #06b6d4, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 250px 180px, #8b5cf6, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 420px 280px, #22d3ee, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 500px 400px;
    animation: moveStars 180s linear infinite;
    opacity: 0.2;
}

.stars3 {
    background-image: 
        radial-gradient(2px 2px at 350px 150px, white, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 180px 320px, #a78bfa, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 700px 500px;
    animation: moveStars 240s linear infinite;
    opacity: 0.1;
}

@keyframes moveStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

.code-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(6, 182, 212, 0.02) 2px,
        rgba(6, 182, 212, 0.02) 4px
    );
    animation: slideDown 20s linear infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-icon {
    font-size: 1.6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    letter-spacing: 0.05em;
    color: var(--text);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-cta {
    padding: 0.6rem 1.4rem;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    flex-wrap: wrap;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hero-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.hero-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.hero-button.secondary {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-button.secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.button-icon {
    font-size: 1.2rem;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-icon {
    font-size: 1.2rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary);
}

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

.showcase-section {
    padding: 6rem 0;
    position: relative;
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    width: 100%;
    max-width: 800px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.terminal-header {
    background: rgba(26, 31, 53, 0.95);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-buttons .btn.red {
    background: #ef4444;
}

.terminal-buttons .btn.yellow {
    background: #f59e0b;
}

.terminal-buttons .btn.green {
    background: #10b981;
}

.terminal-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.command {
    color: var(--text);
}

.terminal-output {
    margin: 1rem 0;
}

.neofetch-output {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.typing {
    animation: typing 2s steps(20, end) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--primary);
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: rgba(15, 23, 42, 0.4);
}

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

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
    border-color: var(--primary);
}

.feature-card.featured {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.05);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.desktop-preview {
    display: flex;
    justify-content: center;
}

.window-mockup {
    width: 100%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.window-header {
    background: rgba(26, 31, 53, 0.95);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.window-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.window-content {
    padding: 2rem;
}

.desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.app-icon:hover {
    transform: translateY(-5px);
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.desktop-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.desktop-feature {
    display: flex;
    gap: 1.2rem;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.stat-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.custom-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.custom-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.custom-icon {
    font-size: 2rem;
}

.custom-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.custom-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.custom-examples {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.theme-preview {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.theme-preview.dark {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
}

.theme-preview.cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.theme-preview.purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.theme-preview.amber {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.theme-preview.emerald {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.theme-preview.rose {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
}

.theme-preview:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.theme-preview.active {
    outline: 2px solid var(--primary-light);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.shortcut-example {
    background: rgba(6, 182, 212, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.key {
    background: rgba(148, 163, 184, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-light);
    font-weight: 600;
}

.widget-list {
    display: flex;
    gap: 0.8rem;
    font-size: 1.8rem;
    margin-top: 1rem;
}

.code-snippet {
    display: block;
    background: rgba(6, 182, 212, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary-light);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-top: 1rem;
}

.packages-section {
    background: rgba(10, 14, 26, 0.5);
}

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

.package-category {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.package-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.category-icon {
    font-size: 1.5rem;
}

.package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-list li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    transition: color 0.3s ease;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-list li:hover {
    color: var(--primary-light);
}

.aur-banner {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(16px);
}

.aur-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.aur-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.aur-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.aur-content code {
    background: rgba(6, 182, 212, 0.15);
    color: var(--primary-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.community-section {
    background: rgba(15, 23, 42, 0.4);
}

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

.community-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(16px);
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.community-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.community-button {
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: white;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.community-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.community-button:active {
    transform: translateY(-1px);
}

.cta-section {
    background: rgba(15, 23, 42, 0.4);
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.download-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    backdrop-filter: blur(16px);
    text-align: left;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.download-card.main {
    border-color: var(--primary);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.download-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.download-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.download-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.download-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.download-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.download-button.secondary {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.download-button.secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.download-links {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.download-links a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.download-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.system-requirements {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2rem;
    margin-bottom: 2rem;
}

.system-requirements h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.req-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.req-icon {
    font-size: 1.5rem;
}

.beta-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.beta-warning strong {
    color: var(--warning);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.beta-warning p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-column h4 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .desktop-showcase {
        grid-template-columns: 1fr;
    }

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

    .aur-banner {
        flex-direction: column;
        text-align: center;
    }

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

    .download-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

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

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