:root {
    --primary-color: #00e5ff;
    --bg-dark: #0f172a;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 15px;
    display: inline-block;
}

.logo .c { color: var(--text-white); }
.logo .s { color: var(--primary-color); }

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-chip.meta-chip {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    color: #00ff88;
}

main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    text-decoration: none;
    color: var(--text-white);
    padding: 18px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary .text span {
    color: rgba(15, 23, 42, 0.7);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.icon {
    font-size: 1.5rem;
}

.text {
    text-align: left;
}

.text strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
}

.text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.5;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pop {
    animation: pop 2s infinite ease-in-out;
}
