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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
    filter: blur(8px);
}

.bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.8s ease-out forwards;
}

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

.header {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.title {
    color: #ffd700;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.subtitle {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #f0f0f0;
}

.free-text {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    width: 100%;
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #e0e0e0;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.icon.pink {
    color: #ff1493;
    font-size: 14px;
}

.pulse {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.main-card {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 25px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.main-card h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    flex: 1;
    padding: 16px 10px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:active {
    transform: scale(0.96);
}

.btn-green {
    background-color: #00d26a;
    box-shadow: 0 8px 20px -5px rgba(0, 210, 106, 0.4);
}

.btn-green:hover {
    background-color: #00e676;
    box-shadow: 0 10px 25px -5px rgba(0, 230, 118, 0.5);
}

.btn-grey {
    background-color: #555555;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.4);
}

.btn-grey:hover {
    background-color: #666666;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    background: #1c1c1e;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #dedede;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.disclaimer {
    margin-top: 25px;
    font-size: 11px;
    color: #bbb;
    text-align: center;
    width: 100%;
}
