
        :root {
            --primary-color: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #8b5cf6;
            --accent-color: #06b6d4;
            --accent-light: #67e8f9;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --background-light: #f8fafc;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Archivo", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: var(--text-dark);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .breadcrumb {
            color: var(--accent-light);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            animation: slideInFromLeft 0.8s ease-out;
        }

        .breadcrumb a {
            color: var(--accent-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--white);
            text-shadow: 0 0 10px var(--accent-light);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-primary);
            padding: 6rem 0;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.2), transparent 50%);
            animation: backgroundFloat 20s ease-in-out infinite alternate;
        }

        @keyframes backgroundFloat {
            0% { transform: translateX(-10px) translateY(-10px); }
            100% { transform: translateX(10px) translateY(10px); }
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: slideInFromLeft 1s ease-out;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1.2s ease-out 0.3s both;
        }

        .hero-highlight {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-subtitle {
            color: var(--accent-light);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1.2s ease-out 0.6s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.7;
            animation: fadeInUp 1.2s ease-out 0.9s both;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out 1.2s both;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            flex: 1;
            min-width: 120px;
        }

        .stat-box:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-large);
        }

        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Phone Mockups */
        .phones-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            animation: slideInFromRight 1s ease-out;
        }

        .phone-mockup {
            width: 200px;
            height: 400px;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border-radius: 30px;
            padding: 20px;
            box-shadow: var(--shadow-large);
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .phone-mockup:first-child {
            transform: rotate(-8deg) translateY(30px);
            animation: phoneFloat1 4s ease-in-out infinite;
        }

        .phone-mockup:last-child {
            transform: rotate(8deg) translateY(-30px);
            animation: phoneFloat2 4s ease-in-out infinite 2s;
        }

        @keyframes phoneFloat1 {
            0%, 100% { transform: rotate(-8deg) translateY(30px); }
            50% { transform: rotate(-6deg) translateY(20px); }
        }

        @keyframes phoneFloat2 {
            0%, 100% { transform: rotate(8deg) translateY(-30px); }
            50% { transform: rotate(6deg) translateY(-20px); }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            overflow: hidden;
            background: var(--gradient-primary);
            position: relative;
        }

        .app-header {
            background: rgba(0, 0, 0, 0.3);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .app-logo {
            color: var(--accent-light);
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .app-content {
            padding: 20px;
            height: calc(100% - 60px);
        }

        .app-title {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .business-card {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .business-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .business-name {
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .business-details {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem;
            margin-bottom: 8px;
        }

        .business-offer {
            background: var(--gradient-accent);
            color: white;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 0.6rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Download Overlay */
        .download-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(99, 102, 241, 0.95);
            backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 25px;
            animation: overlayPulse 3s ease-in-out infinite;
        }

        @keyframes overlayPulse {
            0%, 100% { 
                background: rgba(99, 102, 241, 0.95);
                transform: scale(1);
            }
            50% { 
                background: rgba(139, 92, 246, 0.95);
                transform: scale(1.02);
            }
        }

        .download-text {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .download-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 1rem;
        }

      

        .btn-store, .download-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 15px 25px;
            border-radius: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .btn-store::before, .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-store:hover::before, .download-btn:hover::before {
            left: 100%;
        }

        .btn-store:hover, .download-btn:hover {
            transform: translateY(-5px) scale(1.05);
            background: var(--gradient-accent);
            border-color: var(--accent-light);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: var(--background-light);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, var(--white), transparent);
        }

        .services-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .services-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 24px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: var(--shadow-large);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 2rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--gradient-accent);
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .service-link:hover::after {
            width: 100%;
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        /* Categories Section */
        .categories {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
        }

        .categories-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .categories-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .categories-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .urgency-banner {
            background: linear-gradient(135deg, #ef4444, #f97316);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            animation: urgencyPulse 2s ease-in-out infinite;
            box-shadow: var(--shadow-medium);
        }

        @keyframes urgencyPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: var(--shadow-medium);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: var(--shadow-large);
            }
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .category-card {
            background: var(--gradient-primary);
            color: white;
            padding: 3rem 2.5rem;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .category-card:hover::before {
            left: 100%;
        }

        .category-card:nth-child(even) {
            background: var(--gradient-accent);
        }

        .category-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-large);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .category-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .category-stats {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
        }

        /* Giant CTA Section */
        .giant-cta {
            padding: 6rem 0;
            background: var(--gradient-primary);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .giant-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.4), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.4), transparent 50%);
            animation: ctaBackground 15s ease-in-out infinite alternate;
        }

        @keyframes ctaBackground {
            0% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1.1) rotate(5deg); }
        }

        .giant-cta-content {
            position: relative;
            z-index: 2;
        }

        .giant-cta h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .giant-cta p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .app-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 24px;
            max-width: 600px;
            margin: 0 auto 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
        }

        .app-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }

        .app-features {
            list-style: none;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .app-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .app-features li:hover {
            transform: translateX(10px);
            color: white;
        }

        .app-features li::before {
            content: '✓';
            color: var(--accent-light);
            font-weight: 700;
            font-size: 1.2rem;
            width: 20px;
            height: 20px;
            background: rgba(6, 182, 212, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--accent-light);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--accent-light);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: var(--shadow-large);
            z-index: 1000;
            animation: floatingPulse 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .floating-cta:hover {
            transform: scale(1.1);
            color: white;
        }

        @keyframes floatingPulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                box-shadow: var(--shadow-large);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
                box-shadow: 0 30px 60px rgba(99, 102, 241, 0.4);
            }
        }

        /* Animation Keyframes */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0;
                min-height: auto;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .phones-container {
                order: -1;
                gap: 1.5rem;
            }

            .phone-mockup {
                width: 160px;
                height: 320px;
                padding: 15px;
            }

            .hero-stats {
                justify-content: center;
                gap: 1rem;
            }

            .stat-box {
                min-width: 100px;
                padding: 1rem;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-store, .download-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .services-grid,
            .categories-grid {
                grid-template-columns: 1fr;
            }

            .categories-grid {
                gap: 2rem;
            }

            .category-card {
                padding: 2rem 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .floating-cta {
                bottom: 20px;
                right: 20px;
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }

            .container {
                padding: 0 15px;
            }

            .app-info {
                margin: 0 1rem 3rem;
                padding: 1.5rem;
            }

            .urgency-banner {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .phone-mockup {
                width: 140px;
                height: 280px;
                padding: 12px;
            }

            .phone-mockup:first-child {
                transform: rotate(-5deg) translateY(20px);
            }

            .phone-mockup:last-child {
                transform: rotate(5deg) translateY(-20px);
            }

            .stat-box {
                padding: 0.8rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .services-title,
            .categories-title,
            .giant-cta h2 {
                font-size: 2rem;
            }
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: fadeOut 1s ease-out 2s forwards;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* Enhanced button effects */
        .btn-glow {
            position: relative;
            overflow: hidden;
            margin-right: 5px;
        }

        .btn-glow::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-glow:hover::after {
            width: 300px;
            height: 300px;
        }

        /* Particle effect for hero background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: particle-float 20s infinite linear;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }