body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #0e0e0e;
    color: #e5e5e5;
}

.hero {
    background: url("images/banner.jpg") center/cover no-repeat;
    text-align: center;
    padding: 6rem 1rem;
    background-color: #111;
    color: #fff;
    box-shadow: 0 0 30px #000;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.play-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    background-color: #783f04;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.play-button:hover {
    background-color: #b45f06;
}

.content {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

h2 {
    color: #ffaa00;
}

a {
    color: #ffaa00;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #111;
    font-size: 0.9rem;
    color: #666;
}
.navbar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.navbar a {
    color: #ffaa00;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.navbar a:hover {
    background-color: rgba(255, 170, 0, 0.15);
}
.small-hero {
    padding: 3rem 1rem;
    background-color: #111;
    background-image: none;
}

.navbar .active {
    background-color: rgba(255, 170, 0, 0.25);
}
