/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Premium Ghanaian Colors (Forest Green & Gold themed) */
    --primary: #0F5132;        /* Trustworthy, deep forest green */
    --primary-light: #E8F5E9;  /* Soft green tint */
    --accent: #D4AF37;         /* Radiant rich gold */
    --accent-dark: #B8860B;    /* Deep harvest gold */
    --accent-light: #FFF8E1;   /* Warm light gold glow */
    --text-primary: #1C1E1B;   /* Professional crisp dark charcoal */
    --text-secondary: #525750; /* Softer, readable muted charcoal */
    --bg-canvas: #FDFBF7;      /* High-end cream/eggshell backdrop */
    --bg-card: #FFFFFF;        /* Solid card white */
    
    /* Elegant Shadows & Glassmorphism */
    --shadow-soft: 0 4px 20px rgba(15, 81, 50, 0.05);
    --shadow-medium: 0 10px 30px rgba(15, 81, 50, 0.08);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(15, 81, 50, 0.08);
    
    /* Layout */
    --max-mobile-width: 480px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE & RESET STYLES (Mobile-First)
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background-color: #EBE7E0; /* Warm dark gray to simulate phone frame on desktop */
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
}

body {
    max-width: var(--max-mobile-width);
    margin: 0 auto;
    background-color: var(--bg-canvas);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15); /* Elegant phone container shadow on PC */
}

/* Scroll Progress Bar at Top */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 2000;
    transition: width 0.1s ease;
}

/* ==========================================
   HEADER NAVIGATION
   ========================================== */
.app-header {
    position: sticky;
    top: 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 14px 16px;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-verified {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(15, 81, 50, 0.15);
}

/* ==========================================
   STORY MAIN ARTICLE
   ========================================== */
.main-content {
    padding-bottom: 90px; /* Leave space for floating CTA */
}

.story-article {
    padding: 20px 18px;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Author Meta Card */
.author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(15, 81, 50, 0.12);
}

.author-avatar-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-soft);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.post-date {
    font-size: 0.76rem;
    color: var(--text-secondary);
}

/* Live Stats */
.social-stats-bar {
    display: flex;
    justify-content: space-between;
    background-color: var(--primary-light);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 22px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.stat-item .icon {
    font-size: 1rem;
}

.heart-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-block;
}

.heart-icon:active {
    transform: scale(1.4);
}

/* ==========================================
   BANNER & MEDIA
   ========================================== */
.banner-section {
    margin: 0 -18px 24px -18px; /* Break grid full-bleed effect */
}

.image-wrapper {
    position: relative;
    background-color: var(--primary-light);
    border-bottom: 3px solid var(--accent);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-caption {
    background: rgba(15, 81, 50, 0.95);
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 10px 16px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 300;
}

/* E-commerce task layout */
.task-wrapper {
    border-radius: 16px;
    margin: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}

.task-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   STORY CONTENT TYPOGRAPHY
   ========================================== */
.story-body {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--text-secondary);
}

.paragraph {
    margin-bottom: 20px;
}

.dropcap {
    float: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 10px;
    padding-left: 3px;
    color: var(--primary);
    font-weight: 700;
}

blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--primary);
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    margin: 28px 0;
    font-weight: 500;
}

.story-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 28px 0 12px 0;
    line-height: 1.3;
}

/* SMS/MoMo Highlight Card */
.highlight-box {
    background: linear-gradient(135deg, var(--accent-light), #FFFFFF);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 18px;
    margin: 26px 0;
    box-shadow: var(--shadow-soft);
}

.highlight-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Grid for Trust Features */
.trust-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 30px 0;
}

.trust-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.trust-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Slots urgency container */
.slots-container {
    background-color: #FFF3CD;
    border: 1px solid #FFE69C;
    border-radius: 14px;
    padding: 16px;
    margin-top: 30px;
    box-shadow: var(--shadow-soft);
}

.slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: #664D03;
    margin-bottom: 8px;
}

.slots-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slots-count {
    background-color: #DC3545;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    animation: pulseGlow 1.5s infinite;
}

