/* Page styles: about (migrated from inline <style>) */

/* ===== ABOUT PAGE UNIQUE STYLES ===== */

        .about-page-hero {
            padding-top: calc(var(--hh) + 20px + 60px);
            padding-bottom: 80px;
            background: linear-gradient(135deg, #060d1f 0%, #0a1428 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-page-hero__mesh {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,87,255,.15) 0%, transparent 60%),
                        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,194,255,.12) 0%, transparent 55%);
            pointer-events: none;
            z-index: 0;
        }
        
        .about-page-hero__grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }
        
        .about-page-hero__container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px;
        }
        
        .about-page__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.16);
            color: rgba(255,255,255,.9);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }
        
        .about-page__eyebrow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--secondary);
            box-shadow: 0 0 12px var(--secondary);
            animation: blink 2s ease-in-out infinite;
        }
        
        .about-page-hero__title {
            font-family: var(--font-head);
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 24px;
        }
        
        .about-page-hero__title .highlight {
            background: #DC1D44;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .about-page-hero__desc {
            font-size: 1.05rem;
            color: rgba(255,255,255,.7);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 520px;
        }
        
        .about-page-hero__stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        
        .about-page-hero__stat {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 14px;
            padding: 18px 20px;
            backdrop-filter: blur(6px);
        }
        
        .about-page-hero__stat-num {
            font-family: var(--font-head);
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        
        .about-page-hero__stat-lbl {
            font-size: .75rem;
            color: rgba(255,255,255,.55);
            font-weight: 600;
            margin-top: 4px;
        }
        
        .about-page-hero__actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        
        .about-page-hero__visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-page-hero__img-wrap {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 4/5;
            border-radius: 28px;
            overflow: hidden;
        }
        
        .about-page-hero__img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.92) saturate(1.1);
        }
        
        .about-page-hero__badge {
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 12px 28px;
            border-radius: 100px;
            font-size: .82rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 32px rgba(0,87,255,.35);
            z-index: 3;
        }
        
        .about-page-hero__badge::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: .7rem;
            font-weight: 900;
        }
        
        /* ===== STORY SECTION ===== */
        .about-page-story {
            padding: 100px 0;
            background: var(--bg);
        }
        
        .about-page-story__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        
        .about-page-story__media {
            position: relative;
        }
        
        .about-page-story__img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 24px 64px rgba(0,87,255,.18);
            border: 4px solid #fff;
        }
        
        .about-page-story__experience {
            position: absolute;
            bottom: -24px;
            right: -24px;
            background: #fff;
            border-radius: 20px;
            padding: 24px 28px;
            box-shadow: 0 12px 40px rgba(0,87,255,.15);
            text-align: center;
            min-width: 160px;
            border: 1px solid var(--border);
        }
        
        .about-page-story__exp-num {
            font-family: var(--font-head);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        
        .about-page-story__exp-lbl {
            font-size: .75rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 4px;
        }
        
        .about-page-story__content .section__label {
            text-align: left;
            display: inline-flex;
            margin-bottom: 18px;
        }
        
        .about-page-story__title {
            font-family: var(--font-head);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.25;
        }
        
        .about-page-story__desc {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 28px;
        }
        
        .about-page-story__values {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 36px;
        }
        
        .about-page-story__value {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: var(--bg-alt);
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all var(--tr);
        }
        
        .about-page-story__value:hover {
            border-color: var(--primary);
            background: #fff;
            box-shadow: var(--cs);
        }
        
        .about-page-story__value-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .about-page-story__value-text strong {
            display: block;
            font-size: .9rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }
        
        .about-page-story__value-text span {
            font-size: .8rem;
            color: var(--text-muted);
        }
        
        /* ===== TEAM SECTION ===== */
        .about-page-team {
            padding: 100px 0;
            background: var(--bg-alt);
        }
        
        .about-page-team__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
            padding: 0 28px;
        }
        
        .about-page-team__grid {
           display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 6px;
    max-width: 1417px;
    margin: 0 auto;
    padding: 0 14px;
        }
        
        /* ===== UPDATED TEAM CARD ===== */
        .about-page-team__card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--tr);
            text-align: center;
            padding: 0 0 28px 0;
            box-shadow: 10px 10px 5px #c1c1c1;
        }
        
        .about-page-team__card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0,0,0,0.16);
            border-color: transparent;
        }

        /* Square image area — full card width, 40% of card area via aspect-ratio */
        .about-page-team__avatar {
            width: 100%;
            aspect-ratio: 5 / 5;
            overflow: hidden;
            display: block;
            border-radius: 0;
            margin: 0;
            box-shadow: none;
            border: none;
            background: var(--bg-alt);
            height:;
        }
        
        .about-page-team__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform 0.45s ease;
            border-radius: 0;
        }
        
        .about-page-team__card:hover .about-page-team__avatar img {
            transform: scale(1.07);
        }

        /* Card body content */
        .about-page-team__body {
            padding: 20px 20px 0;
        }
        
        .about-page-team__name {
            font-family: var(--font-head);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
        
        .about-page-team__role {
            font-size: .82rem;
            color: #DC1D44;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .about-page-team__bio {
            font-size: .88rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .about-page-team__divider {
            height: 1px;
            background: var(--border);
            margin: 0 0 14px;
        }
        
        .about-page-team__social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .about-page-team__social a {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: .9rem;
            text-decoration: none;
            transition: all var(--tr);
        }
        
        .about-page-team__social a:hover {
            background: #DC1D44;
            color: #fff;
            border-color: #DC1D44;
            transform: translateY(-3px);
        }
        
        /* ===== ENHANCED TIMELINE SECTION ===== */
        .about-page-timeline {
            padding: 100px 0;
            background: var(--bg);
        }
        
        .about-page-timeline__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 72px;
            padding: 0 28px;
        }
        
        .about-page-timeline__track {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 28px 40px;
        }
        
        .about-page-timeline__line {
            position: absolute;
            left: 50%;
            top: 40px;
            bottom: 40px;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--secondary), var(--purple), var(--accent));
            background-size: 100% 400%;
            transform: translateX(-50%);
            border-radius: 4px;
            animation: lineFlow 4s ease infinite;
            z-index: 1;
        }
        
        @keyframes lineFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .about-page-timeline__line-glow {
            position: absolute;
            left: 50%;
            top: 40px;
            bottom: 40px;
            width: 20px;
            background: radial-gradient(ellipse at center, rgba(0,87,255,.15) 0%, transparent 70%);
            transform: translateX(-50%);
            pointer-events: none;
            z-index: 0;
            animation: glowPulse 3s ease-in-out infinite;
        }
        
        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
            50% { opacity: 0.8; transform: translateX(-50%) scale(1.05); }
        }
        
        .about-page-timeline__item {
            display: grid;
            grid-template-columns: 1fr 70px 1fr;
            gap: 0;
            margin-bottom: 70px;
            position: relative;
            align-items: center;
            z-index: 2;
        }
        
        .about-page-timeline__item:nth-child(even) {
            direction: rtl;
        }
        
        .about-page-timeline__item:nth-child(even) > * {
            direction: ltr;
        }
        
        .about-page-timeline__content {
            background: #fff;
            border-radius: 22px;
            padding: 28px 32px;
            border: 1px solid var(--border);
            box-shadow: var(--cs);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .about-page-timeline__content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,87,255,.03), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 10px 10px 5px #c1c1c1;
        }
        
        .about-page-timeline__content:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 24px 64px rgba(0,87,255,.25);
            border-color: var(--primary);
        }
        
        .about-page-timeline__content:hover::before {
            opacity: 1;
        }
        
        .about-page-timeline__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 6px 18px;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 700;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(0,87,255,.3);
        }
        
        .about-page-timeline__badge-icon {
            font-size: 1.1rem;
        }
        
        .about-page-timeline__title {
            font-family: var(--font-head);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .about-page-timeline__desc {
            font-size: .95rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 16px;
        }
        
        .about-page-timeline__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 16px;
            border-top: 1px dashed var(--border);
        }
        
        .about-page-timeline__meta-item {
            font-size: .78rem;
            color: var(--primary);
            font-weight: 600;
            background: rgba(0,87,255,.08);
            padding: 4px 12px;
            border-radius: 100px;
        }
        
        .about-page-timeline__marker {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
        }
        
        .about-page-timeline__marker-inner {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: var(--font-head);
            font-size: 1.3rem;
            font-weight: 800;
            box-shadow: 0 10px 40px rgba(0,87,255,.4);
            border: 5px solid #fff;
            position: relative;
            transition: transform 0.3s;
        }
        
        .about-page-timeline__item:hover .about-page-timeline__marker-inner {
            transform: scale(1.1) rotate(-5deg);
        }
        
        .about-page-timeline__marker-pulse {
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 3px solid var(--secondary);
            animation: pulseRing 2s ease-out infinite;
            opacity: 0;
        }
        
        @keyframes pulseRing {
            0% { transform: scale(0.8); opacity: 0.6; }
            50% { opacity: 0.3; }
            100% { transform: scale(1.8); opacity: 0; }
        }
        
        .about-page-timeline__visual {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 180px;
            box-shadow: 0 12px 40px rgba(0,87,255,.15);
            border: 3px solid #fff;
            transition: all 0.4s ease;
        }
        
        .about-page-timeline__item:hover .about-page-timeline__visual {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0,87,255,.25);
        }
        
        .about-page-timeline__visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-page-timeline__item:hover .about-page-timeline__visual img {
            transform: scale(1.1);
        }
        
        .about-page-timeline__visual-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 60%);
            pointer-events: none;
        }
        
        /* ===== VALUES SECTION WITH IMAGES ===== */
        .about-page-values {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
        }
        
        .about-page-values__header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
            padding: 0 28px;
        }
        
        .about-page-values__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }
        
        .about-page-values__card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--cs);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 10px 10px 5px #c1c1c1;
        }
        
        .about-page-values__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 32px 80px rgba(0,87,255,.25);
            border-color: var(--primary);
        }
        
        .about-page-values__img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .about-page-values__img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-page-values__card:hover .about-page-values__img-wrap img {
            transform: scale(1.12);
        }
        
        .about-page-values__img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.6) 100%);
            pointer-events: none;
        }
        
        .about-page-values__icon-badge {
            position: absolute;
            bottom: -18px;
            left: 24px;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            box-shadow: 0 8px 28px rgba(0,87,255,.35);
            border: 4px solid #fff;
            z-index: 2;
            transition: transform 0.3s;
            display: none;
        }
        
        .about-page-values__card:hover .about-page-values__icon-badge {
            transform: scale(1.15) rotate(-5deg);
        }
        
        .about-page-values__content {
            padding: 42px 28px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .about-page-values__content h3 {
            font-family: var(--font-head);
            font-size: 1.15rem;
            font-weight: 700;
            color: #DC1D44;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .about-page-values__content p {
            font-size: .93rem;
            color: var(--text-muted);
            line-height: 1.75;
            flex: 1;
        }
        
        .about-page-values__card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .about-page-values__card:hover::after {
            opacity: 1;
        }
        
        /* ===== CTA SECTION ===== */
        .about-page-cta {
            padding: 100px 0;
            background: #1d94dc;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .about-page-cta__mesh {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,87,255,.12) 0%, transparent 65%);
            pointer-events: none;
        }
        
        .about-page-cta__container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 28px;
            position: relative;
            z-index: 2;
        }
        
        .about-page-cta__title {
            font-family: var(--font-head);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .about-page-cta__desc {
            font-size: 1.05rem;
            color: rgba(255,255,255,.7);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .about-page-cta__actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .about-page-cta__btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,.3);
            padding: 14px 32px;
            border-radius: 100px;
            font-size: .95rem;
            font-weight: 700;
            transition: all var(--tr);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .about-page-cta__btn-outline:hover {
            border-color: var(--secondary);
            background: rgba(0,194,255,.1);
            transform: translateY(-3px);
        }
        
        /* ===== RESPONSIVE ===== */
        @media(max-width: 1024px) {
            .about-page-hero__container,
            .about-page-story__container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-page-hero__desc,
            .about-page-story__values {
                margin-left: auto;
                margin-right: auto;
            }
            .about-page-hero__stats {
                justify-content: center;
            }
            .about-page-story__experience {
                right: 50%;
                transform: translateX(50%);
            }
            .about-page-timeline__line,
            .about-page-timeline__line-glow {
                left: 40px;
            }
            .about-page-timeline__item {
                grid-template-columns: 70px 1fr;
                gap: 24px;
                direction: ltr !important;
            }
            .about-page-timeline__item:nth-child(even) {
                direction: ltr !important;
            }
            .about-page-timeline__visual {
                grid-column: 1 / -1;
                order: -1;
                height: 200px;
            }
            .about-page-timeline__marker {
                grid-column: 1;
                justify-self: start;
                margin-left: 5px;
            }
            .about-page-timeline__content {
                grid-column: 2;
            }
        }
        
        @media(max-width: 768px) {
            .about-page-hero__stats {
                grid-template-columns: 1fr;
            }
            .about-page-story__values {
                grid-template-columns: 1fr;
            }
            .about-page-timeline__line,
            .about-page-timeline__line-glow {
                left: 28px;
            }
            .about-page-timeline__item {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            .about-page-timeline__marker {
                justify-self: center;
                grid-column: 1;
            }
            .about-page-timeline__content {
                grid-column: 1;
                text-align: center;
            }
            .about-page-timeline__meta {
                justify-content: center;
            }
            .about-page-timeline__visual {
                height: 180px;
            }
            .about-page-values__grid {
                grid-template-columns: 1fr;
            }
            .about-page-cta__actions {
                flex-direction: column;
                align-items: center;
            }
            .about-page-cta__btn-outline {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media(max-width: 480px) {
            .about-page-hero__title {
                font-size: 2rem;
            }
            .about-page-story__title {
                font-size: 1.6rem;
            }
            .about-page-timeline__content {
                padding: 20px 24px;
            }
            .about-page-timeline__title {
                font-size: 1.05rem;
            }
            .about-page-values__img-wrap {
                height: 180px;
            }
            .about-page-values__content {
                padding: 36px 24px 24px;
            }
        }

#rcl-overlay {
    position: fixed;
    inset: 0;
    background: rgb(212, 212, 212);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  #rcl-box {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #rcl-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid rgba(190,20,60,0.2);
    border-top-color: #be143c;
    border-right-color: #8b0000;
    animation: rcl-spin 1.1s linear infinite;
  }
  #rcl-inner-ring {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 3px solid rgba(190,20,60,0.12);
    border-bottom-color: #d4204f;
    animation: rcl-spin-rev 1.6s linear infinite;
  }
  @keyframes rcl-spin { to { transform: rotate(360deg); } }
  @keyframes rcl-spin-rev { to { transform: rotate(-360deg); } }
  #rcl-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #be143c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #8b0000;
    z-index: 1;
    animation: rcl-pulse 2s ease-in-out infinite;
  }
  @keyframes rcl-pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }
  #rcl-icon-wrap img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  #rcl-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #be143c;
    letter-spacing: 2px;
    white-space: nowrap;
    font-family: sans-serif;
    animation: rcl-blink 1.4s ease-in-out infinite;
  }
  @keyframes rcl-blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
