:root {
    --bg-dark: #121212;
    --spotify-green: #1DB954;
    --text-light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Circular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.early-adopter-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.login-title {
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.examples-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.mount-rushmore-image {
    width: 80%; /* Desktop width */
    max-width: 600px; /* Optional: prevent image from becoming too large */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain;
}
.example-item {
    position: relative;
}

.example-card {
    position: relative;
    width: 150px;
    height: 170px;
    overflow: hidden;
    object-fit: contain;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    bottom: 15px;
    right: 0px;
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.cta-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.app-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 220px;
    border-radius: 4px;
    border: none;
    margin-bottom: 8px;
    padding: 12px 24px;
    cursor: pointer;
}

.spotify-btn {
    /* background-color: var(--spotify-green); */
    background: none;
    min-width: 220px;
    text-align: center;
    color: #ccc;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: light;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* .spotify-btn:hover {
    background-color: #1ed760;
} */

.btn-icon {
    width: 24px;
    height: 24px;
}

.about-button {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    background-color: var(--bg-dark); /* Match background color */
    width: 100%;
    text-align: center;
}

.button-logo{
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.button-label{

    padding-left: .4em;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}
.button-big-label{
    font-size: 1.3em;
    font-weight: 600;
    line-height: 21px;
    color: black;
}
.button-small-label{
    color: black;
    font-size: .8em;
    font-weight: 400;
}


@media (max-width: 600px) {
    .examples-wrapper {
        gap: 10px;
    }
    .example-card {
        width: 80px;
        height: 100px;
        object-fit: contain;
    }
    .mount-rushmore-image {
        width: 80%; /* Mobile width */
    }

    .examples-wrapper {
        padding: 0 20px; /* Add some side padding on mobile */
    }
}