Css
/* ================================
RESET
================================ */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* ================================
BASE STYLES
================================ */
body {
font-family: 'Georgia', serif;
background: url('../background_selrahc.jpg') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
color: #1a1a1a;
}

.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.65);
min-height: 100vh;
}

/* ================================
HEADER
================================ */
.header {
text-align: center;
margin-bottom: 30px;
}

.header h3 {
font-size: 1.5rem;
color: #2c3e50;
letter-spacing: 1px;
}

.header .by {
font-size: 1rem;
color: #555;
margin: 10px 0;
font-style: italic;
}

.header .artist-name {
font-size: 2.5rem;
color: #b8860b;
font-weight: bold;
letter-spacing: 3px;
}

/* ================================
NAVIGATION BAR
================================ */
.nav-bar {
display: flex;
justify-content: center;
align-items: center;
margin: 30px 0;
gap: 20px;
}

.nav-bar a {
text-decoration: none;
color: #2c3e50;
font-size: 1rem;
padding: 8px 20px;
transition: color 0.3s ease;
}

.nav-bar a:hover {
color: #b8860b;
}

.nav-divider {
width: 2px;
height: 20px;
background-color: #1a1a1a;
}

/* ================================
BACK LINK
================================ */
.back-link {
margin-bottom: 30px;
}

.back-link a {
color: #3a5a7c;
text-decoration: none;
font-size: 0.95rem;
transition: color 0.3s ease;
}

.back-link a:hover {
color: #b8860b;
}

/* ================================
GENRES SECTION (Index Page)
================================ */
.genres-section {
margin: 50px 0 40px 0;
}

.genres-section h4 {
font-size: 1.3rem;
color: #2c3e50;
margin-bottom: 15px;
border-bottom: 1px solid #b8860b;
display: inline-block;
padding-bottom: 5px;
}

.genre-list {
list-style: none;
margin-left: 25px;
}

.genre-list li {
margin: 12px 0;
}

.genre-list a {
text-decoration: none;
color: #3a5a7c;
font-size: 1.1rem;
transition: color 0.3s ease;
}

.genre-list a:hover {
color: #b8860b;
}

/* ================================
NEW ALBUM SECTION (Index Page)
================================ */
.new-album {
margin-top: 50px;
text-align: center;
}

.new-album h5 {
font-size: 1.1rem;
color: #555;
margin-bottom: 20px;
font-style: italic;
}

.new-album img {
max-width: 280px;
width: 100%;
border: 3px solid #b8860b;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ================================
TRACK LISTING (Genre Pages)
================================ */
.track-listing {
margin-top: 30px;
}

.track {
background: rgba(255, 255, 255, 0.6);
border: 1px solid #ddd;
border-left: 4px solid #b8860b;
padding: 20px;
margin-bottom: 25px;
border-radius: 4px;
}

.track-info {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 10px;
}

.track-title {
font-size: 1.3rem;
font-weight: bold;
color: #2c3e50;
}

.track-bpm {
font-size: 0.95rem;
color: #555;
}

.track-bpm em {
font-style: normal;
color: #3a5a7c;
}

.track-description {
font-size: 0.95rem;
color: #666;
margin-bottom: 15px;
font-style: italic;
}

.play-btn {
background-color: #2c3e50;
color: #fff;
border: none;
padding: 10px 25px;
font-size: 1rem;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s ease;
}

.play-btn:hover {
background-color: #b8860b;
}

/* ================================
WAVEFORM & TIMECODE
================================ */
.waveform-container {
display: none;
margin-top: 15px;
background: rgba(255, 255, 255, 0.5);
border-radius: 4px;
padding: 10px;
}

.timecode {
display: none;
margin-top: 8px;
font-size: 0.9rem;
color: #555;
text-align: right;
}

/* ================================
RESPONSIVE DESIGN
================================ */
@media (max-width: 600px) {
.header .artist-name {
font-size: 1.8rem;
}

.nav-bar {
flex-direction: column;
gap: 10px;
}

.nav-divider {
width: 40px;
height: 2px;
}

.container {
padding: 25px 15px;
}

.track-info {
flex-direction: column;
align-items: flex-start;
gap: 5px;
}

.play-btn {
width: 100%;
}
}