/* Reset & Base */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('https://preview.redd.it/i-recreated-one-of-the-ai-generated-frutiger-aero-v0-ai3w3fymdz7a1.png?width=1920&format=png&auto=webp&s=d8b57fb11c8ec188cdc106dd1e54d6c2abea9fda') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@keyframes bg {
    from { background-size: 100%; }
    to { background-size: 600%; }
}

/* Container Styling */
.container {
    width: 500px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        inset 0 -10px 30px 15px rgba(255, 255, 255, 0.4),
        inset 0 10px 20px rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Glass reflection overlay */
.container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.pngkit.com/png/full/497-4978216_glass-reflection-png-windows-7-glass-reflection.png') no-repeat center top;
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

/* This makes sure content sits above the sheen */
.container > * {
    position: relative;
    z-index: 3;
}

#clock, #lunar-date {
    font-size: 1.5rem;
    margin: 10px 0;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    box-shadow: inset 0 0 8px rgba(255,255,255,0.5);
    color: white;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}

/* Media Player Styling */
.media-player {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 260px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow:
        inset 0 0 10px rgba(255,255,255,0.3),
        0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

#play-pause {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.4);
}

.track-info {
    color: white;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

#seek-bar {
    width: 90%;
    accent-color: #00b0ff;
}
