/* ===== YUVA CAMPUS CHRONICLES REDIRECT PAGE - PREMIUM GLASSMORPHISM THEME ===== */

:root {
    --color-orange: #FF9933;
    --color-orange-glow: rgba(255, 153, 51, 0.35);
    --color-green: #138808;
    --color-green-glow: rgba(19, 136, 8, 0.25);
    --color-navy: #000080;
    --color-navy-dark: #00005C;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    /* Layout */
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(255, 255, 255, 0.6);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 128, 0.15), 
                      0 15px 25px -10px rgba(255, 153, 51, 0.1);
}

body {
    background-color: #F8FAFC;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Redirect Main Layout */
.redirect-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
    position: relative;
    z-index: 10;
}

/* Ambient Glow Spheres */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.glow-orange {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, transparent 70%);
    top: 15%;
    left: 10%;
    animation: floatingGlow 12s infinite alternate ease-in-out;
}

.glow-green {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--color-green-glow) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: floatingGlow 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatingGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.15); }
}

/* Glassmorphism Premium Redirect Card */
.redirect-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 44px 36px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Accent top-border gradient strip */
.redirect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-orange) 0%, #FFFFFF 50%, var(--color-green) 100%);
}

/* Brand Badge */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 128, 0.05);
    border: 1px solid rgba(0, 0, 128, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.brand-badge i {
    font-size: 11px;
}

/* Logo Pulse Effect */
.cc-brand-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.logo-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 80, 0.25);
    position: relative;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--color-orange);
    border-radius: 26px;
    opacity: 0.4;
    animation: pulseRing 2.5s infinite ease-out;
}

.logo-wrapper i {
    font-size: 32px;
    color: #FFFFFF;
}

@keyframes pulseRing {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Titles and Typography */
.redirect-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.redirect-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.redirect-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.redirect-link {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-orange);
    transition: all 0.2s ease;
}

.redirect-link:hover {
    color: var(--color-orange-glow);
    border-bottom-style: solid;
}

/* Button & Action Control Styling */
.action-controls {
    display: flex;
    justify-content: center;
}

.btn-go-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #FF8000 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-go-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 153, 51, 0.35);
}

.btn-go-now:active {
    transform: translateY(-1px);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.85);
    animation: scaleUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scaleUp {
    to { opacity: 1; transform: scale(1); }
}

/* Delay for smooth staggered card render */
.redirect-card > *:nth-child(1) { animation-delay: 0.1s; }
.redirect-card > *:nth-child(2) { animation-delay: 0.2s; }
.redirect-card > *:nth-child(3) { animation-delay: 0.3s; }
.redirect-card > *:nth-child(4) { animation-delay: 0.4s; }
.redirect-card > *:nth-child(5) { animation-delay: 0.5s; }
.redirect-card > *:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 580px) {
    .redirect-card {
        padding: 36px 24px;
        border-radius: 24px;
    }
    .redirect-title {
        font-size: 24px;
    }
    .action-controls {
        flex-direction: column;
        gap: 12px;
    }
    .btn-go-now {
        width: 100%;
        box-sizing: border-box;
    }
}
