@font-face {
    font-family: 'Minecrafter';
    src: url('../Minecrafter-MA3Dw.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Logo Container and Glow Animation */
.logo-container {
    margin-bottom: 50px;
}

.logo-glow {
    height: 150px;
    width: auto;
    animation: glowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 18, 0.8));
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px hsla(124, 100%, 50%, 0.4)) drop-shadow(0 0 20px rgba(0, 255, 18, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 18, 1)) drop-shadow(0 0 40px rgba(0, 255, 18, 0.6));
        transform: scale(1.02);
    }
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 50px 20px;
    gap: 50px;
}

/* Countdown Container */
.countdown-container {
    text-align: center;
}

.title {
    font-family: 'Minecrafter', 'Segoe UI', sans-serif;
    font-size: 48px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 40px;
    min-width: 120px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: #00ff12;
}

.time-box span {
    font-family: 'Minecrafter', 'Courier New', monospace;
    font-size: 64px;
    display: block;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 255, 18, 0.5);
}

.time-box p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Discord Button */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgb(0, 122, 8) 0%, #00ff12 100%);
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 16, 0.4);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 16, 0.6);
    background: linear-gradient(135deg, #00ff12 0%, #00ff12 100%);
}

.discord-icon {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-glow {
        height: 100px;
    }

    .title {
        font-size: 28px;
    }

    .countdown {
        gap: 15px;
    }

    .time-box {
        padding: 20px 25px;
        min-width: 80px;
    }

    .time-box span {
        font-size: 36px;
    }

    .discord-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}
