@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.faeri-team-container {
            font-family: 'Poppins', sans-serif;
            background: #ffffff;
            color: #2d3748;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .faeri-team-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .team-section {
            margin-bottom: 5rem;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .team-section:nth-child(2) {
            animation-delay: 0.3s;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            color: white;
            padding: 0.6rem 2.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .section-brand::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            position: relative;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            justify-items: center;
        }

        .team-card {
            background: #ffffff;
            border: 2px solid #f1f5f9;
            border-radius: 24px;
            padding: 3rem 2.5rem;
            width: 100%;
            max-width: 380px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 420px;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: #e2e8f0;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(59, 130, 246, 0.1);
        }

        .team-image {
            position: relative;
            margin-bottom: 2rem;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .team-image img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #f8fafc;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            position: relative;
        }

        .team-image::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-image::before {
            opacity: 1;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
            border-color: #ffffff;
        }

        .team-position {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        /* Special styling for CHAIRMAN */
        .team-position.chairman {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
            position: relative;
            overflow: hidden;
        }

        .team-position.chairman::before {
            content: '👑';
            position: absolute;
            left: 0.8rem;
            font-size: 1rem;
            animation: bounce 2s infinite;
        }

        .team-position.chairman::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: slide 2s infinite;
        }

        /* Special styling for PRO */
        .team-position.pro {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
            position: relative;
            overflow: hidden;
        }

        .team-position.pro::before {
            content: '📢';
            position: absolute;
            left: 0.8rem;
            font-size: 1rem;
            animation: pulse 2s infinite;
        }

        .team-position.pro::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: slide 2s infinite 1s;
        }

        /* Regular positions */
        .team-position.regular {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        }

        .team-name {
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .team-name a {
            color: #1f2937;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            text-align: center;
            line-height: 1.3;
        }

        .team-name a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #ec4899);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .team-name a:hover {
            color: #3b82f6;
            transform: translateY(-2px);
        }

        .team-name a:hover::after {
            width: 100%;
        }

        .team-social {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            color: #475569;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 2px solid #e2e8f0;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .team-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #ec4899);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .team-social a:hover::before {
            left: 0;
        }

        .team-social a:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes slide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .team-card {
                padding: 2.5rem 2rem;
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.75rem;
            }
            
            .team-image img {
                width: 100px;
                height: 100px;
            }
            
            .team-card {
                padding: 2rem 1.5rem;
                min-height: 380px;
            }
        }