body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0c674;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

main {
    flex: 1;
}

section {
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.play-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f0c674;
    color: #333;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #e2b75e;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
        transition: max-height 0.3s;
        overflow: hidden;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-display {
        display: flex;
    }
}