        :root {
            --primary-color: #ff8800;
            --secondary-color: #ff6b00;
            --bg-dark: #1a1a1a;
            --bg-light: #2a2a2a;
            --text-light: #ffffff;
            --text-gray: #cccccc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #090909 0%, #080808 100%);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: -1;
        }

        .home-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
        }

        .home-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
        }

        .youtubers-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 2rem;
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(255, 136, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .youtubers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            perspective: 1000px;
        }

        .youtuber-card {
            background: linear-gradient(145deg, var(--bg-light), #222222);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            position: relative;
        }

        .youtuber-card:hover {
            transform: translateY(-15px) scale(1.02) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .youtuber-banner {
            height: 150px;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            position: relative;
            overflow: hidden;
        }

        .youtuber-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom right, rgba(255,255,255,0.2), transparent);
        }

        .youtuber-info {
            padding: 2.5rem;
            text-align: center;
            position: relative;
        }

        .youtuber-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 6px solid var(--bg-light);
            background: linear-gradient(145deg, var(--bg-dark), #222222);
            margin: -90px auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--primary-color);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .youtuber-card:hover .youtuber-avatar {
            transform: scale(1.1) rotate(5deg);
        }

        .youtuber-name {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .youtuber-description {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .subscribe-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
        }

        .subscribe-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        }

        .subscribe-btn i {
            font-size: 1.2rem;
        }

        .footer {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-gray);
        }

        @media (max-width: 768px) {
            .youtubers-container {
                padding: 1rem;
            }

            .page-header {
                padding: 2rem;
                margin-bottom: 3rem;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .home-btn {
                top: 10px;
                left: 10px;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .youtubers-grid {
                gap: 2rem;
            }

            .youtuber-card {
                margin: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 2rem;
            }

            .youtuber-avatar {
                width: 120px;
                height: 120px;
                font-size: 3rem;
            }

            .youtuber-name {
                font-size: 1.5rem;
            }

            .subscribe-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
                                  }
