@font-face {
    font-family: 'MSCHFSansMono';
    src: url('MSCHFSansMono.DOBS5JtI.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding-left: 10%; 
    background-color: #000;
    overflow: hidden;
    box-sizing: border-box;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
}

h1 {
    font-family: 'MSCHFSansMono', monospace;
    color: #fff;
    font-size: 2.25rem; 
    margin: 0 0 12px 0;
    text-align: left;
    letter-spacing: -0.5px;
    white-space: nowrap;
    line-height: 1;
    font-weight: 400 !important; 
    -webkit-font-smoothing: antialiased;
}

.clock-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 180px; 
}

.clock-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.label {
    color: #947F47;
    font-family: 'MSCHFSansMono', monospace;
    font-size: 1.5rem; 
    line-height: 1;
}

.time {
    color: #4f4f4f;
    font-family: 'MSCHFSansMono', monospace;
    font-size: 1.5rem; 
    line-height: 1;
    letter-spacing: -0.5px; 
}

/* Updated Social Icons Styling */
.social-links {
    display: flex;
    /* Increased gap for a more spacious horizontal distribution */
    gap: 20px; 
    /* Increased margin to push them further from the clock */
    margin-top: 40px; 
}

.social-links a {
    /* Matches the exact grey of the time */
    color: #4f4f4f; 
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #fff; 
}

@media (max-width: 600px) {
    body { padding-left: 20px; }
    h1 { font-size: 1.75rem; }
    .clock-container { width: 150px; }
    .label, .time { font-size: 1.15rem; }
    .social-links { margin-top: 30px; gap: 15px; }
}
