:root {
    --bg-color: #121212;
    --primary-color: #1DB954;
    --secondary-color: #FFFFFF;
    --text-color: #B3B3B3;
    --card-bg-color: #181818;
    --card-hover-bg-color: #282828;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --font-family: 'Poppins', sans-serif;
}

/* A more modern CSS reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set core body styles */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

/* Remove default list styles */
ul,
ol {
    list-style: none;
}

/* Make images responsive by default */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
    font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* General link styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}