body {
    margin: 0;
    background: #000;
    color: #e6c36a;
    font-family: "Cinzel", serif;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* HEADER */
.header {
    text-align: center;
    padding: 20px;
}

.header nav a {
    color: #e6c36a;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.tip {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* COUNTDOWN SECTION */
.countdown-section {
    text-align: center;
    padding: 60px 20px;
}

.title {
    font-size: 3rem;
    animation: fadeIn 2s ease forwards;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 3s ease forwards;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.unit {
    text-align: center;
}

.unit h2 {
    font-size: 3rem;
    margin: 0;
    animation: glow 3s infinite alternate;
}

.unit span {
    font-size: 1rem;
    opacity: 0.8;
}

.skull {
    width: 260px;
    margin-top: 20px;
    animation: float 6s ease-in-out infinite;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    color: #b89d55;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #e6c36a; }
    to { text-shadow: 0 0 25px #f7e7a1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* MOBILE */
@media (max-width: 600px) {
    .countdown {
        flex-wrap: wrap;
    }
    .unit h2 {
        font-size: 2.2rem;
    }
}