body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #ff5f6d, #ffc371);
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clock-container {
    text-align: center;
    background: #000;
    padding: 20px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.clock {
    font-size: 2rem;
}

#time {
    font-size: 3rem;
    margin-bottom: 10px;
}

#date {
    font-size: 1.5rem;
}

.calendar-container {
    background: #000;
    padding: 20px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.calendar-header #month-year {
    font-size: 1.5rem;
}

.calendar-body {
    display: flex;
    flex-direction: column;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.dates div {
    padding: 10px;
    border: 1px solid #fff;
    margin: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dates div:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}