.slots-bar-bg {
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.slots-bar-fill {
    height: 100%;
    width: 16%; /* Dynamic starting width (8/50) */
    background: linear-gradient(90deg, #DC3545, #FF5722);
    border-radius: 10px;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slots-warning {
    font-size: 0.76rem;
    color: #664D03;
    line-height: 1.4;
}

/* ==========================================
   DYNAMIC QUIZ MODULE
   ========================================== */
.quiz-section {
    padding: 30px 18px;
    background-color: var(--primary-light);
    border-top: 1px solid rgba(15, 81, 50, 0.1);
    border-bottom: 1px solid rgba(15, 81, 50, 0.1);
    scroll-margin-top: 80px; /* Offset for sticky header */
}

.quiz-container {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--accent);
}

.quiz-header h2 {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.quiz-header p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 18px;
}

.quiz-progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.quiz-progress-dots .dot {
    width: 24px;
    height: 6px;
    border-radius: 10px;
    background-color: #E2E8F0;
    transition: var(--transition-smooth);
}

.quiz-progress-dots .dot.active {
    background-color: var(--accent);
    width: 40px;
}

/* Quiz Slider */
.quiz-slide {
    display: none;
    animation: fadeSlideIn 0.4s ease-out forwards;
}

.quiz-slide.active {
    display: block;
}

.quiz-question {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 22px;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.quiz-opt-btn:hover {
    border-color: var(--accent);
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.quiz-opt-btn:active {
    transform: scale(0.98);
}

/* Spinner for Loading State */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    text-align: center;
}

.premium-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--accent-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-container h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.loader-container p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================
   PREMIUM COMMENTS SYSTEM
   ========================================== */
.comments-section {
    padding: 35px 18px;
    background-color: var(--bg-canvas);
}

.comments-container {
    max-width: 100%;
}

.comments-header {
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.comments-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.comment-subtitle {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Comment submission form */
.comment-form {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    font-family: inherit;
    font-size: 0.88rem;
    background-color: #F8FAFC;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.08);
}

.submit-comment-btn {
    background: linear-gradient(135deg, var(--primary), #1b633f);
    color: #FFFFFF;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.submit-comment-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

/* Comments Feed */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-card {
    display: flex;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 81, 50, 0.06);
    animation: commentSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.comment-card:last-child {
    border-bottom: none;
}

.avatar-wrapper {
    flex-shrink: 0;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(15, 81, 50, 0.1);
}

.comment-content {
    flex-grow: 1;
}

.comment-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.comment-username {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.comment-badge-verified {
    font-size: 0.65rem;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.comment-momo-user {
    font-size: 0.65rem;
    background-color: rgba(220, 53, 69, 0.08);
    color: #DC3545;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 5px;
}

.comment-time {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.comment-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* Comment Reply System */
.comment-reply {
    background-color: #F8FAF6;
    border-left: 3px solid var(--primary);
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
    margin-top: 8px;
    font-size: 0.82rem;
}

.reply-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.reply-text {
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Moderation Banner style */
.comment-moderation-badge {
    background-color: #F1F5F9;
    color: #64748B;
    border: 1px dashed #CBD5E1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 5px;
}

/* ==========================================
   STICKY BOTTOM CTA BAR
   ========================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: -100px; /* Hidden initially, controlled via JS */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-mobile-width);
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(15, 81, 50, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    z-index: 1500;
    padding: 12px 16px 20px 16px; /* High bottom padding for iOS home indicator */
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bottom-bar.show {
    bottom: 0;
}

.sticky-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #28A745;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

.sticky-tag {
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
}

.sticky-sub {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.sticky-cta-btn {
    flex-grow: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-primary);
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.sticky-cta-btn:active {
    transform: scale(0.96);
}

/* ==========================================
   CONVERSION MODAL POPUP
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 81, 50, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: none; /* Controlled via JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 28px 20px;
    position: relative;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-premium);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F1F5F9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background-color: #E2E8F0;
}

.modal-success-badge {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px auto;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

/* Modal Checkpoints list */
.modal-highlights {
    background-color: var(--primary-light);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item strong {
    font-size: 0.82rem;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.74rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Call to Action Box */
.modal-cta-box {
    text-align: center;
}

.cta-warning {
    font-size: 0.74rem;
    line-height: 1.4;
    color: #842029;
    background-color: #F8D7DA;
    border: 1px solid #F5C2C7;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.modal-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* Official WhatsApp Signature Green */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.modal-whatsapp-btn:hover {
    background-color: #20BA5A;
}

.wa-icon {
    font-size: 1.35rem;
}

.time-limit {
    font-size: 0.74rem;
    font-weight: 700;
    color: #DC3545;
    display: block;
    margin-top: 12px;
}

/* ==========================================
   PARTICLE LIKE EFFECT
   ========================================== */
.heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2500;
    overflow: hidden;
}

.heart-particle {
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 24px;
    user-select: none;
    opacity: 1;
    animation: flyUp 1.2s ease-out forwards;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes commentSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalPop {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse-animation 2s infinite ease-in-out;
}

@keyframes flyUp {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-400px) translateX(var(--drift)) scale(1.4) rotate(var(--spin));
        opacity: 0;
    }
}
