:root {
    --obsidian: #0F172A;
    --wpp-green: #25D366;
    --wpp-glow: rgba(37, 211, 102, 0.3);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--obsidian);
    color: #F8FAFC;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Abstract Background Glows */
.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--wpp-glow) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.redirect-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}

.wpp-icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    border-radius: 50%;
    border: 2px solid var(--wpp-green);
    box-shadow: 0 0 30px var(--wpp-glow);
}

.wpp-icon-container::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--wpp-green);
    animation: rotate 10s linear infinite;
    opacity: 0.5;
}

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

.wpp-icon {
    width: 45px;
    height: 45px;
    fill: var(--wpp-green);
    z-index: 2;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    color: #94A3B8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.btn-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wpp-green);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--wpp-glow);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-wpp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: #1DA851;
    color: #fff;
}

.loading-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: var(--wpp-green);
    animation: loadBar 3s linear forwards;
    box-shadow: 0 0 10px var(--wpp-green);
}

@keyframes loadBar {
    to { width: 100%; }
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #64748B;
}

.secure-badge svg {
    width: 16px;
    height: 16px;
    color: #64748B;
}
