:root {
    --bg-dark: #000000;
    --surface: rgba(10, 10, 12, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --accent-primary: #10b981; /* Green from the GUI image */
    --accent-secondary: #059669;
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --font-outfit: 'Outfit', sans-serif;
    --nav-height: 80px;
    --glow: rgba(16, 185, 129, 0.2);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-dark);
}

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

/* Background Effects */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
    animation: pulse 10s infinite alternate;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: #4f46e5;
    bottom: -100px;
    left: -100px;
    animation: pulse 15s infinite alternate-reverse;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.2; }
    to { transform: scale(1.2); opacity: 0.4; }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Navigation */
nav {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.discord-btn-small {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 7rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -4px;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* GUI Mockup (Pixelated/Dotted Style) */
.gui-mockup {
    width: 100%;
    height: 100%;
    background: #111;
    display: grid;
    grid-template-columns: 140px 1fr;
    font-size: 0.7rem;
    position: relative;
    image-rendering: pixelated;
}

/* The "Pixel/Dots" Overlay */
.gui-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(0,0,0,0.5) 1px, transparent 0);
    background-size: 3px 3px; /* Creates the dotted/pixelated look */
    z-index: 10;
}

.gui-sidebar {
    background: #0a0a0a;
    border-right: 1px solid #222;
    padding: 1rem 0;
}

.gui-logo {
    padding: 0 1rem;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
}

.gui-nav-item {
    padding: 0.6rem 1rem;
    color: #555;
    border-left: 2px solid transparent;
}

.gui-nav-item.active {
    color: #fff;
    background: rgba(255,255,255,0.03);
    border-left-color: var(--accent-primary);
}

.gui-main {
    padding: 2rem;
}

.gui-header {
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gui-row {
    background: #181818;
    border: 1px solid #222;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gui-toggle {
    width: 20px;
    height: 20px;
    background: #222;
    border: 1px solid #333;
    border-radius: 4px;
}

.gui-key {
    background: #222;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.gui-slider {
    width: 100px;
    height: 20px;
    background: #222;
    border-radius: 4px;
    overflow: hidden;
}

.gui-slider-fill {
    height: 100%;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    font-size: 0.6rem;
    font-weight: 800;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn.primary {
    background: var(--text-main);
    color: #000;
}

.btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.btn.discord {
    background: #5865f2;
    color: white;
}

.btn.discord:hover {
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transform: scale(1.05);
}

/* Features Mini */
.features-mini {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 4rem 2rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-dim);
}

.feat-item i {
    color: var(--accent-primary);
}

/* Sections */
.section {
    padding: 8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.section-header .line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

/* Glass Card */
.glass {
    background: var(--surface);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.glass:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(15, 15, 18, 0.9);
    transform: translateY(-8px);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.code-box {
    background: #000;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
}

.copy-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #fff;
    color: #000;
}

/* Executors */
.executors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.executor-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.exec-logo {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.footer-content {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .subtitle { margin-left: auto; margin-right: auto; }
    .hero h1 { font-size: 5rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .features-mini { flex-direction: column; gap: 1.5rem; text-align: center; }
    .grid { grid-template-columns: 1fr; }
}
