html, body {
    margin: 0;
    height: 100%;
    background: #000;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#clock-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.word {
    position: absolute;
    transition: color 0.3s ease;
}

/* Glass UI */
#settings-panel {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    color: #fff;
    z-index: 1000;
    min-width: 260px;
}

#settings-panel h3 {
    margin-top: 0;
    font-weight: normal;
}

#settings-panel label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

#settings-panel input,
#settings-panel select {
    margin-top: 4px;
    width: 100%;
}
