:root {
    --primary-color: #ff0055;
    --bg-dark: #121212;
    --bg-lighter: #1e1e1e;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --warning-color: #ffcc00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-lighter);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
}

.brand-logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

/* Main Content Area */
main {
    flex: 1;
    padding: 40px 5%;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)), url('images/gamedistrictatlx-esports-arena-background.jpg') center/cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #d40047;
    transform: translateY(-2px);
}

/* Game Section Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.age-restriction-banner {
    background-color: rgba(255, 204, 0, 0.1);
    border-left: 5px solid var(--warning-color);
    color: var(--text-light);
    padding: 15px 20px;
    margin: 0 auto 40px;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
}

.age-badge {
    background-color: var(--warning-color);
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 5px 15px;
    border-radius: 3px;
}

.age-text {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.game-card {
    background-color: var(--bg-lighter);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.2);
}

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

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.game-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-lighter);
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}
/* ENDFILE */

<!-- FILE: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Home - gamedistrictatlx.beauty</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>

    <!-- Improved Global Header -->
    <header class="site-header">
        <a href="index.html" class="brand-container">
            <img src="gamedistrictatlx-beauty-official-logo.png" alt="gamedistrictatlx.beauty Official Brand Logo" class="brand-logo">
            <div class="brand-name">GameDistrict<span>ATLX</span>.beauty</div>
        </a>
        <nav class="main-nav">
            <ul>
                <li><a href="index.html" class="active">Home</a></li>
                <li><a href="games.html">Games</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section class="hero">
            <h1>Welcome to the Ultimate Gaming Beauty Experience</h1>
            <p>Immerse yourself in a world where premium gaming meets elite aesthetics. Join the most exclusive community today.</p>
            <a href="games.html" class="btn">Explore Games</a>
        </section>
        
        <div class="title-wrapper">
            <h2 class="section-title">Latest Updates</h2>
            <p>Check out our latest immersive experiences tailored for the true connoisseur.</p>
        </div>
    </main>

    <!-- Global Footer -->
    <footer class="site-footer">
        <div class="footer-content">
            <img src="gamedistrictatlx-beauty-footer-icon.png" alt="gamedistrictatlx.beauty footer crest icon" class="footer-logo">
            <p class="copyright">&copy; 2026 gamedistrictatlx.beauty. All rights reserved.</p>
            <ul class="footer-links">
                <li><a href="#">Privacy Policy</a></li>
                <li><a href="#">Terms of Service</a></li>
                <li><a href="#">Responsible Gaming</a></li>
            </ul>
        </div>
    </footer>

</body>
</html>