/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #ff2d55;
    --primary-dark: #e60033;
    --secondary: #ff6b35;
    --accent: #00ff88;
    --neon-pink: #ff0080;
    --neon-red: #ff073a;
    --neon-orange: #ff6600;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0d0d15 100%);
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --gold: #ffd700;
    --success: #00ff88;
    --glow-pink: 0 0 30px rgba(255, 0, 128, 0.5);
    --glow-red: 0 0 40px rgba(255, 7, 58, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Urgency Bar ===== */
.urgency-bar {
    background: linear-gradient(90deg, var(--neon-red), var(--neon-pink), var(--neon-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;

}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--text-white);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ===== Container ===== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 20px 0 30px;
}

/* ===== Hero CTA Block ===== */
.hero-cta-block {
    margin: 25px 0;
}

.countdown-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 7, 58, 0.2);
    border: 1px solid var(--neon-red);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.countdown-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.time-inline {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red);
    min-width: 32px;
}

.time-colon {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-red);
    animation: blink 1s step-end infinite;
}

.cta-button.hero-cta {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 15px;
    padding: 20px 40px;
    font-size: 18px;
}

.cta-subtext {
    font-size: 13px;
    color: var(--text-gray);
}

.subheadline-small {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 20px;
}

@media (max-width: 600px) {
    .cta-button.hero-cta {
        font-size: 14px;
        padding: 16px 25px;
    }

    .time-inline {
        font-size: 20px;
    }
}

/* ===== Hero Image ===== */
.hero-image-wrapper {
    margin: 0 auto 30px;
    max-width: 400px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== Image Showcase ===== */
.image-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 500px) {
    .image-showcase {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;

}

.headline {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 10px;
}

.subheadline {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.warning-icon {
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

/* ===== Countdown Timer ===== */
.countdown-container {
    background: linear-gradient(135deg, rgba(255, 7, 58, 0.2), rgba(255, 0, 128, 0.2));
    border: 2px solid var(--neon-red);
    border-radius: 20px;
    padding: 25px 40px;
    display: inline-block;
    box-shadow: var(--glow-red);
    animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 7, 58, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 7, 58, 0.8), 0 0 80px rgba(255, 0, 128, 0.4);
    }
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.time-block {
    text-align: center;
}

.time-value {
    font-size: clamp(40px, 10vw, 64px);
    font-weight: 900;
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-pink);
    display: block;
    line-height: 1;
    animation: numberGlow 1s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    from {
        text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-pink);
    }

    to {
        text-shadow: 0 0 30px var(--neon-red), 0 0 60px var(--neon-pink), 0 0 80px var(--neon-orange);
    }
}

.time-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.time-separator {
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-red);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ===== Hook Section ===== */
.hook-section {
    padding: 50px 0;
}

.hook-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hook-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.hook-text:last-child {
    margin-bottom: 0;
}

.text-highlight {
    color: var(--neon-pink);
    font-weight: 600;
}

.text-highlight-green {
    color: var(--success);
    font-weight: 700;
    font-size: 22px;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 40px 0;
}

.benefits-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 50px 0;
}

.cta-wrapper {
    text-align: center;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 7, 58, 0.15);
    border: 1px solid var(--neon-red);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink), var(--neon-orange));
    background-size: 200% 200%;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 22px 50px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;

    animation: buttonPulse 2s ease-in-out infinite, gradientMove 3s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 24px;
    position: relative;
    z-index: 1;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.cta-subtext {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shield-icon {
    font-size: 16px;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 30px 0 50px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.trust-item span {
    color: var(--success);
    font-weight: 700;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    display: none;
    z-index: 999;
}

.cta-button.floating {
    width: 100%;
    font-size: 16px;
    padding: 18px 30px;
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }

    .container {
        padding-bottom: 100px;
    }
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: var(--text-gray);
}

.footer-note {
    margin-top: 10px;
    font-size: 11px;
    opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .hook-content {
        padding: 25px;
    }

    .hook-text {
        font-size: 16px;
    }

    .countdown-container {
        padding: 20px 25px;
    }

    .cta-button:not(.floating) {
        padding: 18px 30px;
        font-size: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Background Particles Effect ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 7, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 102, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}