@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Oswald:wght@500;700&display=swap');

:root {
    --primary: #e60000;
    --primary-dark: #990000;
    --primary-glow: rgba(230, 0, 0, 0.7);
    --bg-dark: #050505;
    --card-bg: rgba(18, 18, 18, 0.65);
    --text-light: #f5f5f5;
    --text-gray: #a8a8a8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

/* Background Effects */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('/images/screenshot-1.webp') no-repeat center center;
    background-size: cover;
}

.ambient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(27, 2, 2, 0.85) 0%, rgba(8, 0, 0, 0.95) 50%, rgba(0, 0, 0, 1) 100%);
}

.ambient-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(180, 0, 0, 0.04) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: pulseLight 10s ease-in-out infinite alternate;
}

@keyframes pulseLight {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.6;
}

/* Navigation */
nav {
    padding: 15px 40px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a i {
    font-size: 1.1rem;
}

nav a:hover,
nav a.active {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-select {
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.lang-select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 0 30px var(--primary-glow);
    color: #fff;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    letter-spacing: 6px;
    margin-top: 5px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 5px #000;
    font-weight: 400;
}

/* Container & Cards */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.content-box {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.content-box:hover {
    border-color: rgba(230, 0, 0, 0.3);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 20px;
}

/* Grid Links */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nav-card {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(230, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.nav-card:hover::before {
    transform: translateX(100%);
}

.nav-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(30, 0, 0, 0.8);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.2);
}

.nav-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: 0.3s;
}

.nav-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--primary-glow);
}

.nav-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Screenshots Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.gallery-item:hover img {
    filter: brightness(1.2) contrast(1.1);
}

/* System Requirements Table */
.sys-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.req-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.req-col h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.req-list {
    list-style: none;
}

.req-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.req-list li strong {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    color: #888;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.4);
    border: 1px solid var(--primary);
    letter-spacing: 1.5px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    font-family: 'Oswald', sans-serif;
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
    transform: translateY(-3px);
}

.discord-btn {
    background: #5865F2;
    /* Discord color */
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
    color: #5865F2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
}

.hero-dl-btn {
    font-size: 1.3rem;
    padding: 20px 50px;
    max-width: 500px;
}

.hero-dl-btn i {
    font-size: 1.5rem;
}

.hero-dl-btn:hover {
    transform: scale(1.03);
}

.btn-wrapper {
    text-align: center;
    margin: 40px 0;
}

.steps-list {
    list-style: none;
    margin: 30px 0;
    counter-reset: step-counter;
}

.steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -5px;
    width: 40px;
    height: 40px;
    background: rgba(230, 0, 0, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
}

.alert-box {
    background: rgba(230, 0, 0, 0.05);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.alert-box i {
    font-size: 2rem;
    color: var(--primary);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

.seo-text {
    font-size: 0.85rem;
    color: #444;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
}

@media (max-width: 900px) {
    .sys-req-grid {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}