:root {
    --primary-color: #e53935; /* Epic Red */
    --primary-hover: #b71c1c;
    --accent: #ffd54f; /* Gold */
    --bg-dark: #09090b;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

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

/* Background Effects */
.bg-image {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('https://images.unsplash.com/photo-1605806616949-1e87b487fc2a?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.3;
    z-index: -3;
    filter: grayscale(80%) sepia(20%) hue-rotate(320deg) brightness(0.6);
}

.bg-vignette {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, transparent 20%, #000000 100%);
    z-index: -2;
}

.particles {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
    animation: floating 60s linear infinite;
}

@keyframes floating {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: background 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(229, 57, 53, 0.8);
}

.logo-img {
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.6);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.btn-play {
    background: linear-gradient(45deg, var(--primary-hover), var(--primary-color));
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.8rem 2rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: transform 0.2s, filter 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-play:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.sub-heading {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.9);
}

.text-glow {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(229, 57, 53, 0.6);
}

.hero-desc {
    max-width: 800px;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-large {
    background: linear-gradient(90deg, #991b1b, #ef4444);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1.2rem 4rem;
    cursor: pointer;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.4);
}

.btn-large:hover {
    background: linear-gradient(90deg, #ef4444, #f87171);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(229, 57, 53, 0.6);
}

.platforms {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.platforms span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Features Section */
.features-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(229, 57, 53, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 213, 79, 0.5);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .main-heading { font-size: 4.5rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
    .main-heading { font-size: 3.5rem; }
    .sub-heading { font-size: 1.2rem; }
    .nav-actions { display: none; }
}
