/* Category redirect pages styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: '#fff';
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redirect-container {
    text-align: center;
    color: white;
}

.redirect-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}

.redirect-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

h2 {
    font-size: 24px;
    margin: 20px 0 10px 0;
    font-weight: 300;
}

p {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}