body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #000000;
    font-family: 'Courier New', monospace; /* Industrial/Tech feel */
    color: #ffffff;
    overflow: hidden;
}

.bg-container {
    width: 100%;
    height: 100%;
    background-image: url('DYS_ScratchingFlagGraphic-04.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

header {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

nav ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #8b0000;
}

.inner-page-content {
    background-color: rgba(0, 0, 0, 0.9);
    width: 80%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border: 2px solid #ffffff;
    text-align: center;
    z-index: 20;
    cursor: default;
    max-height: 50vh; 
    overflow-y: auto;
}

.about-photo {
    max-height: 25vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    border: 2px solid #ffffff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* IMPROVED PLAYER STYLING */
footer {
    position: absolute;
    bottom: 5vh;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.player-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 2px solid #ffffff;
    width: 400px;
}

.album-thumb {
    height: 80px; 
    width: 80px;
    object-fit: cover;
    border: 1px solid #ffffff;
}

.custom-player {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#play-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

#play-btn:hover {
    background: #8b0000;
    color: #ffffff;
}

#time-display {
    font-size: 0.9rem;
    font-family: monospace;
}

.progress-container {
    height: 6px;
    background: #333;
    cursor: pointer;
    border: 1px solid #ffffff;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #ffffff;
}

@media (max-width: 768px) {
    .player-wrapper {
        width: 85%;
        padding: 15px;
    }
}
