/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Title with Typewriter Effect */
.title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    overflow: hidden;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    animation: blink-caret 1s step-end infinite;
}

.title.typing {
    animation: none;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.number {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0066ff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.number:hover {
    transform: scale(1.1);
}

.label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    width: 100%;
    padding: 20px 0;
    background-color: #000000;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.credits {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.credit-link {
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Animations */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ffffff; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown {
        gap: 20px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .title {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }

    .number {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .credits {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        margin-bottom: 10px;
    }

    .content {
        gap: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .title {
        font-size: 2rem;
    }

    .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 360px) {
    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 50px;
    }

    .title {
        font-size: 1.8rem;
    }

    .number {
        font-size: 2rem;
    }

    .label {
        font-size: 0.8rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}
