* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    cursor: crosshair;
}

/* Center container for clock and date */
.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

/* Digital clock styling */
.digital-clock {
    font-size: 36px;
    font-weight: normal;
    color: #FF00FF;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-family: 'Seven Segment', sans-serif;
    white-space: nowrap;
}

/* Individual character styling */
.char {
    display: inline-block;
    text-shadow:
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 30px rgba(255, 0, 255, 0.4);
    transition: transform 0.1s ease-out;
}

/* Date display styling */
.date-display {
    font-size: 12px;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 10px;
    font-weight: bold;
    white-space: nowrap;
}

/* Individual date character styling */
.date-char {
    display: inline-block;
    text-shadow:
        0 0 5px rgba(0, 255, 255, 0.8),
        0 0 10px rgba(0, 255, 255, 0.5);
    transition: transform 0.1s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
    .digital-clock {
        font-size: 28px;
    }

    .date-display {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .digital-clock {
        font-size: 24px;
    }

    .date-display {
        font-size: 8px;
    }
}