body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.logo-container h1 {
    font-size: 3em;
    margin: 15px 0 0;
    color: #2f2f2f;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.flashlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 999;
    display: none;
    transition: background 0.3s;
}

.flashlight-overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.9);
}

.flashlight-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background: #f5f5f5;
    padding: 8px;
    border: 1px solid #2f2f2f;
    cursor: pointer;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.flashlight-toggle svg {
    width: 24px;
    height: 24px;
    fill: #2f2f2f;
}

.flashlight-toggle:hover {
    background: #e0e0e0;
}

#logo-svg {
    display: none;
    cursor: pointer;
}

#grid-logo {
    cursor: pointer;
}

#grid-logo text {
    dominant-baseline: middle;
}

.clock-container {
    position: absolute;
    left: 333.33px; /* 250 * (400/300) */
    top: 142.5px; /* 95 * (300/200) */
    transform: translate(-50%, -50%);
}

#clock {
    background: transparent;
}
