:root {
    --primary-color: #00ff88;
    /* Neon Green */
    --secondary-color: #00ccff;
    /* Neon Blue */
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --border-radius: 16px;
    --glow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effect */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(0, 204, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
    margin-bottom: 0.5rem;
}

/* Features */
.highlight-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-item i {
    color: var(--primary-color);
}

.sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Action Area */
.action-area {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.instruction {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.gender-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-gender {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gender:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.btn-gender .icon {
    font-size: 1.5rem;
}

/* Step 2 Styles */
.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.trust-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.btn-trust {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.btn-trust:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
    transform: translateX(5px);
}

.trust-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 25px;
    text-align: center;
}

.trust-label {
    font-weight: 400;
    color: #e0e0e0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 480px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    width: 33%;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.5s ease;
}

/* Step 3 Styles */
.courage-box {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.courage-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.5;
}

.courage-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-courage {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.btn-courage:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
    transform: translateY(-2px);
}

.btn-courage.btn-no {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6464;
    border-color: rgba(255, 100, 100, 0.3);
}

.btn-courage.btn-no:hover {
    background: #ff6464;
    color: #fff;
    box-shadow: 0 0 15px #ff6464;
}

.image-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.02);
}

/* Step 4 Styles */
.reaction-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.btn-reaction {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: #333;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-reaction:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-reaction i {
    color: #ccc;
    font-size: 0.9rem;
}

.btn-reaction:hover i {
    color: var(--primary-color);
}

.reaction-text {
    font-weight: 500;
    line-height: 1.4;
}

.reaction-text {
    font-weight: 500;
    line-height: 1.4;
}

/* Step 5 Styles */
.final-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.final-header p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.highlight-green {
    color: var(--primary-color);
    font-weight: bold;
}

.green-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-icon .fa-whatsapp {
    color: #25D366;
}

.feature-icon .fa-images {
    color: #555;
}

.feature-icon .fa-map-location-dot {
    color: #EA4335;
}

.feature-icon .fa-address-book {
    color: #34B7F1;
}

.feature-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    flex: 1;
}

.sub-text {
    font-weight: 400;
    font-size: 0.85rem;
    color: #666;
}

.warning-section {
    text-align: left;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.warning-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #eee;
    line-height: 1.4;
}

.warning-text:last-child {
    margin-bottom: 0;
}

.btn-final-cta {
    background: #25D366;
    /* WhatsApp Green-ish or just generic success green */
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-green 2s infinite;
}

.btn-final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Step 6 Styles */
.video-container-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 10px;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
    /* Mobile portrait video size */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    z-index: 1;
}

/* Animated Border Effect */
.video-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            var(--primary-color),
            transparent 30%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.video-frame::after {
    content: '';
    position: absolute;
    inset: 3px;
    /* Border width */
    background: #000;
    /* Match background */
    border-radius: 18px;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-offer-cta {
    background: #FF0000;
    /* Red CTA */
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-red 2s infinite;
}

.btn-offer-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Step 8 Styles */
.final-sales-header {
    text-align: center;
    margin-bottom: 2rem;
}

.spy-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sales-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.green-banner {
    background: rgba(37, 211, 102, 0.2);
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.4rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
}

.sales-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.security-lock {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1rem;
}

.input-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    color: #333;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .input-section .action-area {
        padding: 1.5rem;
    }
}

.input-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.phone-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.phone-input:focus {
    border-color: var(--primary-color);
}

.btn-access-whatsapp {
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    animation: pulse-green 2s infinite;
    margin-bottom: 0.5rem;
}

.encrypted-text {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

.feature-list-text {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-title {
    color: #FF0000;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    color: #0066CC;
    /* Blueish */
    font-weight: 700;
    margin-bottom: 1rem;
}

.official-badge {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.warning-small {
    font-size: 0.8rem;
    color: #888;
}

.social-proof-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cloned-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.update-badge {
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

/* Step 9 Styles */
.investigation-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.investigation-header h2 {
    color: #ff3b3b;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.investigation-status {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.highlight-phone {
    color: #00ff88;
    font-family: monospace;
    font-size: 1.2rem;
}

.timer-box {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid #ff3b3b;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.timer-icon {
    font-size: 2rem;
    color: #ff3b3b;
}

.timer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.timer-countdown {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-top: 5px !important;
}

/* Progress Bars */
.main-progress-section {
    margin-bottom: 30px;
}

.progress-label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    color: #00ff88;
}

.progress-bar-container {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-container.large {
    height: 30px;
    border: 1px solid #00ff88;
}

.progress-bar-container.small {
    height: 10px;
    background: #333;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

/* Different colors for analysis bars */
.danger-fill {
    background: linear-gradient(90deg, #ff3b3b, #cc2e2e);
}

.warning-fill {
    background: linear-gradient(90deg, #ffcc00, #cca300);
}

.info-fill {
    background: linear-gradient(90deg, #00ccff, #00a3cc);
}

.progress-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

/* Hacker Visual / Radar */
.hacker-visual {
    margin: 20px auto;
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-scanner {
    width: 100%;
    height: 100%;
    border: 2px solid #00ff88;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: rgba(0, 255, 136, 0.05);
}

.radar-sweep {
    width: 50%;
    height: 50%;
    background: linear-gradient(to bottom right, rgba(0, 255, 136, 0) 0%, #00ff88 100%);
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 100% 100%;
    animation: sweep 2s infinite linear;
}

@keyframes sweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    gap: 15px;
    text-align: left;
    margin-bottom: 30px;
}

.analysis-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    justify-content: flex-start;
}

.analysis-header i {
    width: 20px;
    text-align: center;
}

.analysis-desc {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 5px;
    margin-bottom: 0;
}

.investigation-footer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

.investigation-footer i {
    color: #00ff88;
    margin-right: 5px;
}

/* Step 10: Result Page */
#step-10 {
    text-align: center;
    color: #333;
    /* Dark text for this step as per screenshot */
    background: #fff;
    /* Assuming white background for the result card look */
    padding: 1rem;
    border-radius: 15px;
}

.result-header h2 {
    color: #D32F2F;
    /* Dark red */
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.result-header p {
    color: #666;
    font-size: 1rem;
}

.highlight-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.result-alert h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.red-alert-text {
    color: #D32F2F;
    font-weight: 700;
    font-style: italic;
    text-decoration: underline;
    margin-bottom: 1.5rem;
}

.reveal-text {
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.evidence-collage {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.collage-img {
    width: 100%;
    display: block;
}

.cta-question {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    line-height: 1.4;
}

.evidence-cards {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.evidence-card {
    margin-bottom: 2rem;
}

.evidence-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.evidence-card p {
    font-weight: 600;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.result-footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
}

.result-footer strong {
    color: #333;
}


/* Footer */
.footer {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-link {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Animations */
.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimization */
@media (max-width: 380px) {
    .header h1 {
        font-size: 1.5rem;
    }



}