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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #fff;
    background: rgba(36, 0, 0, 1);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1,
.nav-brand a {
    color: rgba(255, 173, 42, 1);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: unset;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-menu a:hover {
    color: rgba(255, 173, 42, 1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Game Hero Section */
.game-hero {
    padding: 8rem 0 30px;
    background: url(/wp-content/themes/techfile_63dpbpwy/images/hero.png) no-repeat center;
    display: flex;
    align-items: center;
}

.game-header {
    max-width: 800px;
    margin-bottom: 3rem;
}

.game-title {
    font-size: 4rem;
    color: rgba(255, 173, 42, 1);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.game-subtitle {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.game-description {
    font-size: 14px;
    text-align: center;
    opacity: 0.8;
}

.game-image {
  height: 100%;
  
}

.game-image img {
  display: block;
    width: 100%;
    height: 100%;
     max-height: 324px;
    object-fit: cover;
  
}

/* About Game Section */
.about-game {
    padding: 5rem 0;
    background: #1f120a;
}


.section-title {
    font-size: 80px;
    color: #fff;
    text-align: center;

}

.about-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.game-screenshot img {
    width: 100%;
    aspect-ratio: 542/303;
    height: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-features h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: bold;
}

.feature-item p {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.play-button-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    color: rgba(255, 173, 42, 1);
    background-color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(152, 3, 3, 1);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0px 0px 14px 0px rgba(255, 173, 42, 1);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 173, 42, 1);
}

/* Footer */
.footer {
    background: rgba(15, 0, 1, 1);
    padding: 3rem 0 1rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3,
.footer-brand a {
    color: rgba(255, 173, 42, 1);
    font-size: 1.5rem;
    text-decoration: unset;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 173, 42, 1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #3d2817;
    opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(42, 24, 16, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .game-title {
        font-size: 2.5rem;
    }

    .game-subtitle {
        font-size: 1.3rem;
    }

    .game-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .game-hero {
        padding: 6rem 0 2rem;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-subtitle {
        font-size: 1.1rem;
    }

    .game-description, .about-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .play-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}