<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #1e1e1e;
    color: white;
    font-family: sans-serif;
    padding: 2rem;
    max-width: 600px;
    margin: auto;
    transition: box-shadow 0.7s ease-out;
}

li img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 0.5rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

a {
    color: #00aaff
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

ul {
    padding-left: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

input[type="text"] {
    padding: 0.5rem;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    margin: auto;
    display: block;
    box-sizing: border-box;
    border-radius: 6px;
}

button {
    cursor: pointer;
    border: none;
}

#shareBtn, #closeBtn {
    padding: 0.5rem;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    margin: auto;
    display: block;
    box-sizing: border-box;
    border-radius: 6px;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
}

#submitBtn {
    padding: 0.5rem;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 6px;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#archiveButton {
    padding: 0.5rem;
    font-size: 1rem;
    width: 30%;
    max-width: 400px;
    margin: auto;
    display: block;
    box-sizing: border-box;
    border-radius: 6px;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
}

#progressBar {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.5rem; /* adds spacing between emojis */
}

#numGuessesRemaining {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    color: #bebebe;
}

#nextPuzzleTimer {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    color: #bebebe;
}

#result {
    font-size: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}

#copyConfirm {
    text-align: center;
    color: lightgreen;
    margin-top: 0.5rem;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

#instructionsModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c2c2c;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    z-index: 1001;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#instructionsModal button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.clueItem {
    animation: slideDown 0.4s ease-out forwards;
}

.muted-link {
    background: none;
    color: #aaa; /* muted gray */
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0;
    margin-top: 1rem;
}

.muted-link:hover {
    color: #ddd; /* slightly lighter on hover */
}

#titleBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 1rem;
    background-color: #1e1e1e;
}

#titleBar h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    margin: 0;
    color: white;
}

.buttonGroupLeft {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.buttonGroupRight {
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

.buttonGroup button {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
}

#redFlashOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
            linear-gradient(to right, rgba(255,0,0,0.6) 0%, rgba(255,0,0,0) 10%, rgba(255,0,0,0) 90%, rgba(255,0,0,0.6) 100%),
            linear-gradient(to bottom, rgba(255,0,0,0.6) 0%, rgba(255,0,0,0) 10%, rgba(255,0,0,0) 90%, rgba(255,0,0,0.6) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 9999;
}

#greenFlashOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
            linear-gradient(to right, rgba(0,255,0,0.6) 0%, rgba(0,255,0,0) 10%, rgba(0,255,0,0) 90%, rgba(0,255,0,0.6) 100%),
            linear-gradient(to bottom, rgba(0,255,0,0.6) 0%, rgba(0,255,0,0) 10%, rgba(0,255,0,0) 90%, rgba(0,255,0,0.6) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 9999;
 }

#archiveOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

#archiveModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c2c2c;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    z-index: 1001;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#titleLink {
    color: white;
    text-decoration: none;
}

#titleLink:hover {
    cursor: pointer;
}

.btn-text {
    transition: opacity 0.2s ease;
}

.btn-spinner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

</pre></body></html>