* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #000;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.navbar {
    width: 100%;
    padding: 20px 50px;
    background-color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1DB954;
}

.nav-menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: .2s ease;
}

.nav-menu a:hover {
    color: #1DB954;
}


.auth a {
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: .2s ease;
}

.login {
    color: #fff;
}

.signup {
    background-color: #1DB954;
    color: #000;
}

.signup:hover {
    background-color: #17a447;
}


.hero {
    padding: 200px 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px;
    margin-top: 20px;
    color: #d1d1d1;
}

.cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #1DB954;
    color: black;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    transition: .2s ease;
}

.cta-btn:hover {
    background-color: #17a447;
}


.hero-image img {
    width: 450px;
}


.footer {
    text-align: center;
    padding: 30px;
    background-color: #111;
    color: #aaa;
    margin-top: auto;
}


@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image img {
        margin-top: 40px;
        width: 300px;
    }
}

.logout-btn {
    padding: 8px 20px;
    background: #00C851;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}
.logout-btn:hover {
    opacity: .8;
}

