    :root {
        --primary: #4361ee;
        --secondary: #3f37c9;
        --accent: #4895ef;
        --background: #f0f2f5;
        --card: #ffffff;
        --text: #2b2d42;
        --text-light: #8d99ae;
        --success: #4cc9f0;
        --warning: #ffd60a;
        --danger: #ef233c;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
 

    body {
        font-family: 'Poppins', sans-serif;
        background: var(--background);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text);
    }

   .gradient-title {
        font-size: 2.5rem;
        font-weight: 600;
        background: linear-gradient(135deg, #4361ee, #4895ef);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .home-container {
        background: var(--card);
        padding: 3rem;
        border-radius: 20px;
        box-shadow: var(--shadow);
        width: 90%;
        max-width: 600px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .home-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
        animation: gradient 3s linear infinite;
        background-size: 200% 100%;
    }

    @keyframes gradient {
        0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text);
        font-weight: 400;
        letter-spacing: 1px;
    }

    .lottie-container {
        width: 250px;
        height: 250px;
        margin: 0 auto 0.5rem;
    }

    .btn-container {
        display: grid;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn {
        background: var(--primary);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        box-shadow: var(--shadow);
    }

    .btn:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(67, 97, 238, 0.15);
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn i {
        font-size: 1.2rem;
    }

    .stats-preview {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--background);
    }

    .stat-item {
        text-align: center;
    }

    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    @media (max-width: 480px) {
        .home-container {
            padding: 2rem;
        }

        h1 {
            font-size: 2rem;
        }

        .btn {
            padding: 0.8rem 1.5rem;
        }

        .stats-preview {
            flex-direction: column;
            gap: 1rem;
        }

        .lottie-container {
            width: 180px;
            height: 180px;
        }
    }