* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #333;
}

.container {
    text-align: center;
    padding: 40px;
    width: 100%;
    max-width: 800px;
}

.date {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.day-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.number-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 4.5rem;
}

.number {
    font-weight: 800;
}

.total {
    color: #999;
}

.quote {
    margin: 30px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #333;
    transition: width 0.3s ease;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    padding: 20px;
    background-color: #cef5de;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
}

@keyframes numberChange {
    0% { transform: translateY(-10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.number, .stat-value {
    animation: numberChange 0.3s ease-out;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .number-container {
        font-size: 3.5rem;
    }

    .stats {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .quote {
        font-size: 1rem;
        padding: 0 20px;
    }
}
.container {
    text-align: center;
    padding: 40px;
    width: 100%;
    max-width: 800px;
}

.digital-clock {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-bottom: 20px;
}

.time-section {
    background: #000;
    padding: 20px 30px;
    border-radius: 10px;
    color: #00ff4c;
    font-family: 'Inter', monospace;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-box {
    background: rgba(0, 255, 76, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 45px;
    text-align: center;
    font-size: 2.5rem;
}

.time-separator {
    color: #00ff4c;
    animation: blink 1s infinite;
    font-weight: 800;
    font-size: 2.5rem;
}

.ampm {
    font-size: 1rem;
    background: #00ff4c;
    color: #000;
    padding: 5px 8px;
    border-radius: 5px;
    margin-left: 10px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 20px;
    }

    .time-box {
        min-width: 35px;
        font-size: 2rem;
    }

    .time-separator {
        font-size: 2rem;
    }

    .digital-clock {
        padding: 10px;
    }

    .time-section {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .time-box {
        min-width: 30px;
        font-size: 1.5rem;
        padding: 3px 6px;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .ampm {
        font-size: 0.8rem;
        padding: 3px 6px;
    }

    .main-content {
        gap: 15px;
    }
}
    .copyright {
        padding: 20px;
        text-align: center;
        color: #333;
    }
    
    .heart {
        color: #ff0000;
    }
    
    .github-icon {
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
        transition: color 0.3s ease;
    }
    
    .github-icon:hover {
        color: #000;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }