* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(127, 32, 210, 0.15);
    text-align: center;
    max-width: 800px;
    width: 100%;
    border-top: 5px solid #7f20d2;
}

.logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 250px;
    height: auto;
    animation: fadeIn 1s ease-in;
}

h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
}

h2 {
    color: #7f20d2;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.redirect-info {
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, #7f20d2 0%, #9d4de8 100%);
    border-radius: 10px;
    color: white;
}

.redirect-info p {
    font-size: 1.1rem;
    font-weight: 500;
}

#countdown {
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    min-width: 30px;
    animation: pulse 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .redirect-info p {
        font-size: 1rem;
    }
    
    #countdown {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    h1 {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
}
