a{
    text-decoration: none !important;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0f;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            max-width: 400px;
            width: 100%;
        }

        .profile-section {
            text-align: center;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid #a855f7;
            box-shadow: 0 0px 38px #581c87;
            margin: 0 auto 20px;
            background: #2d2d2d;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            opacity: 0;
            animation: scaleIn 0.6s ease 0.2s forwards;
        }
        
        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-name {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .subscriber-count {
            color: #3b82f6;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .subscriber-count svg {
            fill: #22d3ee;
            stroke: #22d3ee;
        }
        
        .subscriber-count h3 {
            color: #22d3ee !important;
            font-size: 18px;
            font-weight: 400;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeIn 0.6s ease 0.4s forwards;
        }
        
        .stat-card {
            background: rgba(30, 30, 50, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(124, 58, 237, 0.6);
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: #9ca3af;
            text-transform: capitalize;
        }

        .join-btn {
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.2s, box-shadow 0.2s;
            opacity: 0;
            animation: fadeIn 0.6s ease 0.6s forwards;
            background: #2E5FEB;
            background: linear-gradient(90deg,rgba(46, 95, 235, 1) 0%, rgba(141, 53, 234, 1) 100%);
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }
        
        .join-btn svg {
            fill: white;
        }
        
        .features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-card {
            background: rgba(30, 30, 50, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            transition: transform 0.2s, border-color 0.2s;
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }
        
        .feature-card:nth-child(1) {
            animation-delay: 0.8s;
        }
        
        .feature-card:nth-child(2) {
            animation-delay: 1s;
        }

        .feature-card:hover {
            transform: translateX(5px);
            border-color: rgba(124, 58, 237, 0.6);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: rgba(124, 58, 237, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .feature-icon svg {
            stroke: #cbd5e1;
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .feature-description {
            font-size: 0.9rem;
            color: #9ca3af;
            line-height: 1.5;
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .profile-name {
                font-size: 1.6rem;
            }

            .stat-value {
                font-size: 1.5rem;
            }
        }
        .CL1{
            color: #60a5fa !important;
        }
        .Cl2{
            color: #c084fc !important;
        }
        .Cl3{
            color: #34d399 !important;
        }