:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --primary-color: #39FF14;
    /* Neon Green */
    --primary-glow: rgba(57, 255, 20, 0.4);
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --danger-color: #ff3b3b;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- Typography --- */
h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* --- Hero --- */
.hero {
    padding: 40px 0 30px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
}

.subheadline {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.4;
}

.hero-image-container {
    position: relative;
    margin: 10px auto 30px;
    max-width: 320px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    border: 2px solid #222;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: var(--primary-color);
    opacity: 0.15;
    filter: blur(50px);
    z-index: 1;
    border-radius: 50%;
}

/* --- Buttons --- */
.cta-button {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #000;
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px var(--primary-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button:hover {
    box-shadow: 0 0 40px var(--primary-glow);
    /* Glow effect on hover */
}

/* --- How It Works --- */
.how-it-works {
    padding: 50px 0;
    background-color: var(--card-bg);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid #222;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 10px var(--primary-glow);
    animation: bounce 2s infinite;
    /* Micro animation */
}

/* --- Benefits --- */
.benefits {
    padding: 40px 0;
}

.benefits-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.check {
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- No Emulator Section --- */
.no-emulator {
    padding: 50px 0;
    background-color: #080808;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.section-subtext {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.emulator-image-container {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.emulator-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* --- Safety Section --- */
.safety-section {
    padding: 50px 0;
    background: radial-gradient(circle at center, #151515 0%, #050505 100%);
}

.safety-card {
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.safety-list {
    list-style: none;
    text-align: left;
    margin: 20px auto 0;
    max-width: 350px;
    color: #bbb;
    font-size: 0.95rem;
}

.safety-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.safety-check {
    color: var(--primary-color);
}

/* --- Social Proof --- */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid #222;
}

.review-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* --- Final CTA --- */
.final-cta {
    padding: 50px 0 80px;
    background-color: #080808;
    border-top: 1px solid #222;
    background: radial-gradient(circle at bottom, #111 0%, #000 70%);
}

.final-subtext {
    margin-bottom: 25px;
    opacity: 0.8;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* --- Animations --- */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Media Queries --- */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .steps-grid {
        flex-direction: row;
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }
}

/* --- Visuals Section (Added) --- */
.visuals {
    padding: 50px 0;
    text-align: center;
}

.phone-frame-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.phone-frame {
    width: 100%;
    max-width: 300px;
    /* Realistic phone width styling */
    border: 12px solid #1a1a1a;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.15), 0 20px 50px rgba(0, 0, 0, 0.8);
    /* Subtle Green Glow */
    border-color: #1a1a1a;
    /* Base border */
    background: #000;
    transform: rotate(0deg);
    /* No tilt on mobile */
    /* Artistic tilt for first one */
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.phone-frame:nth-child(2) {
    transform: rotate(0deg);
    /* Counter tilt for second one */
}

.phone-frame:hover {
    transform: scale(1.02);
    z-index: 5;
    border-color: var(--primary-color);
    /* Neon glow on hover */
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 3;
}

.screen-content {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop layout adjustment for visuals */
@media (min-width: 768px) {
    .phone-frame-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
    }

    .phone-frame {
        transform: rotate(-3deg);
    }

    .phone-frame:nth-child(2) {
        transform: rotate(3deg);
    }

    .phone-frame:hover {
        transform: scale(1.1) rotate(0deg);
    }
}

/* --- Payment Security Section --- */
.payment-security {
    padding: 50px 0;
    background-color: #f5f5f5;
    /* Light background as requested */
    color: #333;
    /* Dark text for contrast */
    text-align: center;
}

.security-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid #e0e0e0;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.security-logo {
    display: block;
    height: auto;
}

.security-logo.lowify {
    max-width: 120px;
}

.security-logo.warranty {
    max-width: 120px;
    /* Same size as Lowify */
}

.security-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.security-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-item {
    background: #f0f8ff;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.security-disclaimer {
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.footer-seals-band {
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.footer-seals-band img {
    max-width: 250px;
    width: 100%;
    filter: none;
    display: block;
    margin: 0 auto;
    /* Ensures centering */
}