@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to right, #096c9b 25%, #11c7d4 80%);
            color: #333;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInFromRight {
            0% {
                opacity: 0;
                transform: translateX(50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header h1{
            padding: 110px 0 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInFromTop 1s ease-out 0.2s both;
        }
        
        .navbar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 0px 10px rgba(102, 126, 234, 0.4);
            animation: slideInFromTop 0.6s ease-out;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            color:yellow;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s ease;
            animation: slideInFromLeft 0.8s ease-out 0.1s both;
        }

        .nav-logo:hover {
            transform: scale(1.05);
            color: white;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            animation: slideInFromRight 0.8s ease-out 0.1s both;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            font-weight: bold;
        }

        .nav-link:hover {
            color: yellow;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1rem 0;
            }

            .nav-link {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                border-radius: 0;
                display: block;
                width: 100%;
            }

            .nav-link:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: none;
                padding-left: 3rem;
            }
        }

        /* Tablet Responsive */
        @media screen and (max-width: 1024px) and (min-width: 769px) {
            .nav-container {
                padding: 0 15px;
            }
            
            .nav-menu {
                gap: 1.5rem;
            }
        }
        
        header {
            background: linear-gradient(135deg, #FF7EB3, #FF758C);
            background: linear-gradient(to left, #00098b 25%, #017f88 80%);
            padding: 30px 0;
            text-align: center;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            animation: slideInFromTop 0.8s ease-out 0.3s both;
        }
        
        header:before{
            content:"";
            position:absolute;
            top:0;
            left:0;
            right:0;
            bottom:0;
            background: linear-gradient(to left, #00098b 25%, #017f88 80%);
            opacity:0.15;
            z-index:1;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
        }
        
        .logo {
            width: 120px;
            height: auto;
            margin-bottom: 25px;
            border-radius:50%;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            animation: scaleIn 1s ease-out 0.5s both;
        }
        
        h1 {
            color: #f5f5f5;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 3px 7px rgba(255, 253, 253, 0.8);
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
            margin: 20px 30px 10px 30px;
            background-color: rgb(255, 255, 255);
            border-radius: 20px ;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
            animation: slideInFromTop 1s ease-out 0.5s both;
        }
        
        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            background:linear-gradient(TO bottom, blue 15% , white 100%);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            margin-top: 100px;
            z-index: 2;
            animation: scaleIn 1.2s ease-out 0.7s both;
        }
        
        .jkt48-badge {
            background-color: #3641db;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 20px 0;
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.9s both;
        }
        
        .profile-name {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #333;
            animation: fadeInUp 1s ease-out 1s both;
        }
        
        .profile-desc {
            text-align: center;
            max-width: 700px;
            margin-bottom: 30px;
            color: #666;
            animation: fadeInUp 1s ease-out 1.1s both;
        }
        
        /* Info Section */
        .info-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 40px 0;
            animation: fadeInUp 1s ease-out 1.2s both;
        }
        
        .info-kartu {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            animation: scaleIn 0.8s ease-out calc(1.3s + var(--card-delay, 0s)) both;
        }
        
        .info-kartu:nth-child(1) {
            --card-delay: 0s;
        }
        
        .info-kartu:nth-child(2) {
            --card-delay: 0.1s;
        }
        
        .info-kartu:nth-child(3) {
            --card-delay: 0.2s;
        }
        
        .info-kartu:hover {
            transform: translateX (-5px);
        }
        
        .card-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #1b1b1b;
            position: relative;
            padding-bottom: 10px;
        }
        
        .card-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #070707;
        }
        
        .info-list {
            list-style-type: none;
        }
        
        .info-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .info-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .info-label {
            font-weight: 600;
            color: #555;
            min-width: 100px;
            margin-right: 10px;
        }
        
        .info-value {
            color: #333;
        }
        .info-value a{
            color: #00098b;
        }
        .info-value a:hover{
            color: black;
            transform: translateY(-5px);
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 40px 0;
            margin: 0 30px 20px 30px;
            background-color: #f5f5f5;
            border-radius: 20px;
            animation: fadeInUp 1s ease-out 1.4s both;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            animation: fadeInUp 1s ease-out 1.5s both;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 3px;
            background-color: #000000;
            animation: scaleInWidth 0.8s ease-out 1.7s both;
        }
        
        @keyframes scaleInWidth {
            0% {
                width: 0;
            }
            100% {
                width: 180px;
            }
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 0 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            animation: scaleIn 0.6s ease-out calc(1.8s + var(--item-delay, 0s)) both;
        }
        
        .gallery-item:nth-child(1) {
            --item-delay: 0s;
        }
        
        .gallery-item:nth-child(2) {
            --item-delay: 0.1s;
        }
        
        .gallery-item:nth-child(3) {
            --item-delay: 0.2s;
        }
        
        .gallery-item:nth-child(4) {
            --item-delay: 0.3s;
        }
        
        .gallery-item:nth-child(5) {
            --item-delay: 0.4s;
        }
        
        .gallery-item:nth-child(6) {
            --item-delay: 0.5s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .image-caption {
            opacity: 1;
        }
        
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            animation: fadeInUp 1s ease-out 2s both;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-links a {
            text-decoration: none;
            display: inline-flex;
            padding: 8px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            font-size: 20px;
            color: #ffffff;
            margin: 0 8px;
            transition: .5s;
            animation: scaleIn 0.5s ease-out calc(2.2s + var(--social-delay, 0s)) both;
        }
        
        .social-links a:nth-child(1) {
            --social-delay: 0s;
        }
        
        .social-links a:nth-child(2) {
            --social-delay: 0.1s;
        }
        
        .social-links a:nth-child(3) {
            --social-delay: 0.2s;
        }
        
        .social-links a:hover{
            background: rgb(255, 255, 255);
            color: black;
            box-shadow:0 0 10px rgb(255, 255, 255);
            transform: translateY(-3px);
        }
        
        .social-icon:hover {
            background-color: white;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            animation: fadeInUp 1s ease-out 2.3s both;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .profile-image {
                width: 180px;
                height: 180px;
                margin-top: -90px;
            }
            
            .info-card {
                min-width: 100%;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            header {
                padding: 20px 0;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .profile-image {
                width: 150px;
                height: 150px;
                margin-top: -75px;
            }
            
            .profile-name {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
        .tt{
            border-radius:15px;
        }
        .ig{
            border-radius:15px;
        }
        
        .x{
            border-radius:20px;
        }