body {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #183455;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    font-smooth: never;
    text-rendering: optimizeSpeed;
}

.website-container {
    width: 80vw;
    max-width: 1000px;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 20px),
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 20px);
    background-size: 20px 20px, 20px 20px;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

.header {
    width: 100%;
    background:
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        linear-gradient(to bottom, #1e3a5f 0%, #183455 50%, #0f2238 100%);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 4px;
}

.header-banner {
    height: 100%;
    font-size: 24px;
    padding: 40px;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #eeeeee 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Audio Player Styles */
.audio-player {
    margin: 8px;
    padding: 0;
}

.player-container {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.player-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.track-info {
    flex: 1;
}

.track-title {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
    display: block;
    margin-bottom: 4px;
}

.track-time {
    color: #00ccff;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    text-shadow: 0 0 3px #00ccff;
}

.equalizer {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 30px;
}

.equalizer .bar {
    width: 3px;
    background: linear-gradient(to top, #ff0000, #ffff00, #00ff00);
    border-radius: 1px;
    animation: bounce 0.5s infinite alternate;
}

.equalizer .bar:nth-child(1) {
    height: 20%;
    animation-delay: 0s;
}

.equalizer .bar:nth-child(2) {
    height: 60%;
    animation-delay: 0.1s;
}

.equalizer .bar:nth-child(3) {
    height: 40%;
    animation-delay: 0.2s;
}

.equalizer .bar:nth-child(4) {
    height: 80%;
    animation-delay: 0.3s;
}

.equalizer .bar:nth-child(5) {
    height: 30%;
    animation-delay: 0.4s;
}

.equalizer .bar:nth-child(6) {
    height: 70%;
    animation-delay: 0.5s;
}

.equalizer .bar:nth-child(7) {
    height: 50%;
    animation-delay: 0.6s;
}

@keyframes bounce {
    0% {
        transform: scaleY(0.3);
    }

    100% {
        transform: scaleY(1);
    }
}

.progress-container {
    margin: 8px 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: linear-gradient(to bottom, #ffffff, #cccccc);
    border: 1px solid #999999;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.control-btn {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.control-btn:hover {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.4);
}

.control-btn:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 2px 3px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

.play-pause {
    font-size: 16px;
    padding: 10px 14px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
}

.volume-icon {
    font-size: 14px;
    cursor: pointer;
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: linear-gradient(to bottom, #ffffff, #cccccc);
    border: 1px solid #999999;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.playlist-selector {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 8px;
    color: white;
    font-size: 11px;
    cursor: pointer;
    margin-left: 12px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.playlist-selector option {
    background: #183455;
    color: white;
}

nav li {
    padding: 12px 24px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    margin: 2px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.separator {
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 6px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    margin: 0;
    font-size: 14px;
}

nav {
    color: white;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: normal;
    font-size: 12px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

nav a:hover {
    color: white;
}

nav li:hover {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

nav li:active {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    box-shadow:
        inset 0 2px 3px rgba(0, 0, 0, 0.3),
        0 1px 1px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

main {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
}

.main-page {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 248, 248, 0.8) 100%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px);
    padding: 20px;
    border-radius: 8px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
}

.gallery:hover {
    border: 1px solid #777;
}

.gallery img {
    width: 100%;
    height: auto;
}

.desc {
    background-color: black;
    padding: 10px;
    text-align: center;
    color: white;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

a {
    color: #3b5575;
}

a:hover {
    color: #5077a3;
}

a:visited a:active {
    color: #0c2b52;
}

.main-footer {
    width: 100%;
    color: #44648a;
    background:
        radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        linear-gradient(to bottom, #0f2238 0%, #0b1d33 50%, #081426 100%);
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 -2px 8px rgba(0, 0, 0, 0.3);
}

.centered-images {
    text-align: center;
}

.main-footer ul {
    margin: 10px 0 0 0;
    padding: 0;
}

.main-footer li {
    display: inline;
}

.main-footer a {
    text-decoration: none;
    color: #44648a;
    margin: 0 10px;
}

.main-footer a:hover {
    color: #5077a3;
}