:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --bg-dark: #061161;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, #1e3c72 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: rgba(0, 210, 255, 0.15);
    filter: blur(80px);
    z-index: -1;
    animation: move 15s infinite alternate;
}

.container {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-section { text-align: center; margin-bottom: 20px; }

.logo-img {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.main-title {
    font-size: 32px;
    margin: 15px 0 5px;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,210,255,0.4);
}

.sub-title {
    font-size: 12px;
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 3px;
}

.action-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 35px;
    padding: 35px 25px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.btn-group { display: flex; flex-direction: column; gap: 15px; }

.btn {
    text-decoration: none;
    padding: 16px;
    border-radius: 18px;
    font-weight: 800;
    text-align: center;
    transition: 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
}

.btn:active { transform: scale(0.95); }

.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 10px;
    color: #a0aec0;
}

.content-area {
    margin-top: 30px;
    text-align: center;
}

.content-area h2 { font-size: 18px; color: var(--primary); }
.content-area p { font-size: 13px; line-height: 1.6; color: #cbd5e0; }

.footer-area { margin-top: auto; padding-top: 30px; text-align: center; }
.disclaimer {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 20px;
    font-size: 11px;
    color: #718096;
}

.copyright { font-size: 10px; color: #4a5568; margin-top: 15px; }

@keyframes move {
    from { transform: translate(-50px, -50px); }
    to { transform: translate(50px, 50px); }
}