/* Muick Sandy Redirect Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.logo {
    margin-bottom: 30px;
}

.logo svg {
    max-width: 300px;
    height: auto;
}

.title {
    color: #2A3443;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.redirect-button {
    display: inline-block;
    background: linear-gradient(135deg, #2A3443 0%, #495057 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 52, 67, 0.2);
}

.redirect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 52, 67, 0.3);
    background: linear-gradient(135deg, #495057 0%, #2A3443 100%);
}

.redirect-button:active {
    transform: translateY(0);
}

.features {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.feature svg {
    width: 16px;
    height: 16px;
    fill: #00B67A;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #495057;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo svg {
        max-width: 250px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
} 