body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #1DB954;
    margin-bottom: 30px;
}

form {
    background-color: #282828;
    padding: 25px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #3E3E3E;
    color: white;
    border-radius: 4px;
    font-size: 16px;
}

small {
    display: block;
    margin-top: 8px;
    color: #B3B3B3;
}

button {
    background-color: #1DB954;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1ED760;
}

.success-message {
    background-color: #282828;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.actions {
    display: flex;
    gap: 15px;
}

.button {
    display: inline-block;
    background-color: #333333;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #444444;
}

.spotify-button {
    background-color: #1DB954;
}

.spotify-button:hover {
    background-color: #1ED760;
}
.instruction-list {
    margin: 10px 0 15px 25px;
    color: #B3B3B3;
}

.instruction-list li {
    margin-bottom: 5px;
}

.example {
    background-color: #3E3E3E;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.highlight {
    color: #1DB954;
    font-weight: bold;
}

.note {
    margin-top: 15px;
    font-style: italic;
    color: #E9A0A0;
}