/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo {
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

.arrow {
    font-size: 2rem;
    margin: 0 20px;
    color: #0078d4;
}

/* Message styles */
.message {
    margin-bottom: 30px;
}

h1 {
    color: #0078d4;
    margin-bottom: 15px;
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    color: #0078d4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #005a9e;
    text-decoration: underline;
}

/* Redirect info styles */
.redirect-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#countdown {
    font-weight: bold;
    color: #0078d4;
    font-size: 1.2rem;
}

.redirect-button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.redirect-button:hover {
    background-color: #005a9e;
}

/* Responsive styles */
/* Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo img {
        max-height: 70px;
    }
    
    .arrow {
        font-size: 1.5rem;
        margin: 10px;
    }
    
    .logo-container {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
}

/* Tablet (481px - 1024px) */
@media screen and (min-width: 481px) and (max-width: 1024px) {
    .container {
        padding: 30px;
    }
    
    .logo img {
        max-height: 80px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.new-logo {
    animation: pulse 2s infinite;
}