/* --- Game Style --- */

/* --- Variables --- */
:root {
    --primary-color: #F8A52A; /* Orange */
    --secondary-color: #00A8A8; /* Cyan */
    --background-color: #121212;
    --surface-color: #1E1E1E;
    --text-color: #EAEAEA;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- Base & Performance --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--primary-color);
    text-shadow: 3px 3px 0px var(--secondary-color), 6px 6px 0px rgba(0,0,0,0.2);
}

h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    max-width: 800px; /* Readability */
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--primary-color);
}

/* --- Layout --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    transition: background 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-color);
}

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

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 90vh;
    background: url('https://images.hdqwalls.com/wallpapers/deathloop-2020-4k-rq.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
}

.hero-content {
    background: rgba(18, 18, 18, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 900px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 2rem;
    border: 3px solid var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover, .cta-button:focus {
    background-color: transparent;
    color: var(--primary-color);
}

.content-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section p {
    margin-left: auto;
    margin-right: auto;
}

.dark-bg {
    background-color: var(--surface-color);
}

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

.feature-item {
    background: var(--background-color);
    padding: 2rem;
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* --- Reviews Section --- */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    max-width: none;
}

.review-source {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--background-color);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--background-color);
    font-size: 1.125rem;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.cta-section .cta-button {
    background-color: var(--background-color);
    color: var(--primary-color);
    border-color: var(--background-color);
    font-size: 1.5rem;
    padding: 1.25rem 2.5rem;
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: var(--background-color);
    border-color: var(--background-color);
}

/* --- Footer --- */
footer {
    background-color: var(--surface-color);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-content p {
    margin-bottom: 1rem;
    max-width: none;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-content a {
    color: var(--primary-color);
}

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

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for this example. A real site would use a hamburger menu. */
    }

    h1 {
        text-shadow: 2px 2px 0px var(--secondary-color), 4px 4px 0px rgba(0,0,0,0.2);
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
        background-attachment: scroll; /* Fixed attachment is bad on mobile */
    }

    .hero-content {
        padding: 1rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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