body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #504444;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #d6334a;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

a {
    color: #d6334a;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

a:hover {
    color: #a52235;
}

div {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    margin: 25px auto;
    max-width: 450px;
    box-shadow: 0 10px 20px rgba(214, 51, 74, 0.1);
    transition: transform 0.3s ease;
}

div:hover {
    transform: translateY(-5px);
    border-color: #d6334a;
}

img {
    border-radius: 12px;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s;
}

div:hover img {
    border-color: #d6334a;
}

h2 {
    margin: 15px 0 5px 0;
    font-size: 1.4rem;
    color: #222;
}

p {
    color: #777;
    margin-bottom: 15px;
}

audio {
    width: 100%;
    height: 40px;
    outline: none;
}

footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #999;
}

hr {
    display: none;
}

.genre-link {
    font-size: 1.5rem;
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    border: 2px solid #d6334a;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.genre-link:hover {
    background-color: #d6334a;
    color: white;
    text-decoration: none;
}

.custom-button {
    background-color: #d6334a;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.custom-button:hover {
    background-color: #a52235;
    transform: scale(1.05);
}

#progressBar {
    width: 80%;
    accent-color: #d6334a;
    margin: 15px 0;
    cursor: pointer;
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: monospace;
    color: #d6334a;
    margin: 10px 0;
}

#progressBar {
    flex-grow: 1;
    max-width: 300px;
}