:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;
    --accent: #4CAF50;
    --accent-dark: #2E7D32;
    --accent-glow: rgba(76, 175, 80, 0.5);
    --accent-subtle: rgba(76, 175, 80, 0.1);
    --white: #ffffff;
    --gray-100: #e0e0e0;
    --gray-300: #9e9e9e;
    --gray-500: #616161;
    --gray-700: #333333;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 4rem;
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-300);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
    pointer-events: none;
    animation: hero-glow 4s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-weight: 400;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 15px var(--accent-subtle);
}

.version-badge .check {
    color: var(--accent);
    font-weight: bold;
}

.version-badge strong {
    color: var(--accent);
}

.version-badge .soon {
    color: var(--gray-500);
    font-size: 0.8rem;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: #5cbf60;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

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

/* ===== SECTIONS ===== */
section {
    padding: 7rem 2rem;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-subtle);
    border-radius: 50px;
    background: var(--accent-subtle);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-subtle);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px var(--accent-subtle);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--accent);
    color: var(--bg-primary);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(76, 175, 80, 0.03));
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
}

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

.disclaimer-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.disclaimer h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.disclaimer p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.disclaimer .note {
    color: var(--gray-500);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== HALL OF SHAME ===== */
.hall-of-shame {
    background: var(--bg-primary);
    position: relative;
}

.hall-of-shame .shame-label {
    background: rgba(244, 67, 54, 0.12);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.3);
}

.shame-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.shame-group-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.shame-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--gray-700);
}

.shame-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    table-layout: auto;
}


.shame-table thead {
    background: var(--bg-card);
}

.shame-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: var(--gray-300);
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-700);
}

.shame-table td {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
    white-space: nowrap;
}

.shame-table th,
.shame-table td {
    vertical-align: middle;
}

.shame-table tbody tr:hover td {
    background: var(--bg-card);
}

.shame-table .server-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

.shame-table .shame-yes {
    color: #f44336;
    font-weight: 700;
    text-align: center;
}

.shame-table .shame-no {
    color: var(--gray-700);
    text-align: center;
}

.shame-table .shame-working {
    color: var(--accent);
    font-weight: 700;
    text-align: center;
}

.shame-table a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shame-table a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== DOWNLOAD SPLIT ===== */
.download-split {
    background: var(--bg-secondary);
}

.download-split-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.download-left .section-label {
    margin-bottom: 0.5rem;
}

.dl-desc {
    color: var(--gray-300);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px var(--accent-glow);
}

.download-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 40px var(--accent-glow);
    background: #5cbf60;
}

.download-btn .arrow {
    font-size: 1.4rem;
    animation: bounce-down 1.5s ease-in-out infinite;
}

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

.download-info {
    text-align: left;
}

.download-info span {
    display: block;
}

.download-info .dl-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-info .dl-subtitle {
    font-size: 0.78rem;
    opacity: 0.7;
    font-weight: 400;
}

.version-note {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.82rem;
}

.requirements-inline {
    margin-top: 2rem;
}

.requirements-inline h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.req-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gray-100);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.req-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Download right - install list */
.download-right {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 2rem;
}

.download-right h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.install-list {
    list-style: none;
    counter-reset: install-counter;
    padding: 0;
}

.install-list li {
    counter-increment: install-counter;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.install-list li::before {
    content: counter(install-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.install-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.install-list li span {
    display: block;
    color: var(--gray-300);
    font-size: 0.85rem;
}

.install-list li a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.install-list li a:hover {
    color: var(--white);
}

.install-list .paths {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

.install-list .paths code {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    background: var(--accent-subtle);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-block;
}

/* ===== DOWNLOAD LAUNCHERS ===== */
.download-launchers {
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 2rem;
}

.download-launchers h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launcher-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.launcher-list li {
    font-size: 0.85rem;
    color: var(--gray-300);
    padding: 0.5rem 0.8rem;
    background: var(--bg-card);
    border-radius: 6px;
    transition: border-color 0.2s ease;
    border: 1px solid transparent;
}

.launcher-list li:hover {
    border-color: var(--accent);
}

.launcher-list li strong {
    color: var(--white);
    font-family: var(--font-heading);
}

.launcher-list li code {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    background: var(--accent-subtle);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.78rem;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
    background: var(--bg-primary);
    padding: 4rem 2rem;
    border-top: 1px solid var(--gray-700);
}

.contact-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-bar-left h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-bar-left p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.contact-bar-center {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--gray-100);
    transition: all 0.3s ease;
}

.contact-chip:hover {
    border-color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    border-top: 1px solid var(--gray-700);
}

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

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

.footer-logo-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer-disclaimer {
    color: var(--gray-700);
    font-size: 0.75rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 5rem 1.5rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .download-split-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-launchers {
        order: 3;
    }

    .download-btn {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 2rem;
        width: 100%;
    }

    .download-info {
        text-align: center;
    }

    .download-left .section-title {
        text-align: center !important;
    }

    .dl-desc {
        text-align: center;
    }

    .requirements-inline {
        text-align: center;
    }

    .contact-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-bar-center {
        justify-content: center;
    }

    .shame-container {
        grid-template-columns: 1fr;
    }

    .shame-table {
        font-size: 0.8rem;
    }

    .shame-table th,
    .shame-table td {
        padding: 0.6rem 0.8rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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