* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
    position: relative;
}

/* Styling Header Pojok Kiri Atas */
.top-left-brand {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10;
}
.top-left-brand svg {
    width: 22px;
    height: 22px;
    fill: #22c55e;
    flex-shrink: 0;
}

.phone-card {
    background-color: #121824;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 25px 20px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 12px auto;
}
.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}
.verified-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
}

h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.subtitle {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Tombol Sosial */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: opacity 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
}
.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.social-btn:active {
    transform: scale(0.98);
}
.btn-wa { background-color: #22c55e; }
.btn-tg { background-color: #0ea5e9; }
.btn-tinder { background-color: #fe3c72; }

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 18px 0;
}
.feature-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 9px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 500;
}

.continue-label {
    font-size: 0.75rem;
    color: #64748b;
    margin: 12px 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loading-section {
    margin-top: 10px;
}
.progress-track {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #06b6d4);
    transform-origin: left;
    transform: scaleX(1);
    animation: progressCountdown 60s linear forwards;
}
@keyframes progressCountdown {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.action-buttons {
    display: flex;
    gap: 10px;
}
.btn-action-red {
    flex: 1;
    background-color: #ef4444;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}
.btn-action-dark {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}