        /* Global & Reset Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #333333;
            overflow-x: hidden;
        }

        /* Responsive Nav Layout Fixes */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8% 5px;
    background: radial-gradient(circle at 50% 40%, #c00005 0%, #600002 60%, #1a0001 100%);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #600002;
}

.nav-links-wrapper {
    display: flex;
    gap: 30px;
}

.nav-links-wrapper a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links-wrapper a:hover {
    color: #d00000;
}

.menu-toggle {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    display: none; /* Hidden by default on desktop viewports */
}

/* Mobile Responsiveness State Rules */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Visible on smaller screens */
    }

    .nav-links-wrapper {
        display: none; /* Default hidden position on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 8%;
        gap: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        border-top: 1px solid #f1f5f9;
    }

    /* Active visibility class applied via JavaScript */
    .nav-links-wrapper.open {
        display: flex;
        animation: slideDown 0.25s ease-out forwards;
    }
    .nav-links-wrapper a {
    color: #d00000;
}

.main-header{display: none;}

}

/* Smooth opening animation standard macro */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Hero Container Area */
       /* Hero Stadium Section Area rules */
.hero-stadium-canvas {
    background: radial-gradient(circle at 50% 40%, #c00005 0%, #600002 60%, #1a0001 100%);
    padding: 20px 8% 100px 8%;
    text-align: center;
    position: relative;
    color: #ffffff; background-image: url('images/banner.png'); background-size: cover; background-position: center; background-repeat: no-repeat;
}

.hero-headline-group {
    position: relative;
    z-index: 5;
    margin-bottom: 20px;
}
.hero-headline-group span.fan-lead {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.hero-headline-group h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.hero-headline-group h1 span.gold-highlight {
    color: #f2a900;
}
.hero-headline-group p.sub-motto {
    font-size: 18px;
    font-weight: 500;
    color: #f9fafb;
}

/* Master Interactive Row Showcase Framework */
.hero-interactive-showcase {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* LEFT PILLAR STACK: Direct alignment fixes */
.left-features-stack {
 display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
    padding-right: 20px;
}
.side-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.side-feature-text {
    display: flex;
    flex-direction: column;
}
.side-feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 3px 0;
    line-height: 1.2;
}
.side-feature-text p {
    font-size: 14px;
    color: #e5e7eb;
    opacity: 0.85;
    margin: 0;
    line-height: 1.4;
}

/* Strict Icon Badge Fix for circles */
.side-feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #c00005;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents the circle from squishing */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.side-feature-icon i {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
}

/* Center Phone frame elements */
.center-mockup-housing {
    display: flex;
    justify-content: center;
}
.phone-frame {
    background: #000000;
    border: 10px solid #2d2d2d;
    border-radius: 36px;
    width: 320px;
    height: 670px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT PILLAR ACTION STACK STYLE PATCHES */
.right-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-left: 40px;
}
.users-count-capsule {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    width: 210px;
    margin-bottom: 5px;
}
.avatar-pile {
    display: flex;
}
.avatar-pile img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #600002;
    margin-left: -8px;
}
.avatar-pile img:first-child { margin-left: 0; }
.capsule-data { text-align: left; }
.capsule-data span.big-num { display: block; font-size: 24px; font-weight: 800; color: #ffffff; line-height: 1.1; }
.capsule-data span.lbl-text { font-size: 14px; color: #f3f4f6; }

/* Store badges icon layout fixes */
.store-badge-anchor {
    background-color: #000000;
    border: 1px solid #2d3748;
    color: #ffffff;
    text-decoration: none;
    width: 250px;
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
}
.store-badge-anchor  i{
    font-size: 36px;
    line-height: 1;
}
.badge-icon-box {
    width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.badge-icon-box i {
    font-size: 26px;
    line-height: 1;
}
.badge-strings {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.badge-strings span {     font-size: 16px;
    color: #9ca3af;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;}
.badge-strings strong { font-size: 24px; font-weight: 600; line-height: 1.2; }

/* LOWER HORIZONTAL SHOWCASE CARDS FIX */
.lower-showcase-grid-wrapper {
    background-color: #f8fafc;
    padding: 0 8% 50px 8%;
}
.lower-showcase-grid {
    background: #ffffff;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    margin-top: -40px; /* Overlaps background seamlessly */
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    z-index: 30;
}
.grid-card-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.grid-card-icon {
    width: 50px;
    height: 50px;
    background-color: #c00005;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(192, 0, 5, 0.2);
}
.grid-card-icon i {
    font-size: 18px;
    line-height: 1;
}
.grid-card-item h3 { font-size: 18px; font-weight: 700; color: #111827; margin: 0 0 8px 0; }
.grid-card-item p { font-size: 14px; color: #6b7280; line-height: 1.5; margin: 0; }

/* Responsive Grid Adapters */
@media (max-width: 991px) {
    .hero-interactive-showcase { grid-template-columns: 1fr; gap: 40px; }
    .left-features-stack { text-align: center; padding-right: 0; order: 2; }
    .side-feature-item { flex-direction: column; }
    .center-mockup-housing { order: 1; }
    .right-actions-stack { align-items: center; padding-left: 0; order: 3; }
    .lower-showcase-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; gap: 30px; }
}
@media (max-width: 576px) {
    .phone-frame{ width: 250px;
        height: 530px;}
    .hero-headline-group h1 { font-size: 38px; }
    .lower-showcase-grid { grid-template-columns: 1fr; gap: 35px; }
}
        /* Footing Download Call to Action Section */
        .footer-cta-wrapper {
            padding: 60px 8%;
            text-align: center;
            background-color: #ffffff;
        }
        .footer-cta-wrapper h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 25px;
        }
        .footer-cta-wrapper h2 span {
            color: #c00005;
        }
        
        .cta-buttons-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .btn-cta-download {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 28px;
            border-radius: 12px;
            text-decoration: none;
            width: 220px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-cta-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .btn-cta-download.android {
            background-color: #a60006;
            color: #ffffff;
        }
        .btn-cta-download.ios {
            background-color: #f8fafc;
            color: #111827;
            border: 1px solid #e2e8f0;
        }
        .btn-cta-download i {
            font-size: 24px;
        }
        .cta-btn-text {
            text-align: left;
        }
        .cta-btn-text span {
            display: block;
            font-size: 16px;
            opacity: 0.8;
        }
        .cta-btn-text strong {
            display: block;
            font-size: 24px;
            font-weight: 600;
        }

        .security-badge-footer {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #059669;
            font-size: 13px;
            font-weight: 500;
        }
/* Premium Footer Archetype System */
.shopx11-main-footer {
    background-color: #0b0f19; /* Sleek, deep charcoal midnight base */
    color: #ffffff;
    padding: 40px 8% 0 8%;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #1f2937;
    position: relative;
    z-index: 40;
}

.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 0px;
}

/* Brand Meta Header Elements */
.footer-brand-column .footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
}

.footer-brand-column .footer-logo span {
    color: #f2a900; /* Matching Signature Gold Highlights */
}

.footer-brand-desc {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 380px;
}

/* Vector Media Icons Layout Rules */
.footer-social-row {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: #1f2937;
    color: #9ca3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Microbrand active-state hover variations */
.social-icon-btn.fb:hover { background-color: #1877f2; }
.social-icon-btn.ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon-btn.x-tw:hover { background-color: #000000; }
.social-icon-btn.yt:hover { background-color: #c00005; }
.social-icon-btn.tg:hover { background-color: #00b4d8; }

/* Link Directory Navigation Formatting */
.footer-links-column h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f3f4f6;
    margin-bottom: 22px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-column ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Live Support Elements & Encrypted Node Layouts */
.footer-contact-info {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info i {
    color: #f2a900; /* Unified design palette anchor */
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.secure-badge-wrapper {
    margin-top: 20px;
}

.secure-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.15);
    color: #34d399;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(5, 150, 105, 0.25);
}

/* Bottom Strip Copyright Base Structure */
.footer-bottom-bar {
    border-top: 1px solid #1f2937;
    padding: 25px 0;
    margin-top: 20px;
}

.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 13px;
}

.bottom-bar-content p { margin: 0; }

.payment-partners-sim {
    display: flex;
    gap: 15px;
    font-size: 22px;
    color: #1f2937;
}

/* Full Responsive Fluidity Breakpoints */
@media (max-width: 991px) {
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-column {
        grid-column: span 2;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .shopx11-main-footer { padding: 60px 5% 0 5%; }
    .footer-grid-container { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-brand-column { grid-column: span 1; }
    .footer-social-row { justify-content: center; }
    .footer-contact-info { justify-content: center; }
    .bottom-bar-content { flex-direction: column; gap: 15px; text-align: center; }
}
        /* Responsive Optimization rules */
        @media (max-width: 991px) {
            .hero-interactive-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .left-features-stack {
                text-align: center;
                justify-content: center;
                padding-right: 0;
                order: 2;
            }
            .side-feature-item {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }
            .center-mockup-housing {
                order: 1;margin-bottom: 4rem;
            }
             .center-mockup-housing.team-showcase{
                margin-bottom: 1rem;
            }
            .right-actions-stack {
                align-items: center;
                padding-left: 0;
                order: 3;
            }
            .lower-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-headline-group h1 {
                font-size: 36px;
            }
            .lower-showcase-grid {
                grid-template-columns: 1fr;
            }
            .cta-buttons-row {
                flex-direction: column;
                align-items: center;
            }
        }


          /* Dedicated Inner Page Layout Styling */
        .inner-page-hero {
            background: radial-gradient(circle at 50% 40%, #c00005 0%, #600002 60%, #1a0001 100%);
            padding: 100px 8% 140px 8%;
            text-align: center;
            color: #ffffff;
        }
        .inner-page-hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }
        .inner-page-hero h1 span {
            color: #f2a900;
        }
        .inner-page-hero p {
            font-size: 18px;
            color: #f3f4f6;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Content Container Section */
        .about-content-section {
            background-color: #f8fafc;
            padding: 0 8% 80px 8%;
        }
        .about-main-card {
            background: #ffffff;
            max-width: 1000px;
            margin: 0 auto;
            margin-top: -60px;
            padding: 50px 60px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
            position: relative;
            z-index: 10;
        }
        .about-text-block h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            color: #111827;
            margin-bottom: 20px;
        }
        .about-text-block p {
            font-size: 16px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 25px;
        }

        /* Core Pillars / Features Grid */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 45px;
        }
        .pillar-item {
            background: #f8fafc;
            padding: 30px 25px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .pillar-item:hover {
            transform: translateY(-5px);
        }
        .pillar-icon {
            width: 55px;
            height: 55px;
            background-color: rgba(192, 0, 5, 0.1);
            color: #c00005;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 22px;
        }
        .pillar-item h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #111827;
            margin-bottom: 12px;
        }
        .pillar-item p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .inner-page-hero h1 { font-size: 36px; }
            .about-main-card { padding: 35px 25px; margin-top: -40px; }
            .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
        }

         /* Contact Section Grid */
        .contact-content-section {
            background-color: #f8fafc;
            padding: 0 8% 80px 8%;
        }
        .contact-grid-container {
            max-width: 1100px;
            margin: 0 auto;
            margin-top: -60px;
            display: grid;
            grid-template-columns: 1.2fr 1.8fr;
            gap: 30px;
            position: relative;
            z-index: 10;
        }

        /* Left Side: Info Channels Card */
        .contact-info-card {
            background: #111827;
            color: #ffffff;
            padding: 45px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .info-card-top h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 26px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        .info-card-top p {
            color: #9ca3af;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        .info-channels-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .channel-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .channel-icon {
            width: 46px;
            height: 46px;
            background: rgba(242, 169, 0, 0.1);
            color: #f2a900;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .channel-text h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 5px 0;
            color: #f3f4f6;
        }
        .channel-text p {
            font-size: 14px;
            color: #9ca3af;
            margin: 0;
            line-height: 1.5;
        }

        /* Right Side: Message Form Card */
        .contact-form-card {
            background: #ffffff;
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }
        .contact-form-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: #111827;
            margin-bottom: 30px;
        }
        .form-row-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-group {
            margin-bottom: 22px;
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
        }
        .form-group input, 
        .form-group textarea {
            font-family: 'Inter', sans-serif;
            padding: 12px 16px;
            font-size: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            background-color: #f8fafc;
            color: #111827;
            transition: all 0.2s ease;
            outline: none;
        }
        .form-group input:focus, 
        .form-group textarea:focus {
            border-color: #c00005;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(192, 0, 5, 0.08);
        }
        .btn-submit-form {
            font-family: 'Inter', sans-serif;
            background-color: #c00005;
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
        }
        .btn-submit-form:hover {
            background-color: #9a0003;
        }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .contact-grid-container { grid-template-columns: 1fr; gap: 30px; margin-top: -40px; }
            .contact-info-card { gap: 40px; }
        }
        @media (max-width: 576px) {
            .inner-page-hero h1 { font-size: 36px; }
            .form-row-two { grid-template-columns: 1fr; gap: 0; }
            .contact-form-card { padding: 30px 20px; }
            .contact-info-card { padding: 30px 25px; }
        }
        
        /* Legal Content Document Layout */
        .legal-content-section {
            background-color: #f8fafc;
            padding: 0 8% 80px 8%;
        }
        .legal-document-card {
            background: #ffffff;
            max-width: 950px;
            margin: 0 auto;
            margin-top: -60px;
            padding: 60px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            position: relative;
            z-index: 10;
        }
        .meta-update-date {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 35px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        /* Typography System for Documents */
        .legal-body h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: #111827;
            margin: 35px 0 15px 0;
            border-left: 4px solid #c00005;
            padding-left: 12px;
        }
        .legal-body h2:first-of-type {
            margin-top: 0;
        }
        .legal-body p {
            font-size: 15px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 20px;
        }
        .legal-body ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .legal-body ul li {
            font-size: 15px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 10px;
        }
        .legal-body ul li strong {
            color: #111827;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .inner-page-hero h1 { font-size: 36px; }
            .legal-document-card { padding: 35px 20px; margin-top: -40px; }
            .legal-body h2 { font-size: 19px; }
        }
        /* Legal Content Document Layout */
        .legal-content-section {
            background-color: #f8fafc;
            padding: 0 8% 80px 8%;
        }
        .legal-document-card {
            background: #ffffff;
            max-width: 950px;
            margin: 0 auto;
            margin-top: -60px;
            padding: 60px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            position: relative;
            z-index: 10;
        }
        .meta-update-date {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 35px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        /* Typography System for Documents */
        .legal-body h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: #111827;
            margin: 35px 0 15px 0;
            border-left: 4px solid #c00005;
            padding-left: 12px;
        }
        .legal-body h2:first-of-type {
            margin-top: 0;
        }
        .legal-body p {
            font-size: 15px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 20px;
        }
        .legal-body ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .legal-body ul li {
            font-size: 15px;
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 10px;
        }
        .legal-body ul li strong {
            color: #111827;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .inner-page-hero h1 { font-size: 36px; }
            .legal-document-card { padding: 35px 20px; margin-top: -40px; }
            .legal-body h2 { font-size: 19px; }
        }
.team-showcase{ display: none;}


        
        /* ==========================================================================
           CRITICAL RESPONSIVE MOBILE OVERRIDES & STICKY DOWNLOAD BAR
           ========================================================================== */
        
        /* Sticky Mobile Action Dock - Completely hidden on Desktop */
        .mobile-sticky-action-dock {
            display: none;
        }

        @media (max-width: 768px) {
            .team-showcase{ display: flex;}
.team-showcase .phone-frame{
  width: 280px;
        height: 440px;
        border: 0px solid #2d2d2d;
}

            body {
                /* Add structural offset spacing so content can scroll past the sticky dock safely */
                padding-bottom: 75px !important; 
            }

            /* Enable Active Mobile Dock View */
            .mobile-sticky-action-dock {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: radial-gradient(circle at 50% 40%, #c00005 0%, #600002 60%, #1a0001 100%);
                border-top: 2px solid #f2a900; /* Gold brand accent strip line */
                padding: 5px 16px;
                z-index: 9999; /* Higher layer over all components */
                justify-content: center;
                align-items: center;
                box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
            }

            /* Scale the anchor optimized for mobile touch targets */
            .mobile-sticky-action-dock .store-badge-anchor {
                      width: 100%;
        max-width: 240px;
        background-color: #000;
        border: none;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(192, 0, 5, 0.3);
            }
            

            .mobile-sticky-action-dock .store-badge-anchor i {
                font-size: 26px;
            }

            .mobile-sticky-action-dock .badge-strings strong {
                font-size: 16px;
            }

        
        }
        /* 1. Define the soft, inviting pulsing animation keyframes */
@keyframes attentionPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(192, 0, 5, 0.4);
    }
    50% {
        transform: scale(1.03); /* Subtle expansion */
        box-shadow: 0 6px 20px rgba(192, 0, 5, 0.7), 0 0 10px rgba(242, 169, 0, 0.4); /* Dual red/gold glow */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(192, 0, 5, 0.4);
    }
}

/* 2. Attach the animation to your mobile sticky anchor button */
@media (max-width: 768px) {
    .mobile-sticky-action-dock .store-badge-anchor {
        animation: attentionPulse 2s infinite ease-in-out;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }
    
    /* Slight interactive pop if a user explicitly taps/holds it */
    .mobile-sticky-action-dock .store-badge-anchor:active {
        transform: scale(0.96);
        background-color: #990004;
    }
}
/* Custom pulsing attention animation */
@keyframes attentionPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(192, 0, 5, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(192, 0, 5, 0.7), 0 0 12px rgba(242, 169, 0, 0.5); /* Vivid gold/red glowing mix */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(192, 0, 5, 0.4);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px !important; /* Prevents button overlapping footer links */
    }

    .mobile-sticky-action-dock {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #111827;
        border-top: 2px solid #f2a900;
        padding: 12px 16px;
        z-index: 9999;
        justify-content: center;
        align-items: center;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
    }

    .mobile-sticky-action-dock .store-badge-anchor {
        width: 100%;
        max-width: 280px; /* Slightly wider layout to handle the text beautifully */
        background-color: #fff;
        border: none;
        justify-content: center;
        padding: 10px 24px;
        border-radius: 50px; /* Rounded pill style looks sleek for an app CTA */
        gap: 16px;
        animation: attentionPulse 2s infinite ease-in-out;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    /* Modern circular background asset for the download arrow icon */
    .mobile-sticky-action-dock .store-badge-anchor i {
        font-size: 16px;
        background: #c00005;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-sticky-action-dock .badge-strings {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-sticky-action-dock .badge-strings span {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.75);
        letter-spacing: 0.5px;
        font-weight: 600;
    }

    .mobile-sticky-action-dock .badge-strings strong {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: #c00005;
    }

    /* Active touch feedback compression for native-app feels */
    .mobile-sticky-action-dock .store-badge-anchor:active {
        transform: scale(0.95);
        background-color: #990004;
    }
}