/* CSS for index_protect_against_hijackers_newww.html */

* { font-family: 'Inter', sans-serif; }
    
    /* Smooth Scroll */
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
    
    /* Enhanced Accessibility */
    :focus-visible { outline: 3px solid #046bfc; outline-offset: 2px; border-radius: 4px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    
    /* Simple AOS Animations */
    [data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
    [data-aos="fade-up"] { transform: translateY(30px); }
    [data-aos="fade-in"] { transform: translateY(0); }
    [data-aos].aos-animate { opacity: 1; transform: translateY(0); }
    
    /* TOC Active State */
    .toc-link.active { color: #046bfc !important; border-left-color: #046bfc !important; background: rgba(4, 107, 252, 0.08); font-weight: 600; }
    
    /* Touch Targets (min 48px) */
    @media (max-width: 1024px) {
        .toc-link, #mobileTocContent a { min-height: 48px; display: flex; align-items: center; }
    }
    
    /* Back to Top Button */
    .back-to-top { position: fixed; bottom: 100px; right: 24px; width: 48px; height: 48px; background: #046bfc; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(4,107,252,0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; z-index: 50; cursor: pointer; border: none; }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: #0356c9; transform: scale(1.1); }
    @media (max-width: 768px) { .back-to-top { bottom: 90px; right: 16px; } }
    
    /* Definition Box */
    .definition-box { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); border: 2px solid #0ea5e9; border-radius: 1rem; padding: 1.5rem; margin: 1.5rem 0; }
    .definition-box .term { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #0284c7; font-weight: 700; margin-bottom: 0.5rem; }
    .definition-box .definition { font-size: 1.1rem; color: #0c4a6e; font-weight: 500; line-height: 1.6; }
    
    /* Video Container */
    .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 1rem; box-shadow: 0 10px 40px rgba(4,20,61,0.15); margin: 2rem 0; }
    .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
    
    /* Tool Preview */
    .tool-preview { background: linear-gradient(135deg, #04143d 0%, #0a2a5e 100%); border-radius: 1.5rem; padding: 2rem; overflow: hidden; position: relative; }
    .tool-preview-mockup { background: white; border-radius: 0.75rem; padding: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
    
    /* Lead Magnet Gate */
    .lead-magnet { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border: 2px solid #f59e0b; border-radius: 1.5rem; padding: 2rem; text-align: center; }
    .lead-magnet input[type="email"] { width: 100%; max-width: 300px; padding: 0.75rem 1rem; border: 2px solid #d1d5db; border-radius: 0.5rem; font-size: 1rem; margin: 0.5rem 0; }
    .lead-magnet input[type="email"]:focus { border-color: #046bfc; outline: none; }
    
    /* Damage Progress Bar Timeline - Dual Comparison */
    .damage-comparison { display: grid; gap: 1.5rem; }
    @media (min-width: 640px) { .damage-comparison { gap: 2rem; } }
    .damage-scenario { padding: 1rem; border-radius: 1rem; }
    @media (min-width: 640px) { .damage-scenario { padding: 1.5rem; } }
    .damage-scenario.without { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); border: 2px solid #fecaca; }
    .damage-scenario.with-sellermagnet { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border: 2px solid #93c5fd; }
    .scenario-header { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
    @media (min-width: 640px) { .scenario-header { flex-direction: row; align-items: center; gap: 0.75rem; } }
    .scenario-header h4 { font-weight: 700; font-size: 0.95rem; margin: 0; }
    @media (min-width: 640px) { .scenario-header h4 { font-size: 1rem; } }
    .scenario-header.bad h4 { color: #dc2626; }
    .scenario-header.good h4 { color: #046bfc; }
    .scenario-badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
    .scenario-badge.bad { background: #dc2626; color: white; }
    .scenario-badge.good { background: #046bfc; color: white; }
    
    /* Progress Bars */
    .progress-bar-container { position: relative; height: 28px; background: #e5e7eb; border-radius: 14px; overflow: hidden; margin: 1rem 0; }
    .progress-bar-fill { height: 100%; border-radius: 14px; position: relative; overflow: hidden; }
    .progress-bar-fill.damage { background: linear-gradient(90deg, #dc2626 0%, #f97316 40%, #eab308 70%, #dc2626 100%); width: 0; animation: fillDamage 3s ease-out forwards; }
    .progress-bar-fill.damage::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%); animation: shimmer 1.5s infinite; }
    @keyframes fillDamage { 0% { width: 0; } 100% { width: 100%; } }
    @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
    
    /* Protected Bar with Break Animation */
    .protected-bar-wrapper { position: relative; height: 28px; margin: 1rem 0; }
    .protected-bar-bg { position: absolute; inset: 0; background: #e5e7eb; border-radius: 14px; }
    .protected-bar-damage { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, #dc2626 0%, #f97316 100%); border-radius: 14px 0 0 14px; animation: fillToBreak 1.5s ease-out forwards; }
    .protected-bar-safe { position: absolute; right: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, #60a5fa 0%, #046bfc 100%); border-radius: 0 14px 14px 0; animation: fillSafe 1s ease-out 2s forwards; }
    @keyframes fillToBreak { 0% { width: 0; } 100% { width: 12%; } }
    @keyframes fillSafe { 0% { width: 0; opacity: 0; } 100% { width: 88%; opacity: 1; } }
    
    /* Break Point Animation */
    .break-point { position: absolute; left: 12%; top: 50%; transform: translate(-50%, -50%); z-index: 20; opacity: 0; animation: breakAppear 0.5s ease-out 1.5s forwards; }
    .break-point-inner { width: 44px; height: 44px; background: linear-gradient(135deg, #046bfc 0%, #0284c7 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px white, 0 0 20px rgba(4, 107, 252, 0.5), 0 0 40px rgba(4, 107, 252, 0.3); animation: breakPulse 2s ease-in-out infinite 2s; }
    .break-point-inner svg { width: 24px; height: 24px; color: white; }
    @keyframes breakAppear { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0); } 50% { transform: translate(-50%, -50%) scale(1.3); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
    @keyframes breakPulse { 0%, 100% { box-shadow: 0 0 0 4px white, 0 0 20px rgba(4, 107, 252, 0.5), 0 0 40px rgba(4, 107, 252, 0.3); } 50% { box-shadow: 0 0 0 6px white, 0 0 30px rgba(4, 107, 252, 0.7), 0 0 60px rgba(4, 107, 252, 0.4); } }
    
    /* Crack Effect */
    .crack-left, .crack-right { position: absolute; top: 50%; width: 20px; height: 4px; background: white; opacity: 0; animation: crackAppear 0.3s ease-out 1.6s forwards; }
    .crack-left { left: calc(12% - 30px); transform: translateY(-50%) rotate(-15deg); }
    .crack-right { left: calc(12% + 10px); transform: translateY(-50%) rotate(15deg); }
    @keyframes crackAppear { 0% { opacity: 0; width: 0; } 100% { opacity: 1; width: 20px; } }
    
    /* Sparks */
    .spark { position: absolute; width: 6px; height: 6px; background: #fbbf24; border-radius: 50%; opacity: 0; }
    .spark:nth-child(1) { left: calc(12% - 15px); top: 20%; animation: sparkFly1 0.6s ease-out 1.55s forwards; }
    .spark:nth-child(2) { left: calc(12% + 10px); top: 30%; animation: sparkFly2 0.6s ease-out 1.6s forwards; }
    .spark:nth-child(3) { left: calc(12% - 10px); top: 70%; animation: sparkFly3 0.6s ease-out 1.65s forwards; }
    .spark:nth-child(4) { left: calc(12% + 15px); top: 80%; animation: sparkFly4 0.6s ease-out 1.7s forwards; }
    @keyframes sparkFly1 { 0% { opacity: 1; transform: translate(0, 0); } 100% { opacity: 0; transform: translate(-25px, -20px); } }
    @keyframes sparkFly2 { 0% { opacity: 1; transform: translate(0, 0); } 100% { opacity: 0; transform: translate(25px, -25px); } }
    @keyframes sparkFly3 { 0% { opacity: 1; transform: translate(0, 0); } 100% { opacity: 0; transform: translate(-20px, 25px); } }
    @keyframes sparkFly4 { 0% { opacity: 1; transform: translate(0, 0); } 100% { opacity: 0; transform: translate(30px, 20px); } }
    
    /* Time Markers */
    .time-markers { display: flex; justify-content: space-between; padding: 0 0.25rem; margin-top: 0.5rem; font-size: 0.6rem; color: #64748b; }
    @media (min-width: 640px) { .time-markers { font-size: 0.7rem; } }
    .time-markers span.highlight-red { color: #dc2626; font-weight: 700; }
    .time-markers span.highlight-blue { color: #046bfc; font-weight: 700; }
    
    /* Result Cards */
    .scenario-result { margin-top: 1rem; padding: 1rem; border-radius: 0.75rem; }
    .scenario-result.bad { background: white; border: 1px solid #fecaca; }
    .scenario-result.good { background: white; border: 1px solid #93c5fd; }
    .result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 0.5rem; }
    @media (min-width: 640px) { .result-stats { gap: 0.75rem; margin-bottom: 0.75rem; } }
    .result-stat { text-align: center; padding: 0.35rem; border-radius: 0.5rem; }
    @media (min-width: 640px) { .result-stat { padding: 0.5rem; } }
    .result-stat.bad { background: #fef2f2; }
    .result-stat.good { background: #eff6ff; }
    .result-stat .value { font-size: 0.95rem; font-weight: 800; }
    @media (min-width: 640px) { .result-stat .value { font-size: 1.1rem; } }
    .result-stat.bad .value { color: #dc2626; }
    .result-stat.good .value { color: #046bfc; }
    .result-stat .label { font-size: 0.55rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.03em; }
    @media (min-width: 640px) { .result-stat .label { font-size: 0.65rem; } }
    .result-description { font-size: 0.8rem; color: #475569; margin: 0; }
    @media (min-width: 640px) { .result-description { font-size: 0.85rem; } }

    /* CTA Section with Animated Background */
    .cta-section {
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: 
            radial-gradient(circle at 30% 40%, rgba(4, 107, 252, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 70% 60%, rgba(255, 153, 0, 0.12) 0%, transparent 40%);
        animation: ctaRotate 25s linear infinite;
    }
    .cta-section::after {
        content: '';
        position: absolute;
        top: -30%;
        right: -30%;
        width: 60%;
        height: 60%;
        background: radial-gradient(circle, rgba(4, 107, 252, 0.1) 0%, transparent 60%);
        animation: ctaFloat 8s ease-in-out infinite;
    }
    @keyframes ctaRotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    @keyframes ctaFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-20px, 20px) scale(1.1); }
    }

    /* Reading Progress Bar */
    .reading-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(90deg, #dc2626, #ff9900, #046bfc);
        z-index: 9999;
        transition: width 0.1s ease;
    }

    /* Hero Blob Background - SAME AS FBA vs FBM */
    .hero-section {
        position: relative;
        overflow: hidden;
    }
    .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.8;
        pointer-events: none;
        z-index: 0;
    }
    .hero-blob-1 {
        width: 600px;
        height: 600px;
        background: rgba(4, 107, 252, 0.35);
        top: -200px;
        left: -150px;
    }
    .hero-blob-2 {
        width: 500px;
        height: 500px;
        background: rgba(255, 153, 0, 0.25);
        top: 50px;
        right: -100px;
    }
    .hero-blob-3 {
        width: 400px;
        height: 400px;
        background: rgba(220, 38, 38, 0.2);
        bottom: -100px;
        left: 30%;
    }
    @media (max-width: 768px) {
        .hero-blob {
            opacity: 0.4;
            filter: blur(120px);
        }
        .hero-blob-1 { width: 350px; height: 350px; top: -150px; left: -100px; }
        .hero-blob-2 { width: 300px; height: 300px; top: 0; right: -80px; }
        .hero-blob-3 { width: 250px; height: 250px; bottom: -80px; }
    }
    .hero-content { position: relative; z-index: 10; }
    .hero-grid {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: 
            linear-gradient(rgba(4, 107, 252, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(4, 107, 252, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 1;
    }

    /* Article Styles */
    .article-content h2 {
        display: block !important;
        color: #04143d !important;
        font-weight: 700 !important;
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-top: 3rem !important;
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.5rem !important;
        border-bottom: 3px solid #046bfc !important;
    }
    .article-content > section:first-child h2:first-child {
        margin-top: 0 !important;
    }
    @media (max-width: 768px) {
        .article-content h2 { font-size: 1.5rem !important; }
    }
    .article-content h3 {
        display: block;
        color: #04143d;
        font-weight: 600;
        font-size: 1.35rem;
        line-height: 1.4;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .article-content p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }
    .article-content ul, .article-content ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }
    .article-content li {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 0.75rem;
    }
    .article-content strong {
        color: #04143d;
        font-weight: 600;
    }
    .article-content a:not([class]), .faq-answer-content a:not([class]) { color: #046bfc; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 2px; }
    .article-content a:not([class]):hover, .faq-answer-content a:not([class]):hover { text-decoration-style: solid; }

    /* Feature Cards */
    .feature-card {
        background: white;
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(4, 20, 61, 0.08);
        border: 1px solid rgba(4, 107, 252, 0.1);
        transition: all 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(4, 107, 252, 0.15);
    }

    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, rgba(4, 107, 252, 0.08) 0%, rgba(4, 107, 252, 0.03) 100%);
        border-left: 4px solid #046bfc;
        padding: 1.5rem;
        border-radius: 0 1rem 1rem 0;
        margin: 2rem 0;
    }
    .highlight-box p { margin-bottom: 0 !important; }
    
    /* Remove extra spacing from all box types */
    .feature-card p:last-child,
    .definition-box .definition,
    .key-takeaways li span,
    .tool-preview p:last-child,
    .case-study-box p:last-child,
    [class*="rounded-xl"] > p:last-child,
    [class*="rounded-2xl"] > p:last-child,
    [class*="rounded-xl"] > div > p:last-child,
    [class*="rounded-2xl"] > div > p:last-child { margin-bottom: 0 !important; }
    
    .highlight-box.warning {
        background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 153, 0, 0.03) 100%);
        border-left-color: #ff9900;
    }
    .highlight-box.danger {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.03) 100%);
        border-left-color: #dc2626;
    }
    .highlight-box.success {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 100%);
        border-left-color: #10b981;
    }

    /* Case Study Box */
    .case-study-box {
        background: linear-gradient(135deg, #04143d 0%, #0a2a5e 100%);
        border-radius: 1.5rem;
        color: white;
        margin: 2rem 0;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(4, 20, 61, 0.3);
    }
    .case-study-content { padding: 2rem; }
    .case-study-metric {
        background: rgba(255,255,255,0.1);
        border-radius: 1rem;
        padding: 1rem;
        text-align: center;
    }
    .case-study-metric .value { font-size: 1.5rem; font-weight: 700; }
    .case-study-metric .label { font-size: 0.75rem; opacity: 0.8; margin-top: 0.25rem; }
    .case-study-metric.positive .value { color: #10b981; }
    .case-study-metric.negative .value { color: #dc2626; }
    .case-study-metric.neutral .value { color: #ff9900; }

    /* Key Takeaways */
    .key-takeaways {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 2px solid #046bfc;
        border-radius: 1.5rem;
        padding: 2rem;
        margin: 2rem 0;
        box-shadow: 0 4px 20px rgba(4, 107, 252, 0.1);
    }
    .key-takeaways h3 {
        color: #04143d;
        font-weight: 700;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .key-takeaways ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .key-takeaways li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(4, 107, 252, 0.1);
        color: #475569;
    }
    .key-takeaways li:last-child { border-bottom: none; }
    .key-takeaways li strong { color: #04143d; }

    /* Comparison Table */
    .comparison-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(4, 20, 61, 0.1);
    }
    .comparison-table th {
        background: linear-gradient(135deg, #04143d 0%, #0a2a5e 100%);
        color: white;
        padding: 1rem;
        text-align: left;
        font-weight: 600;
    }
    .comparison-table td {
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
        color: #475569;
    }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:nth-child(even) { background: #f8fafc; }
    .comparison-table tr:hover { background: rgba(4, 107, 252, 0.05); }

    /* TOC Styles */
    .toc-link {
        color: #64748b;
        transition: all 0.2s ease;
        display: block;
        padding: 0.5rem 0;
        border-left: 2px solid transparent;
        padding-left: 1rem;
    }
    .toc-link:hover {
        color: #046bfc;
        border-left-color: #046bfc;
        background: rgba(4, 107, 252, 0.05);
    }

    /* Pros Cons Card */
    .pros-cons-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(4, 20, 61, 0.08);
    }
    .pros-header {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 1rem;
        font-weight: 600;
    }
    .cons-header {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        padding: 1rem;
        font-weight: 600;
    }

    /* Flow Diagram */
    .flow-diagram {
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 1.5rem;
        padding: 2rem;
        margin: 2rem 0;
    }
    .flow-step {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border-radius: 1rem;
        box-shadow: 0 2px 10px rgba(4, 20, 61, 0.06);
        border: 1px solid #e2e8f0;
    }
    .flow-step.danger { border-left: 4px solid #dc2626; }
    .flow-step.warning { border-left: 4px solid #ff9900; }
    .flow-step.success { border-left: 4px solid #10b981; }
    .flow-step.primary { border-left: 4px solid #046bfc; }
    .flow-arrow {
        display: flex;
        justify-content: center;
        padding: 0.5rem 0;
    }
    .flow-arrow svg { color: #94a3b8; }

    /* Related Articles */
    .related-article-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(4, 20, 61, 0.08);
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    .related-article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(4, 107, 252, 0.15);
    }

    /* Glossary Link */
    .glossary-link {
        color: #046bfc;
        text-decoration: underline;
        text-decoration-style: dotted;
        text-underline-offset: 2px;
    }
    .glossary-link:hover {
        text-decoration-style: solid;
    }

    /* Marketplace Scroll */
    .marketplace-scroll {
        animation: scroll 30s linear infinite;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Mobile TOC */
    .mobile-toc-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .mobile-toc-content.open { max-height: 500px; }

    /* Sticky CTA */
    .sticky-cta {
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .sticky-cta.visible { transform: translateY(0); }
    @media (max-width: 768px) {
        .sticky-cta .hidden-mobile { display: none; }
        .sticky-cta { padding: 12px 16px; }
    }
    
    /* Swipe Navigation Indicator */
    .swipe-indicator { display: none; position: fixed; bottom: 160px; left: 50%; transform: translateX(-50%); background: rgba(4,20,61,0.8); color: white; padding: 8px 16px; border-radius: 20px; font-size: 12px; z-index: 40; animation: swipeHint 2s ease-in-out; pointer-events: none; }
    @keyframes swipeHint { 0%,100% { opacity: 0; transform: translateX(-50%) translateY(10px); } 50% { opacity: 1; transform: translateX(-50%) translateY(0); } }
    @media (max-width: 768px) { .swipe-indicator.show { display: block; } }
