* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0b1d14 0%, #0a2216 50%, #072911 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 20, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(54, 201, 106, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #36c96a;
}

.nav-link i {
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 3rem;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #36c96a, #2a9e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: #d1d5db;
    margin: 0 auto 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #36c96a, #2a9e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section {
    padding: 5rem 0;
}

/* Downloads Section */
.version-group {
    margin-bottom: 4rem;
}

.version-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    color: #36c96a;
    margin-bottom: 2rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: rgba(17, 24, 19, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(54, 201, 106, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: scale(1.05);
    border-color: rgba(54, 201, 106, 0.6);
    box-shadow: 0 20px 40px rgba(54, 201, 106, 0.25);
}

.download-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #36c96a, #2a9e55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.download-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.download-card p {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #2a9e55, #36c96a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
}

.download-btn:hover {
    background: linear-gradient(45deg, #36c96a, #1e7f45);
    transform: translateY(-2px);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(17, 24, 19, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(54, 201, 106, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.1);
    border-color: rgba(54, 201, 106, 0.6);
    box-shadow: 0 20px 40px rgba(54, 201, 106, 0.25);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, #36c96a, #2a9e55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: white;
}

.feature-status.added {
    background: rgba(54, 201, 106, 0.2);
    color: #36c96a;
}

/* FAQ */
.faq-card {
    background: rgba(17, 24, 19, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(54, 201, 106, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: scale(1.05);
    border-color: rgba(54, 201, 106, 0.6);
    box-shadow: 0 20px 40px rgba(54, 201, 106, 0.25);
}

.faq-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, #36c96a, #2a9e55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: white;
}

/* Connections */
.connection-card {
    background: rgba(17, 24, 19, 0.5);
    border: 1px solid rgba(54, 201, 106, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: scale(1.05);
    border-color: rgba(54, 201, 106, 0.6);
    box-shadow: 0 20px 40px rgba(54, 201, 106, 0.25);
}

.connection-link {
    color: #36c96a;
    font-weight: 600;
}

/* Background glow */
.bg-circle {
    background: rgba(54, 201, 106, 0.1);
}
