* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #0d1117;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
}

.icon {
    width: 120px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.desc {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.timer {
    font-size: 1.5rem;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 8px;
}

.email-text {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #bbbbbb;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

footer {
    font-size: 0.8rem;
    margin-top: 30px;
    color: #888;
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    .timer { font-size: 1.2rem; }
}
