        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #e0e0e0;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #e0e0e0;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                        url('../images/bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            backdrop-filter: blur(1px);
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            opacity: 0.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* Social Links - Center Below Hero Description */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            color: white;
            font-size: 20px;
            text-decoration: none;
            animation: fadeInRight 0.8s ease-out;
            animation-fill-mode: both;
        }

        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Instagram Icon */
        .instagram-icon {
            background: #fff;
            color: #E4405F;
        }
        .instagram-icon:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
        }

        /* TikTok Icon */
        .tiktok-icon {
            background: #fff;
            color: #000;
        }
        .tiktok-icon:hover {
            background: #000;
            color: #ff0050;
            box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
        }

        /* YouTube Icon */
        .youtube-icon {
            background: #fff;
            color: #ff0000;
        }
        .youtube-icon:hover {
            background: #ff0000;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
        }

        /* Spotify Icon */
        .spotify-icon {
            background: #fff;
            color: #1db954;
        }
        .spotify-icon:hover {
            background: #1db954;
            color: white;
            box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
        }

        /* Animation Delays */
        .social-links a:nth-child(1) { animation-delay: 0.2s; }
        .social-links a:nth-child(2) { animation-delay: 0.4s; }
        .social-links a:nth-child(3) { animation-delay: 0.6s; }
        .social-links a:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .social-links {
                gap: 15px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        /* Biography */
        .bio-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .bio-image {
            text-align: center;
        }

        .bio-image img {
            width: 100%;
            max-width: 300px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .bio-image img:hover {
            transform: scale(1.05);
        }

        .bio-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .bio-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b0b0b0;
        }

        /* Discography */
        .discography-grid a {
            text-decoration: none;
            color: inherit;
        }

        .discography-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .album-card {
            background: rgba(20, 20, 20, 0.8);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            backdrop-filter: blur(10px);
        }

        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .album-year {
            font-size: 2rem;
            font-weight: 800;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .album-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #e0e0e0;
        }

        .album-type {
            color: #888;
            font-style: italic;
        }

        /* Performance Section */
        .performance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .video-card {
            background: rgba(20, 20, 20, 0.8);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            backdrop-filter: blur(10px);
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            background: #000;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
        }

        .video-description {
            color: #888;
            font-size: 0.9rem;
        }

        /* Gallery */
        .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        }

        .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        }

        .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
        transform: scale(1.05);
        }

        /* Responsif */
        @media (max-width: 1024px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        }

        @media (max-width: 600px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        }

        /* Contact */
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #667eea;
        }

        .contact-details {
            font-size: 1.2rem;
            line-height: 2;
            color: #b0b0b0;
        }

        .contact-details strong {
            color: #e0e0e0;
        }

        /* Contact Section */
        #contact {
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                        url('../images/bg-contact.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 5rem 0;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            backdrop-filter: blur(1px);
            z-index: 1;
        }

        .contact-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info {
            background: rgba(255,255,255,.2);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(102, 126, 234, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .contact-form-box {
        background: rgba(255, 255, 255, 0.05);
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid rgba(102, 126, 234, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(12px);
        }

        .contact-form-box label {
        display: block;
        font-weight: 600;
        color: #e0e0e0;
        margin-bottom: 6px;
        text-transform: uppercase;
        font-size: 0.85rem;
        }

        .contact-form-box input,
        .contact-form-box textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        font-size: 1rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
        }

        .contact-form-box input:focus,
        .contact-form-box textarea:focus {
        outline: none;
        border-color: #667eea;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
        }

        .submit-btn {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: #fff;
        padding: 0.9rem 2rem;
        border: none;
        border-radius: 10px;
        font-weight: bold;
        cursor: pointer;
        text-transform: uppercase;
        transition: all 0.3s ease;
        width: 100%;
        }

        .submit-btn:hover {
        background: linear-gradient(135deg, #5563e8, #643fa0);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        .success-message {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(72, 187, 120, 0.1);
        color: #48bb78;
        text-align: center;
        border: 1px solid rgba(72, 187, 120, 0.3);
        border-radius: 10px;
        display: none;
        }

        .success-message.show {
        display: block;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .bio-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .performance-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        /* Background Patterns */
        .section:nth-child(even) {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(25, 25, 25, 0.8) 100%);
        }