* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #e2e8f0;
            background: #0d1117;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(88, 101, 242, 0.02) 1px, transparent 1px),
                linear-gradient(rgba(88, 101, 242, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: rgba(13, 17, 23, 0.3);
            backdrop-filter: blur(5px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(88, 101, 242, 0.05);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 12px 0;
            background: rgba(13, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(88, 101, 242, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        header.scrolled .logo {
            font-size: 22px;
        }

        header.scrolled .nav-links a {
            font-size: 14px;
        }

        header.scrolled .cta-button {
            padding: 8px 20px;
            font-size: 14px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: font-size 0.3s ease;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: #5865f2;
        }

        .cta-button {
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 60px;
            color: #e2e8f0;
            text-align: center;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subtitle {
            font-size: 24px;
            margin-bottom: 20px;
            opacity: 0.8;
            font-weight: 300;
            color: #cbd5e1;
        }

        .group-tag {
            display: inline-block;
            background: rgba(88, 101, 242, 0.1);
            border: 1px solid rgba(88, 101, 242, 0.3);
            padding: 10px 25px;
            border-radius: 20px;
            font-size: 18px;
            font-weight: 600;
            margin-top: 10px;
            backdrop-filter: blur(10px);
            color: #5865f2;
        }

        /* Main Content */
        .content {
            background: transparent;
            margin-top: 50px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(22, 27, 34, 0.6);
            border: 1px solid rgba(88, 101, 242, 0.15);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .name-origin {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
            border: 1px solid rgba(88, 101, 242, 0.3);
            color: #e2e8f0;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .name-origin h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #5865f2;
        }

        .name-origin p {
            font-size: 17px;
            line-height: 1.8;
            opacity: 0.9;
            text-align: justify;
        }

        .name-breakdown {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        .name-part {
            background: rgba(22, 27, 34, 0.5);
            border: 1px solid rgba(139, 92, 246, 0.2);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .name-part h4 {
            font-size: 24px;
            margin-bottom: 8px;
            color: #8b5cf6;
        }

        .name-part p {
            font-size: 15px;
            opacity: 0.9;
        }

        .about-text {
            color: #cbd5e1;
            font-size: 18px;
            line-height: 1.9;
            text-align: justify;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .highlight {
            color: #5865f2;
            font-weight: 600;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-card {
            background: rgba(22, 27, 34, 0.6);
            border: 1px solid rgba(88, 101, 242, 0.15);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
            border-color: rgba(88, 101, 242, 0.4);
        }

        .avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            margin: 0 auto 25px;
            color: white;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
        }

        .team-card h3 {
            font-size: 28px;
            margin-bottom: 10px;
            color: #e2e8f0;
        }

        .role {
            display: inline-block;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .specialization {
            color: #5865f2;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .bio {
            color: #cbd5e1;
            line-height: 1.8;
            font-size: 16px;
        }

        .skills-container {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(88, 101, 242, 0.2);
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease, padding-top 0.4s ease;
        }

        .team-card:hover .skills-container {
            opacity: 1;
            max-height: 300px;
            margin-top: 25px;
            padding-top: 20px;
        }

        .skills-label {
            font-size: 14px;
            font-weight: 600;
            color: #5865f2;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .skills-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: rgba(88, 101, 242, 0.1);
            border: 1px solid rgba(88, 101, 242, 0.3);
            color: #5865f2;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: rgba(88, 101, 242, 0.2);
            border-color: rgba(88, 101, 242, 0.5);
            transform: translateY(-2px);
        }

        /* Projects Section */
        .projects-section {
            padding: 80px 0;
            background: rgba(22, 27, 34, 0.3);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .project-card {
            background: rgba(22, 27, 34, 0.6);
            border: 1px solid rgba(88, 101, 242, 0.15);
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, border-color 0.3s;
            backdrop-filter: blur(10px);
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: rgba(88, 101, 242, 0.4);
        }

        .project-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .project-card h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #e2e8f0;
            font-weight: 600;
        }

        .project-card p {
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .project-link {
            color: #5865f2;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .project-link:hover {
            color: #8b5cf6;
        }

        /* Vision Section */
        .vision-section {
            padding: 80px 0;
            text-align: center;
        }

        .vision-box {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(88, 101, 242, 0.2);
            color: #e2e8f0;
            padding: 60px 50px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .vision-box h2 {
            font-size: 38px;
            margin-bottom: 25px;
            font-weight: 700;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vision-box p {
            font-size: 20px;
            line-height: 1.8;
            opacity: 0.9;
            color: #cbd5e1;
        }

        .tech-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .tech-icon {
            background: rgba(22, 27, 34, 0.5);
            border: 1px solid rgba(88, 101, 242, 0.2);
            padding: 15px 25px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            color: #5865f2;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .tech-icon:hover {
            transform: scale(1.1);
            border-color: rgba(88, 101, 242, 0.5);
            box-shadow: 0 5px 20px rgba(88, 101, 242, 0.2);
        }

        /* Footer */
        footer {
            background: rgba(13, 17, 23, 0.8);
            border-top: 1px solid rgba(88, 101, 242, 0.1);
            color: #cbd5e1;
            text-align: center;
            padding: 30px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 38px;
            }

            .hero .subtitle {
                font-size: 20px;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 32px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                padding: 30px;
            }

            .name-breakdown {
                grid-template-columns: 1fr;
            }

            .vision-box {
                padding: 40px 30px;
            }

            .vision-box h2 {
                font-size: 28px;
            }

            .vision-box p {
                font-size: 18px;
            }
        }

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

        .animate {
            animation: fadeInUp 0.8s ease-out;
        }
