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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
            line-height: 1.5;
            color: #0a0a0a;
            background: #000;
            font-weight: 400;
        }

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

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 223, 0, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            letter-spacing: -0.02em;
        }

        .logo img {
            width: 40%;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
        }

        .nav-links a:hover {
            color: #E6C300;
            text-shadow: 0 0 8px rgba(230, 195, 0, 0.4);
        }

        /* Hero Section */
        .hero {
            background: radial-gradient(ellipse at center top, rgba(255, 223, 0, 0.15) 0%, rgba(0, 0, 0, 1) 70%),
                        linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 223, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
            animation: float 25s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #E6C300 0%, #D4AF00 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #E6C300, #D4AF00);
            color: #000;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 32px rgba(230, 195, 0, 0.4);
            border: 1px solid rgba(230, 195, 0, 0.3);
            letter-spacing: -0.01em;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(230, 195, 0, 0.6);
            background: linear-gradient(135deg, #F0CD00, #E6C300);
        }

        /* About Section */
        .about {
            padding: 8rem 0;
            background: radial-gradient(ellipse at center, rgba(255, 223, 0, 0.08) 0%, rgba(0, 0, 0, 1) 70%);
            border-top: 1px solid rgba(255, 223, 0, 0.15);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, #E6C300 0%, #D4AF00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(255, 223, 0, 0.15);
            border: 1px solid rgba(255, 223, 0, 0.2);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #E6C300 0%, #D4AF00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.8rem;
            line-height: 1.7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 223, 0, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 223, 0, 0.15);
            transition: all 0.3s ease;
        }

        .stat:hover {
            background: rgba(255, 223, 0, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 223, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #E6C300;
            display: block;
            letter-spacing: -0.02em;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin-top: 0.5rem;
            font-size: 1rem;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 8rem 0;
            background: #0a0a0a;
            border-top: 1px solid rgba(255, 223, 0, 0.15);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .portfolio-card {
            background: rgba(230, 195, 0, 0.03);
            padding: 2rem 1.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(230, 195, 0, 0.15);
            backdrop-filter: blur(20px);
        }

        .portfolio-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(230, 195, 0, 0.4);
            box-shadow: 0 20px 60px rgba(230, 195, 0, 0.2);
            background: rgba(230, 195, 0, 0.08);
        }

        .portfolio-logo {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            margin: 0 auto 1.5rem;
            /* background: linear-gradient(135deg, #E6C300, #D4AF00); */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #000;
            font-weight: 700;
            box-shadow: 0 8px 32px rgba(230, 195, 0, 0.4);
            /* border: 1px solid rgba(230, 195, 0, 0.3); */
            img {
              border-radius: 1rem;
            }
        }

        .portfolio-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .portfolio-card h3 a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .portfolio-card h3 a:hover {
            color: #E6C300;
        }

        /* Partners Section */
        .partners {
            padding: 8rem 0;
            background: radial-gradient(ellipse at center, rgba(255, 223, 0, 0.08) 0%, rgba(0, 0, 0, 1) 70%);
            border-top: 1px solid rgba(255, 223, 0, 0.15);
        }

        .partners-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            margin-top: 4rem;
        }

        .partner-card {
            display: flex;
            align-items: center;
            gap: 4rem;
            background: rgba(255, 223, 0, 0.05);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 223, 0, 0.15);
            backdrop-filter: blur(20px);
        }

        .partner-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 223, 0, 0.4);
            box-shadow: 0 20px 60px rgba(255, 223, 0, 0.2);
            background: rgba(255, 223, 0, 0.1);
        }

        .partner-card.reverse {
            flex-direction: row-reverse;
        }

        .partner-avatar {
            width: 200px;
            height: 350px;
            border-radius: 24px;
            flex-shrink: 0;
            flex-basis: 33%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #000;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(230, 195, 0, 0.4);
            border: 3px solid rgba(230, 195, 0, 0.3);
            overflow: hidden;
            background: linear-gradient(135deg, #E6C300, #D4AF00);
        }

        .partner-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 21px;
            object-position: center top;
        }

        .partner-card:nth-child(2) .partner-avatar img {
            object-position: center 50%;
        }

        .partner-info {
            flex: 1;
            flex-basis: 67%;
        }

        .partner-info h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .partner-title {
            color: #E6C300;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .partner-bio {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: linear-gradient(135deg, #E6C300, #D4AF00);
            color: #000;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
        }

        .contact > .container {
            position: relative;
            z-index: 2;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #000;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            color: #000;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: #000;
        }

        .contact-button {
            background: rgba(0, 0, 0, 0.9);
            color: #E6C300;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(0, 0, 0, 0.2);
            letter-spacing: -0.01em;
        }

        .contact-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            background: rgba(0, 0, 0, 1);
            color: #E6C300;
        }

        /* Footer */
        footer {
            background: #000;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 223, 0, 0.15);
        }

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

            .nav-links {
                display: none;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

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

            .partner-card, .partner-card.reverse {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .partner-avatar {
                width: 150px;
                height: 250px;
            }
        }
.copyable-email {
    cursor: pointer;
    transition: color 0.3s ease;
}

.copyable-email:hover {
    color: rgba(0, 0, 0, 0.7);
}
.partner-contact {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-icon {
  color: #E6C300;
  text-decoration: none;
  transition: all 0.3s ease;
  /* padding: 0.5rem; */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-icon:hover {
  color: #FFD700;
  transform: translateY(-2px);
}
