:root {
    --bg-color: #F8F8F8;
    --card-bg: #FFFFFF;
    --brand-primary: #8C1C35;
    --brand-light: #FDF2F4;
    --cta-color: #2DCA59;
    --cta-hover: #25A648;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --border-color: #F0F0F0;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Top Bar */
.top-bar {
    background-color: var(--brand-primary);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Container */
.container {
    max-width: 500px; /* Mobile-first width */
    margin: 0 auto;
    padding: 24px 20px 40px;
    position: relative;
}

/* Cards Base */
.card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

/* Main Hero Card */
.main-card {
    text-align: center;
    padding-top: 32px;
    position: relative;
}

.avatar-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    padding: 4px;
    background: var(--brand-light);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.headline {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.headline .highlight {
    color: var(--brand-primary);
}

.subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Scarcity Box */
.scarcity-box {
    background-color: var(--brand-light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
    border: 1px dashed rgba(140, 28, 53, 0.2);
}

.scarcity-text {
    font-size: 12px;
    color: var(--brand-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scarcity-text strong {
    font-weight: 700;
}

.red-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.progress-bar-bg {
    background-color: #E6D5D8;
    height: 6px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: var(--brand-primary);
    height: 100%;
    width: 90%;
    border-radius: 4px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

/* CTA Buttons */
.cta-button {
    display: block;
    width: 100%;
    background-color: var(--cta-color);
    color: white;
    text-align: center;
    padding: 18px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(45, 202, 89, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(45, 202, 89, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(45, 202, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 202, 89, 0); }
}

.guarantee {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 0;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--brand-light);
    color: var(--brand-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--brand-primary);
}

.benefit-content p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Why Join Section */
.why-join-card h2 {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-primary);
    font-weight: bold;
    font-size: 14px;
}

.secondary-cta {
    margin: 24px 0;
}

/* FAQ Section */
.faq-card h2 {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Final CTA Card */
.final-cta-card {
    text-align: center;
    border: 1px solid var(--brand-light);
    background-color: var(--brand-light);
}

.final-cta-card h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.final-cta-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 32px;
}

.footer .links {
    margin-bottom: 12px;
}

.footer .links a {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    margin: 0 8px;
}

.footer .links a:hover {
    text-decoration: underline;
}

.footer p {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
}

.footer .disclaimer {
    font-size: 9px;
    line-height: 1.4;
    color: #bbb;
    margin-top: 12px;
}

/* Floating Notification */
.floating-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.floating-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-notification .dot {
    width: 24px;
    height: 24px;
    background-color: var(--cta-color);
    border-radius: 50%;
}

.floating-notification .notif-text {
    display: flex;
    flex-direction: column;
}

.floating-notification strong {
    font-size: 12px;
    color: var(--text-main);
}

.floating-notification span {
    font-size: 10px;
    color: var(--text-muted);
}

/* Responsive for larger screens */
@media (min-width: 768px) {
    .floating-notification {
        left: 40px;
        bottom: 40px;
    }
}
