:root {
    --primary-color: #2196F3;
    --secondary-color: #9C27B0;
    --accent-color: #00BCD4;
    --dark-bg: #0a0e27;
    --darker-bg: #050811;
    --card-bg: #151932;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --border-color: #1e2747;
    --success-color: #4CAF50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --gradient-1: linear-gradient(135deg, #2196F3 0%, #9C27B0 100%);
    --gradient-2: linear-gradient(135deg, #00BCD4 0%, #2196F3 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageLoad 0.5s ease;
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 8, 17, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

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

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-donate {
    background: var(--gradient-1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--text-primary) !important;
}

.btn-donate::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.version-badge {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

/* Terminal Window */
.terminal-window {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3a3a;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.terminal-header {
    background: linear-gradient(to bottom, #3a3a3a 0%, #2d2d2d 100%);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #1a1a1a;
}

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

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.terminal-buttons span:hover {
    filter: brightness(1.2);
}

.btn-red { 
    background: linear-gradient(to bottom, #ff6159 0%, #ff5f56 100%);
    border: 1px solid #e33e41;
}

.btn-yellow { 
    background: linear-gradient(to bottom, #ffbd2e 0%, #ffbb2b 100%);
    border: 1px solid #e09e15;
}

.btn-green { 
    background: linear-gradient(to bottom, #28ca42 0%, #27c93f 100%);
    border: 1px solid #1aab29;
}

.terminal-title {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    min-height: 400px;
    color: #a8a8a8;
    font-size: 0.9rem;
    line-height: 1.6;
    background: #1e1e1e;
    overflow-x: auto;
    overflow-y: auto;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

.terminal-line {
    margin-bottom: 0.3rem;
    animation: fadeIn 0.5s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Powerlevel10k style prompt */
.prompt {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.prompt-user {
    color: #7aa2f7;
    font-weight: bold;
}

.prompt-at {
    color: #9ece6a;
}

.prompt-host {
    color: #e0af68;
    font-weight: bold;
}

.prompt-separator {
    color: #565f89;
}

.prompt-path {
    color: #bb9af7;
    font-weight: bold;
}

.prompt-git {
    color: #f7768e;
    font-style: italic;
}

.prompt-arrow {
    color: #7dcfff;
    font-weight: bold;
}

.terminal-command {
    color: #9ece6a;
}

.terminal-output {
    color: #a9b1d6;
}

.terminal-success {
    color: #9ece6a;
}

.terminal-error {
    color: #f7768e;
}

.terminal-info {
    color: #7dcfff;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #7dcfff;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

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

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

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--darker-bg);
}

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

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Stats Section */
.stats {
    padding: 3rem 0;
    background: var(--card-bg);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Comparison Section */
.why-choose {
    padding: 5rem 0;
}

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

.comparison-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--success-color);
    transition: var(--transition);
}

.comparison-card.outdated {
    border-color: var(--danger-color);
    opacity: 0.7;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.badge-success {
    background: var(--success-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.badge-danger {
    background: var(--danger-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-list i {
    font-size: 1.2rem;
}

.comparison-list .fa-check {
    color: var(--success-color);
}

.comparison-list .fa-times {
    color: var(--danger-color);
}

/* Quick Start Section */
.quick-start {
    padding: 5rem 0;
    background: var(--darker-bg);
}

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

.step-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--gradient-1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.code-block {
    background: var(--darker-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow-x: auto;
}

.code-block code {
    color: var(--success-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: block;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--secondary-color);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary {
    background: var(--text-primary);
    color: var(--primary-color);
}

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

.cta .btn-secondary:hover {
    background: var(--text-primary);
    color: var(--primary-color);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-bottom .warning {
    color: var(--warning-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

/* Mobile Navigation Menu */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        background: rgba(5, 8, 17, 0.98);
        backdrop-filter: blur(10px);
        text-align: center;
        transition: left 0.3s ease-in-out;
        padding: 2rem;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        padding: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}   
   
  
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text .subtitle,
    .hero-text .description {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .version-badge {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .terminal-window {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .terminal-body {
        font-size: 0.75rem;
        padding: 0.8rem;
        min-height: 300px;
        overflow-x: auto;
    }
    
    .terminal-line {
        word-wrap: break-word;
        white-space: pre-wrap;
    }
    
    .prompt {
        flex-wrap: wrap;
    }
    
    .code-block {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .docs-content {
        padding: 1.5rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
    }
    
    .hero-text .description {
        font-size: 0.9rem;
    }
    
    .terminal-window {
        border-radius: 8px;
    }
    
    .terminal-body {
        font-size: 0.7rem;
        padding: 0.6rem;
        min-height: 250px;
        line-height: 1.4;
    }
    
    .terminal-header {
        padding: 0.6rem;
    }
    
    .terminal-title {
        font-size: 0.7rem;
    }
    
    .terminal-buttons span {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .version-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-header h3 {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terminal-window {
        max-width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-menu {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .version-badge {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }
}

/* Download Page Styles */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--gradient-1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header i {
    margin-right: 1rem;
}

.download-section {
    padding: 3rem 0;
}

.download-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.download-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.3);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.version-badge-large {
    background: var(--gradient-1);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
}

.release-date {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.download-features {
    margin-bottom: 2rem;
}

.download-features h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.download-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.download-features li {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-features i {
    color: var(--success-color);
}

.download-stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.download-command {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.requirements-section,
.download-options,
.installation-guide {
    margin: 4rem 0;
}

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

.requirement-card,
.option-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.requirement-card h3,
.option-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.requirement-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.requirement-card li:last-child {
    border-bottom: none;
}

.option-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.installation-steps {
    margin-top: 2rem;
}

.install-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.install-step .step-number {
    min-width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.warning-notice {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--warning-color);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.warning-icon {
    font-size: 3rem;
    color: var(--warning-color);
}

.warning-content h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.warning-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.warning-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.warning-footer {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--warning-color);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.next-step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.next-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

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

.next-step-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* Documentation Page Styles */
.docs-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

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

.docs-menu {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
}

.docs-menu h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.docs-menu ul {
    list-style: none;
}

.docs-menu li {
    margin-bottom: 0.5rem;
}

.docs-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.docs-menu a:hover,
.docs-menu a.active {
    background: var(--primary-color);
    color: var(--text-primary);
}

.docs-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
}

.docs-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.docs-content h2:first-child {
    margin-top: 0;
}

.docs-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.docs-content ul,
.docs-content ol {
    color: var(--text-secondary);
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.docs-content code {
    background: var(--darker-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--success-color);
    font-family: 'Courier New', monospace;
}

.docs-content pre {
    background: var(--darker-bg);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

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

.info-box {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.success-box {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}
