:root {
    --primary-green: #38e038;
    --dark-green: #1a5c1a;
    --light-green: #a2f2a2;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'VT323', monospace;
    color: var(--white);
    line-height: 1.4;
    overflow-x: hidden;
    background: #000;
}

/* Blurred Background */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6);
    transform: scale(1.1); /* Prevents white edges from blur */
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
}

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

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

.nav-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--primary-green);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

/* General Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Sections */
section { padding: 6rem 0; }

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0 var(--dark-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
}

.hero-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    animation: fadeIn 1s ease-out;
}

.logo {
    width: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--primary-green));
}

.pixel-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 5px 5px 0px var(--dark-green);
}

.subtitle { font-size: 2rem; color: var(--light-green); margin-bottom: 3rem; }

/* Buttons */
.button-group { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.btn {
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    border: 4px solid var(--dark-green);
}
.btn-primary { background: var(--primary-green); color: #000; }
.btn-secondary { background: var(--white); color: #000; border-color: #999; }
.btn-discord { background: #5865F2; color: #fff; border-color: #3e45a3; margin-top: 1rem; }
.btn:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

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

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover { 
    transform: translateY(-10px); 
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-green);
}

.feature-icon { 
    margin-bottom: 1.5rem; 
    color: var(--primary-green);
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(56, 224, 56, 0.4));
}

.feature-card h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
}

.feature-card p { font-size: 1.2rem; color: #ccc; }

/* Installation Steps */
.steps-list { display: flex; flex-direction: column; gap: 2rem; }
.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.step-num {
    font-family: 'Press Start 2P', cursive;
    background: var(--primary-green);
    color: #000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}
.step p { font-size: 1.5rem; }

/* CTA Section */
.cta { text-align: center; }
.cta h3 { font-family: 'Press Start 2P', cursive; font-size: 1.5rem; margin-bottom: 1rem; }
.cta p { font-size: 1.5rem; margin-bottom: 2rem; }

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    color: rgba(255,255,255,0.4);
}
.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive */
@media (max-width: 768px) {
    .pixel-text { font-size: 2rem; }
    .subtitle { font-size: 1.4rem; }
    .nav-links { display: none; }
}
