/* Basic Reset / Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Placeholder font */
    line-height: 1.6;
    background-color: #222; /* Dark background assumption */
    color: #eee;
}

/* Header Styles */
.main-header {
    background-color: #111; /* Very dark header */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fd7e14; /* Accent color assumption */
}

#header-logo {
    max-height: 50px; /* Adjust as needed */
    display: block;
}

.main-nav a {
    color: #eee;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #fd7e14; /* Accent color on hover */
}

/* Main Content Area */
main {
    max-width: 1200px; /* Or appropriate width */
    margin: 0 auto; /* Center content */
}

/* Hero Section */
.hero-section {
    /* User needs to replace 'hero-background.jpg' */
    background: url('https://gorillatag.org/hero-background.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    min-height: 60vh; /* Example height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 3rem; /* Large heading */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.store-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.store-button.steam { background-color: #1b2838; } /* Steam colors */
.store-button.steam:hover { background-color: #2a475e; }

.store-button.quest { background-color: #007bff; } /* Meta/Quest blue */
.store-button.quest:hover { background-color: #0056b3; }

/* General Content Sections */
.content-section {
    padding: 40px 20px;
    border-bottom: 1px solid #444; /* Separator */
}

.content-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fd7e14; /* Accent color */
}

.content-section p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #555;
}

.dark-bg {
    background-color: #1a1a1a; /* Slightly different dark for variation */
}

/* Media Gallery Example */
.media-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-item {
    max-width: 300px; /* Adjust size */
    height: auto;
    border: 1px solid #555;
}

.video-placeholder {
    width: 300px; /* Match image size */
    height: 169px; /* Approx 16:9 aspect ratio */
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Community Section Example */
.discord-button {
     display: block;
     width: fit-content;
     margin: 20px auto 0 auto;
     padding: 12px 25px;
     background-color: #7289DA; /* Discord color */
     color: #fff;
     text-decoration: none;
     font-weight: bold;
     border-radius: 5px;
     text-align: center;
     transition: background-color 0.3s ease;
}

.discord-button:hover {
     background-color: #5f73bc;
}


/* Footer Styles */
.main-footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 30px; /* Space before footer */
    font-size: 0.9em;
    border-top: 2px solid #fd7e14; /* Accent color */
}

.footer-links a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
}

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

/* Add Responsive Design (Media Queries) as needed for different screen sizes */
/* Example:
@media (max-width: 768px) {
    .main-header { flex-direction: column; }
    .main-nav a { margin: 10px 0; }
    .hero-section h1 { font-size: 2rem; }
}
*/