<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Copyright (c) 2025 Marko Tarvainen, Khaida.net */

/* Base Layout */
body {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    transition: background 0.8s ease;
    overflow: hidden;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    font-weight: 300;
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

/* Clock Styling */
#clock-container {
    text-align: center;
    padding: 3em 4em;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

#palia-time {
    font-size: 8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#palia-time span.ampm {
    font-size: 3.5rem;
    font-weight: 300;
    margin-left: 20px;
    opacity: 0.8;
    vertical-align: middle;
}

/* Theme Switcher Styling */
#theme-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

#theme-switcher button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

#theme-switcher button:hover, #theme-switcher button.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Themes &amp; Background Animation */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Theme 1: Sunset */
body.theme-sunset {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-animation 18s ease infinite;
}

/* Theme 2: Cosmic */
body.theme-cosmic {
    background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e);
    background-size: 400% 400%;
    animation: gradient-animation 18s ease infinite;
}</pre></body></html>