/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ddd;
    background-color: #121212;
}

a {
    text-decoration: none;
    color: #ff4d4d;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #fff;
}

ul {
    list-style: none;
}

section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background-color: #050505;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff0000;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

.logo a {
    color: #ff0000;
    text-decoration: none;
    display: block;
}

.logo a:hover {
    color: #ff4d4d;
    text-decoration: none;
}

header nav ul {
    display: flex;
    gap: 1.5rem;
}

header nav ul li a {
    color: #ddd;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
    background-color: #0a0a0a;
    color: #ddd;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ff4d4d;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    padding: 0 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-button {
    background-color: #ff4d4d;
    color: #000;
    padding: 0.6rem 2.5rem;
    border-radius: 0;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #cc3939;
    transform: translateY(-2px);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 77, 77, 0.1);
}

.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Play Online Section */
.play-online {
    text-align: center;
    background-color: #0a0a0a;
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.play-online h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ff4d4d;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
}

/* Best Site Section */
.best-site {
    background-color: #0a0a0a;
    padding: 2rem 0;
}

.site-praise {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 77, 77, 0.05);
    border-left: 3px solid #ff4d4d;
    border-right: 3px solid #ff4d4d;
}

.site-praise h2 {
    color: #ff4d4d;
    margin-bottom: 1rem;
}

/* Play/Download Section */
.play-now {
    text-align: center;
    background-color: #0a0a0a;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.warning {
    background-color: rgba(255, 77, 77, 0.1);
    border-left: 4px solid #ff4d4d;
    padding: 0.8rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.tagline {
    font-style: italic;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.center {
    justify-content: center;
    margin: 1rem auto;
}

/* Game Container Styles */
.game-container {
    max-width: 1000px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: #0a0a0a;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.3);
    position: relative;
}

.game-placeholder {
    width: 100%;
    height: 420px;
    background-color: #0a0a0a;
    margin: 1rem 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* YouTube iframe styles */
.game-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.game-placeholder .fullscreen-btn {
    z-index: 2;
}

.video-description {
    margin-top: 0.5rem;
    text-align: right;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.game-screenshot {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
    transition: filter 0.3s ease;
}

.game-placeholder:hover .game-screenshot {
    filter: brightness(0.5) contrast(1.3);
}

.game-menu {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 0;
    z-index: 2;
    text-align: center;
    border: 1px solid #ff4d4d;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.game-menu:hover {
    transform: translateY(-5px);
}

.menu-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ff4d4d;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.7);
}

.menu-item {
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-item:hover {
    color: #ff4d4d;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.6);
}

.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.fullscreen-btn:hover {
    background-color: rgba(255, 77, 77, 0.7);
}

.tip {
    background-color: rgba(255, 77, 77, 0.1);
    padding: 0.8rem;
    border-radius: 0;
    margin: 1rem 0;
    border-left: 3px solid #ff4d4d;
    font-style: italic;
}

/* Game Screenshot (standalone, not in game container) */
.game-screenshot:not(.game-placeholder .game-screenshot) {
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

/* Story Section */
.story {
    background-color: #000;
}

.story .feature-panel {
    margin: 0;
    padding: 2rem 2rem 2rem 2rem;
    background-color: #0f0f0f;
    border-left: none;
    position: relative;
    max-width: none;
}

.story .feature-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: transparent;
    display: none;
    z-index: 1;
}

.story .feature-panel-icon {
    position: absolute;
    left: 10px;
    top: 25px;
    transform: none;
    color: #000;
    font-size: 1.8rem;
    background-color: #ff4d4d;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 0;
}

.story .feature-panel h3 {
    color: #ff4d4d;
    margin: 0 0 1.2rem 79px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story .feature-panel p {
    margin: 0 0 1rem 79px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    background-color: #0a0a0a;
    padding: 3rem 0;
    text-align: center;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.review-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #141414;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-quote {
    position: relative;
    padding: 0.5rem;
}

.review-quote:before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255, 77, 77, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
}

.review-source {
    text-align: right;
    margin-top: 1rem;
    font-style: italic;
    color: #ff4d4d;
}

/* Download Section */
.download-game {
    text-align: center;
    background-color: #070707;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.download-option {
    background-color: #141414;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 220px;
    border-bottom: 3px solid #ff4d4d;
}

.download-option h3 {
    color: #ff4d4d;
    margin-bottom: 0.5rem;
}

.file-size {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.download-button {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.5rem 1.2rem;
    background-color: #ff4d4d;
    color: #000;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #cc3939;
    transform: translateY(-2px);
}

.version-info {
    margin: 2rem auto;
    max-width: 800px;
    background-color: #141414;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.version-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.version-item h4 {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.tag, .input-type {
    display: inline-block;
    background-color: #272727;
    padding: 0.2rem 0.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
}

.game-logo {
    height: 150px;
    margin: 1.5rem auto;
    max-width: 500px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    background-color: #0a0a0a;
}

.game-logo img, .game-logo-bottom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.5));
}

.game-logo-bottom {
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

/* Features Sections */
.experience {
    background-color: #0a0a0a;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.experience p, .features-detail p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.features-detail {
    background-color: #070707;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.features-detail h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ff4d4d;
}

.features-detail > p {
    text-align: center;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
}

.feature-image {
    flex: 1;
    height: 250px;
    background-color: #141414;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    padding: 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 1rem;
    color: #ff4d4d;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

.feature:nth-child(odd) .feature-image {
    order: -1;
}

/* About Sections */
.about {
    background-color: #0a0a0a;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about > h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ff4d4d;
}

.about > p {
    text-align: center;
    margin-bottom: 2rem;
}

.about-section {
    margin: 3rem 0;
    background-color: #141414;
    border-radius: 0;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    border-left: 3px solid #ff4d4d;
}

.about-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff4d4d;
    color: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-section h3 {
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

.about p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #070707;
}

.faq h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff4d4d;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: #141414;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 3px solid #ff4d4d;
}

.faq-item h4 {
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #050505;
    color: #ddd;
    padding: 3rem 1.5rem 1rem;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo h3 {
    color: #ff4d4d;
    margin-bottom: 0.5rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-links, .footer-news {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-news h4 {
    color: #ff4d4d;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul li, .footer-news ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a, .footer-news ul li a {
    color: #999;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover, .footer-news ul li a:hover {
    color: #ff4d4d;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #777;
}

.footer-bottom-links a {
    color: #999;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff4d4d;
}

.footer-logo h3 a {
    color: #ff4d4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo h3 a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .feature {
        flex-direction: column;
    }
    
    .feature:nth-child(odd) .feature-image {
        order: 0;
    }
    
    .feature-image, .feature-content {
        width: 100%;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}

.feature-panel {
    max-width: 100%;
    margin: 2.5rem auto;
    background-color: #141414;
    padding: 2rem 2rem 2rem 3.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    border-left: 4px solid #ff4d4d;
}

.feature-panel::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 20px;
    width: 64px;
    height: 64px;
    background-color: #ff4d4d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-panel h3 {
    color: #ff4d4d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-panel p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-panel-icon {
    position: absolute;
    left: -36px;
    top: 36px;
    color: #000;
    font-size: 1.8rem;
    z-index: 2;
}

.download-option.windows-only {
    margin: 0 auto;
    width: 300px;
    border: 1px solid #ff4d4d;
    padding: 2rem;
}

.download-option.windows-only h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.download-option.windows-only p {
    text-align: center;
}

.download-option.windows-only .download-button {
    display: block;
    width: 150px;
    margin: 1.5rem auto 0;
    text-align: center;
} 