/* 
    D F GOMES - Presell "Alive" UI
    Focus: High Security, Professionalism, Engagement
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

:root {
    --primary: #0f172a;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --white: #ffffff;
    --bg-dark: #020617;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png') center/cover no-repeat;
    opacity: 0.4;
    z-index: -1;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.security-wrapper {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 32px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent);
    font-size: 2rem;
    box-shadow: 0 0 20px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0px var(--accent-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px var(--accent-glow); }
    100% { transform: scale(1); box-shadow: 0 0 0px var(--accent-glow); }
}

h1 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 700; }
p { color: #94a3b8; font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; }

/* The Advanced Button */
.button-container {
    position: relative;
    padding-top: 10px;
}

.hold-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.premium-hold-btn {
    position: relative;
    width: 100%;
    padding: 22px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-hold-btn:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #34d399);
    z-index: -1;
    transition: width 0.1s linear;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-compliance {
    padding: 30px 0;
    text-align: center;
    background: rgba(2, 6, 23, 0.9);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-data { font-size: 0.8rem; color: #64748b; margin-bottom: 10px; }
.footer-links a { color: var(--accent); text-decoration: none; margin: 0 10px; font-weight: 600; font-size: 0.85rem; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .security-wrapper { padding: 3rem 1.5rem; }
    h1 { font-size: 1.5rem; }
}
