@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #dc2626; /* Gameonix Red */
    --primary-glow: rgba(220, 38, 38, 0.4);
    --secondary: #991b1b;
    --accent: #ffffff;
    --bg-dark: #0a0a0a; /* Deep Black */
    --bg-card: rgba(23, 23, 23, 0.8);
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gradient Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(38, 38, 38, 0.2), transparent 40%);
    z-index: -1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.7;
}

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

.btn-launch {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 4px; /* Professional squared edges for Gameonix */
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-launch:hover {
    transform: translateY(-2px);
    background: #ef4444;
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    /* Darker overlay for red/black theme */
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), url('hero.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Powered By Badge */
.powered-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.powered-by span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.powered-by strong {
    color: var(--text-main);
}

/* Features Section */
.features {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary);
    background: rgba(23, 23, 23, 1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Workflow Section */
.workflow {
    padding: 100px 5%;
    background: #111;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(220, 38, 38, 0.1);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Footer Section */
.cta-footer {
    padding: 120px 5%;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(10, 10, 10, 0.5));
    border: 2px solid var(--primary);
    padding: 5rem 2rem;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

footer {
    padding: 4rem 5%;
    background: #000;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    color: var(--text-muted);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.footer-branding {
    text-align: center;
    font-size: 0.85rem;
    max-width: 600px;
}

.footer-branding strong {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    .nav-links {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, .hero p, .hero .btn-launch, .powered-by {
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 { animation-delay: 0.1s; }
.hero p { animation-delay: 0.3s; }
.hero .btn-launch { animation-delay: 0.5s; }
.powered-by { animation-delay: 0s; }
