* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: fadeIn 1.5s ease-out;
}

.dot-au {
    color: #40a9ff;
    font-weight: 300;
}

.clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

#time {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #e0e0e0;
    min-width: 200px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

#date {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #808080;
    min-width: 300px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-time {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #40a9ff;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tech-time:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 1rem;
    }
    #time {
        min-width: 160px;
    }
    #date {
        min-width: 240px;
    }
}