/* Reset and base styles */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff4d4d;
    --text-color: #ffffff;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.nav__container {
    display: flex;
    align-items: center;
    height: 80px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav__logo {
    height: 40px;
    width: auto;
}

.nav__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__cta {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.button {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--accent-color);
    color: var(--text-color);
}

.button--secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.hero__rating {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* Overview Section */
.overview {
    padding: 80px 0;
    background: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.overview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview__text {
    color: var(--text-color);
}

.overview__description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.overview__highlights {
    list-style: none;
    padding-left: 0;
}

.overview__highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.overview__highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.overview__video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.overview__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--secondary-color, #1f1f1f);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.feature-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card__title {
    color: var(--text-color);
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
}

.feature-card__text {
    color: var(--text-color);
    padding: 0 1.5rem 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview__content {
        grid-template-columns: 1fr;
    }
    
    .features__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Characters Section */
.characters {
    padding: 80px 0;
    background: var(--primary-color);
}

.characters__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.character-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.character-card__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.character-card__info {
    padding: 2rem;
}

.character-card__title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Environment Section */
.environment {
    padding: 80px 0;
    background: var(--secondary-color);
}

.environment__content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.environment__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.environment__image {
    width: 100%;
    border-radius: 10px;
}

.environment__features {
    list-style: none;
    margin-top: 20px;
}

.environment__features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* Media Gallery */
.media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.media__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.media__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media__image:hover {
    transform: scale(1.02);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--primary-color);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.review-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-card__rating {
    color: var(--accent-color);
}

/* System Requirements */
.requirements {
    padding: 80px 0;
    background: var(--secondary-color);
}

.requirements__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.requirements__list {
    list-style: none;
}

.requirements__list li {
    margin-bottom: 15px;
    color: var(--text-color);
}

.requirements__subtitle {
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .characters__content,
    .environment__content,
    .requirements__grid {
        grid-template-columns: 1fr;
    }

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

    .media__item--large {
        grid-column: auto;
        grid-row: auto;
    }
}

/* SEO Content Styling */
.seo-content {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-color);
}

.seo-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-article h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--accent-color);
}

.seo-article h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.seo-article h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.seo-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.seo-article ul {
    margin: 1rem 0 2rem 2rem;
}

.seo-article li {
    margin-bottom: 0.5rem;
}

.gameplay-details,
.feature-breakdown,
.future-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.conclusion {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .seo-article {
        padding: 0 20px;
    }
    
    .seo-article h2 {
        font-size: 1.8rem;
    }
}