/* --- Global Resets & Fonts --- */
body {
    padding: 0;
    margin: 0;
    font-family: 'pageFont', 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px; 
    line-height: 1.6;
    color: #e0e0e0;
    background: #000;
    overflow-x: hidden;
}

@font-face {
    font-family: 'pageFont';
    src: url('OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'titleFont';
    src: url('LondrinaSolid-Regular.ttf');
}

/* --- Layout Utilities --- */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-family: 'titleFont', sans-serif;
    color: #01e435;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Header --- */
.site-header {
    background-color: #000;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    max-width: 600px;
    width: 100%;
    /* GLOW EFFECT REMOVED: filter: drop-shadow(0 0 10px rgba(1, 228, 53, 0.2)); */
}

/* --- The Neon Line --- */
.green_line {
    width: 100%;
    height: 0px;
    border-bottom: 2px solid #01e435;
    box-shadow: 0px 0px 8px 4px #01e435;
    z-index: 100;
    position: relative;
}

/* --- Star Background Section (Video/Steam Only) --- */
.background {
    background-image: url("skybg.jpg");
    background-attachment: fixed; 
    background-repeat: repeat;     
    background-size: auto;         
    background-position: top left; 

    min-height: 50vh; /* Adjusted for just the top content */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* --- Solid Black Info Section (Text/Screenshots) --- */
.info-section {
    background-color: #000; /* Solid black background */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* --- Shared Content Container Styles --- */
.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    width: 100%;
    max-width: 1000px;
}

/* --- Text Styling (Applied to the Info Section) --- */
.intro-text {
    max-width: 800px;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(1, 228, 53, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.features-list ul {
    list-style-type: none;
    padding-left: 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.features-list li::before {
    content: "►";
    color: #01e435;
    position: absolute;
    left: 0;
}

/* --- Media Gallery (Screenshots) --- */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.media-item {
    border: 2px solid #333;
    transition: transform 0.2s;
}

/* Temporary placeholder style if you don't have images yet */
.media-item img[src*="placeholder"] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #222;
}

.media-item:hover {
    border-color: #01e435;
    transform: scale(1.02);
}

/* --- Video Responsiveness --- */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%;
    height: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

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

/* --- Steam Widget Handling --- */
.widget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.widget-wrapper iframe {
    width: 646px;
    height: 190px;
    max-width: 100%;
}

/* --- Footer --- */
.footer {
    background-color: #000;
    display: flex;
    justify-content: center;
    padding: 30px 30px;
}

.footer img {
    height: 8rem;
    transition: transform 0.2s ease;
}

.footer img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* --- Mobile Tweaks --- */
@media (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1rem;
    }
    
    .content-container {
        padding: 30px 15px;
        gap: 30px;
    }

    .info-card {
        padding: 20px;
    }

    .widget-wrapper {
        display: block;
        overflow-x: auto;
        text-align: center;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .widget-wrapper::-webkit-scrollbar { 
        display: none; 
    }

    .footer {
        justify-content: center;
        padding: 30px 20px;
    }
    
    .footer img {
        height: 5rem;
    }
}
