/* roulang page: index */
:root {
            --color-bg: #06060d;
            --color-bg-alt: #0c0c1a;
            --color-bg-card: #111128;
            --color-bg-card-hover: #161636;
            --color-surface: #0f0f22;
            --color-border: #1e1e44;
            --color-border-glow: #3a3a7a;
            --color-primary: #00e0ff;
            --color-primary-glow: #00b8d4;
            --color-secondary: #c44dff;
            --color-secondary-glow: #a020f0;
            --color-accent: #ff3c78;
            --color-accent-glow: #e91e63;
            --color-text: #e8e8f0;
            --color-text-strong: #ffffff;
            --color-text-weak: #9a9ab8;
            --color-text-muted: #6a6a88;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow-primary: 0 0 30px rgba(0, 224, 255, 0.25), 0 0 60px rgba(0, 224, 255, 0.08);
            --shadow-glow-secondary: 0 0 30px rgba(196, 77, 255, 0.25), 0 0 60px rgba(196, 77, 255, 0.08);
            --shadow-glow-accent: 0 0 30px rgba(255, 60, 120, 0.25), 0 0 60px rgba(255, 60, 120, 0.08);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input,
        textarea {
            font-family: inherit;
            outline: none;
        }

        ::selection {
            background: rgba(0, 224, 255, 0.3);
            color: #fff;
        }

        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ========== NAVIGATION ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(6, 6, 13, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(30, 30, 68, 0.6);
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(6, 6, 13, 0.94);
            border-bottom-color: rgba(60, 60, 120, 0.7);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: 0.03em;
            color: var(--color-text-strong);
            white-space: nowrap;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .logo-link:hover {
            color: var(--color-primary);
            text-shadow: 0 0 20px rgba(0, 224, 255, 0.5);
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            font-weight: 900;
            box-shadow: var(--shadow-glow-primary);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-weak);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .nav-links li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links li a.nav-active {
            color: var(--color-primary);
            background: rgba(0, 224, 255, 0.08);
        }
        .nav-cta-btn {
            display: inline-block;
            padding: 10px 22px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-glow));
            color: #000 !important;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-primary);
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            box-shadow: 0 0 40px rgba(0, 224, 255, 0.45), 0 0 80px rgba(0, 224, 255, 0.15);
            transform: translateY(-2px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-text-strong);
            font-size: 1.5rem;
            padding: 6px;
            cursor: pointer;
            line-height: 1;
            transition: color var(--transition-fast);
        }
        .mobile-toggle:hover {
            color: var(--color-primary);
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links li a {
                padding: 6px 12px;
                font-size: 0.82rem;
            }
            .nav-cta-btn {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(6, 6, 13, 0.96);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 20px;
                gap: 8px;
                border-bottom: 1px solid var(--color-border);
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: all var(--transition-smooth);
                z-index: 999;
            }
            .nav-links.mobile-open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links li a {
                display: block;
                text-align: center;
                padding: 12px 20px;
                font-size: 1rem;
                border-radius: var(--radius-md);
            }
            .nav-cta-btn {
                display: block;
                text-align: center;
                margin-top: 8px;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 64px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.35) saturate(1.1);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(ellipse at center, rgba(0, 180, 220, 0.12) 0%, rgba(6, 6, 13, 0.7) 55%, rgba(6, 6, 13, 0.92) 100%);
        }
        .hero-grid-lines {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image:
                linear-gradient(rgba(0, 224, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 224, 255, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 40px 24px;
        }
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            background: rgba(0, 224, 255, 0.1);
            border: 1px solid rgba(0, 224, 255, 0.3);
            color: var(--color-primary);
            margin-bottom: 24px;
            text-transform: uppercase;
            animation: badgePulse 3s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%,
            100% {
                box-shadow: 0 0 12px rgba(0, 224, 255, 0.2);
            }
            50% {
                box-shadow: 0 0 28px rgba(0, 224, 255, 0.45);
            }
        }
        .hero-title {
            font-size: 3.6rem;
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: 0.02em;
            color: #fff;
            margin: 0 0 20px;
            text-shadow: 0 0 60px rgba(0, 224, 255, 0.4), 0 0 120px rgba(196, 77, 255, 0.2);
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--color-text-weak);
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.7;
            letter-spacing: 0.03em;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-glow));
            color: #000;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-primary);
            text-decoration: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            box-shadow: 0 0 50px rgba(0, 224, 255, 0.5), 0 0 100px rgba(0, 224, 255, 0.18);
            transform: translateY(-3px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.04em;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all var(--transition-smooth);
            text-decoration: none;
            cursor: pointer;
        }
        .btn-outline:hover {
            border-color: var(--color-primary);
            box-shadow: 0 0 30px rgba(0, 224, 255, 0.3);
            background: rgba(0, 224, 255, 0.06);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                justify-content: center;
                padding: 13px 24px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 14px;
            }
            .hero-content {
                padding: 24px 16px;
            }
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 80px 0;
            position: relative;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 16px;
            letter-spacing: 0.03em;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--color-text-weak);
            max-width: 650px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        @media (max-width: 768px) {
            .section {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .section-desc {
                font-size: 0.95rem;
                margin-bottom: 32px;
            }
        }

        /* ========== CARDS ========== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
            opacity: 0;
            transition: opacity var(--transition-smooth);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }
        .card:hover {
            background: var(--color-bg-card-hover);
            border-color: var(--color-border-glow);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .card:hover::before {
            opacity: 1;
        }
        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .card-icon.cyan {
            background: rgba(0, 224, 255, 0.12);
            color: var(--color-primary);
        }
        .card-icon.purple {
            background: rgba(196, 77, 255, 0.12);
            color: var(--color-secondary);
        }
        .card-icon.pink {
            background: rgba(255, 60, 120, 0.12);
            color: var(--color-accent);
        }
        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
            letter-spacing: 0.02em;
        }
        .card-desc {
            font-size: 0.9rem;
            color: var(--color-text-weak);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 520px) {
            .card-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .card {
                padding: 20px 16px;
            }
        }

        /* ========== IMAGE CARD ========== */
        .image-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }
        .image-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .image-card:hover {
            border-color: var(--color-border-glow);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .image-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .image-card-body {
            padding: 20px;
        }
        .image-card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 14px;
            margin-bottom: 10px;
        }
        .image-card-tag.hot {
            background: rgba(255, 60, 120, 0.15);
            color: var(--color-accent);
        }
        .image-card-tag.new {
            background: rgba(0, 224, 255, 0.15);
            color: var(--color-primary);
        }
        .image-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 6px;
        }
        .image-card-desc {
            font-size: 0.85rem;
            color: var(--color-text-weak);
            line-height: 1.5;
            margin: 0;
        }
        @media (max-width: 520px) {
            .image-card-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* ========== PROCESS / BRACKET ========== */
        .process-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            justify-content: center;
            align-items: flex-start;
            max-width: 1000px;
            margin: 0 auto;
        }
        .process-step {
            flex: 1 1 180px;
            min-width: 160px;
            text-align: center;
            position: relative;
            padding: 20px 16px;
        }
        .process-step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-weight: 900;
            font-size: 1.3rem;
            color: #fff;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            box-shadow: var(--shadow-glow-primary);
        }
        .process-step-title {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            margin: 0 0 4px;
        }
        .process-step-desc {
            font-size: 0.82rem;
            color: var(--color-text-weak);
            line-height: 1.5;
        }
        .process-connector {
            display: none;
        }
        @media (min-width: 769px) {
            .process-step {
                position: relative;
            }
            .process-step::after {
                content: '';
                position: absolute;
                top: 48px;
                left: 62%;
                width: 76%;
                height: 2px;
                background: linear-gradient(90deg, var(--color-primary), transparent);
                z-index: 1;
                opacity: 0.5;
            }
            .process-step:last-child::after {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .process-list {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            .process-step {
                flex: 1 1 auto;
                width: 100%;
                max-width: 360px;
                padding: 16px;
            }
            .process-step::after {
                display: none;
            }
        }

        /* ========== STATS ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            padding: 24px 16px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 6px;
            line-height: 1.1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--color-text-weak);
            font-weight: 500;
            letter-spacing: 0.04em;
        }
        @media (max-width: 520px) {
            .stat-number {
                font-size: 2rem;
            }
            .stats-grid {
                gap: 12px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item.active {
            border-color: var(--color-border-glow);
            box-shadow: var(--shadow-glow-primary);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 18px 20px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            font-size: 0.85rem;
            transition: transform var(--transition-smooth);
            color: var(--color-primary);
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 0.9rem;
            color: var(--color-text-weak);
            line-height: 1.7;
        }

        /* ========== CTA ========== */
        .cta-section {
            position: relative;
            overflow: hidden;
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .cta-inner {
            text-align: center;
            padding: 60px 24px;
            position: relative;
            z-index: 2;
        }
        .cta-bg-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.25;
            pointer-events: none;
            z-index: 1;
        }
        .cta-bg-glow.cyan-glow {
            background: var(--color-primary);
            top: -200px;
            left: -150px;
        }
        .cta-bg-glow.purple-glow {
            background: var(--color-secondary);
            bottom: -200px;
            right: -150px;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }
        .cta-desc {
            font-size: 1rem;
            color: var(--color-text-weak);
            margin: 0 auto 28px;
            max-width: 500px;
        }
        @media (max-width: 520px) {
            .cta-title {
                font-size: 1.5rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-bg);
            border-top: 1px solid var(--color-border);
            padding: 48px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--color-primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            letter-spacing: 0.03em;
        }
        .footer-bottom strong {
            color: var(--color-text-weak);
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        /* ========== UTILITY ========== */
        .text-center {
            text-align: center;
        }
        .bg-alt {
            background: var(--color-bg-alt);
        }
        .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;
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.7s ease-out forwards;
        }
        .animate-delay-1 {
            animation-delay: 0.1s;
            opacity: 0;
        }
        .animate-delay-2 {
            animation-delay: 0.25s;
            opacity: 0;
        }
        .animate-delay-3 {
            animation-delay: 0.4s;
            opacity: 0;
        }
        .animate-delay-4 {
            animation-delay: 0.55s;
            opacity: 0;
        }
