@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700;800&display=swap');

:root {
            --primary-purple: #6a0dad;
            --secondary-purple: #9b59b6;
            --light-purple: #d8bfd8;
            --dark-purple: #4b0082;
            --accent-purple: #8a2be2;
            --gradient-purple: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
            --neon-purple: #c724f9;
            --glow-purple: 0 0 15px rgba(199, 36, 249, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #0f0c29;
            background-image: linear-gradient(to bottom, #0f0c29, #1d1a40, #302b63, #24243e);
            color: #f8f9fa;
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .header-section {
            padding: 150px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at center, rgba(106, 13, 173, 0.2) 0%, rgba(10, 5, 30, 0.8) 70%);
            background-image: url('../img/bg-kbmk-wp.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            opacity: 0.4;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            background: rgba(26, 20, 56, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .header-section h1 {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 0 0 20px rgba(199, 36, 249, 0.8);
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            background: linear-gradient(to right, #e0aaff, #9d4edd, #5a189a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleGlow 3s infinite alternate;
        }

        /* Styling untuk modal peta */
        .modal-content {
            background: rgba(26, 20, 56, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid var(--accent-purple);
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
            color: #f0f0f0;
        }
        
        .modal-header {
            border-bottom: 1px solid rgba(138, 43, 226, 0.3);
            background: var(--gradient-purple);
        }
        
        .modal-title {
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .map-container {
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 15px;
            border: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        #map {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }
        
        .location-info {
            background: rgba(74, 20, 140, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .info-item i {
            color: var(--accent-purple);
            font-size: 1.2rem;
            margin-right: 10px;
            width: 25px;
            text-align: center;
        }
        
        .directions-btn {
            background: var(--gradient-purple);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .directions-btn i {
            margin-right: 8px;
        }
        
        .directions-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106, 13, 173, 0.5);
        }
        
        @keyframes titleGlow {
            0% { text-shadow: 0 0 10px rgba(199, 36, 249, 0.5); }
            100% { text-shadow: 0 0 30px rgba(199, 36, 249, 0.9), 0 0 50px rgba(199, 36, 249, 0.6); }
        }
        
        .header-section p.lead {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            line-height: 1.7;
            /* font-family: sans-serif; */
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 1.5rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gradient-purple);
            border-radius: 5px;
            box-shadow: var(--glow-purple);
        }
        
        .card {
            background: rgba(26, 20, 56, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.3);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            color: #f0f0f0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(106, 13, 173, 0.5);
            border-color: var(--accent-purple);
        }
        
        .card-header {
            background: var(--gradient-purple);
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
            padding: 1.2rem 1.8rem;
            border-bottom: 1px solid rgba(138, 43, 226, 0.5);
            letter-spacing: 1px;
        }
        
        .card-body {
            padding: 1.8rem;
        }
        
        .btn-purple {
            background: var(--gradient-purple);
            color: white;
            border: none;
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 5px 20px rgba(106, 13, 173, 0.5);
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
        }
        
        .btn-purple::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-purple:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(106, 13, 173, 0.8);
            color: white;
        }
        
        .btn-purple:hover::before {
            left: 100%;
        }
        
        .btn-purple:active {
            transform: translateY(1px);
        }
        
        .vip-tag {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(45deg, #ffd700, #ff8c00);
            color: #000;
            font-weight: bold;
            padding: 0.6rem 2rem;
            transform: translate(30%, -30%) rotate(45deg);
            transform-origin: bottom left;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .feature-list li {
            margin-bottom: 0.9rem;
            padding-left: 1.8rem;
            position: relative;
            font-size: 1.1rem;
        }
        
        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-purple);
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .highlight-card {
            background: rgba(74, 20, 140, 0.3);
            border: 2px solid var(--accent-purple);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3.5rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
            animation: pulseGlow 3s infinite alternate;
        }
        
        @keyframes pulseGlow {
            0% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.3); }
            100% { box-shadow: 0 0 40px rgba(138, 43, 226, 0.6), 0 0 60px rgba(138, 43, 226, 0.2); }
        }
        
        .highlight-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
            z-index: -1;
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .countdown-item {
            background: rgba(26, 20, 56, 0.8);
            border-radius: 15px;
            padding: 1.5rem 1rem;
            min-width: 100px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .countdown-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-purple);
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-purple);
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #d8bfd8;
        }
        
        
        
        .footer {
            background: linear-gradient(to top, rgba(10, 5, 30, 0.95), rgba(26, 20, 56, 0.9));
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            position: relative;
            border-top: 1px solid rgba(138, 43, 226, 0.3);
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-purple);
            box-shadow: var(--glow-purple);
        }
        
        .artist-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .artist-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .artist-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .artist-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        .artist-card {
            background: rgba(26, 20, 56, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
        }
        
        .artist-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(106, 13, 173, 0.5);
            border-color: var(--accent-purple);
            background: rgba(74, 20, 140, 0.5);
        }
        
        .artist-image-container {
            position: relative;
            margin-bottom: 2rem;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--accent-purple);
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.7);
            transition: all 0.4s ease;
        }
        
        .artist-card:hover .artist-image-container {
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(199, 36, 249, 0.8);
            border-color: var(--neon-purple);
        }
        
        .artist-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .artist-card:hover .artist-image {
            transform: scale(1.1);
        }
        
        .artist-info {
            text-align: center;
            width: 100%;
        }
        
        .artist-name {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(199, 36, 249, 0.5);
        }
        
        .artist-genre {
            font-size: 1.4rem;
            color: var(--light-purple);
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .artist-bio {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: #d8bfd8;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-purple);
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(106, 13, 173, 0.6);
            background: var(--accent-purple);
        }
        
        /* Efek khusus untuk bintang tamu */
        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #ffd700, #ff8c00);
            color: #000;
            font-weight: bold;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }
        
        /* Responsiveness */
        @media (max-width: 1200px) {
            .artist-grid {
                gap: 3rem;
            }
            
            .artist-image-container {
                width: 240px;
                height: 240px;
            }
        }
        
        @media (max-width: 992px) {
            .artist-section {
                padding: 4rem 0;
            }
            
            .artist-name {
                font-size: 2rem;
            }
            
            .artist-genre {
                font-size: 1.3rem;
            }
            
            .artist-image-container {
                width: 220px;
                height: 220px;
            }
        }
        
        @media (max-width: 768px) {
            .artist-grid {
                gap: 3rem;
                flex-direction: column;
                align-items: center;
            }
            
            .artist-card {
                padding: 2rem;
                max-width: 90%;
            }
            
            .artist-image-container {
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .artist-section {
                padding: 3rem 0;
            }
            
            .artist-card {
                padding: 1.5rem;
            }
            
            .artist-image-container {
                width: 180px;
                height: 180px;
            }
            
            .artist-name {
                font-size: 1.8rem;
            }
            
            .artist-genre {
                font-size: 1.2rem;
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(199, 36, 249, 0.7);
            }
            70% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(199, 36, 249, 0);
            }
            100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(199, 36, 249, 0);
            }
        }
        
        .stage-design {
            position: relative;
            height: 250px;
            margin: 4rem auto;
            width: 90%;
            max-width: 900px;
        }
        
        .stage {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 70px;
            background: var(--gradient-purple);
            border-radius: 15px 15px 0 0;
            box-shadow: 0 0 40px rgba(138, 43, 226, 0.7);
        }
        
        .stage-lights {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: space-around;
        }
        
        .light {
            width: 25px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50% 50% 0 0;
            animation: lightEffect 3s infinite;
            animation-delay: calc(var(--delay) * 0.3s);
            box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-purple);
        }
        
        @keyframes lightEffect {
            0%, 100% { 
                opacity: 0.4;
                box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-purple);
            }
            50% { 
                opacity: 1;
                box-shadow: 0 0 30px #fff, 0 0 50px var(--neon-purple);
            }
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .logo {
            width: 120px;
            height: 120px;
            background: var(--gradient-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.7);
            animation: logoRotate 20s linear infinite;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-align: center;
            line-height: 1.2;
        }
        
        @keyframes logoRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
        }
        
        .info-content h5 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }
        
        .gs {
           padding-top: 5rem; 
        }
        
        .info-content p {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10;
        }
        
        .alert-custom {
            background: rgba(26, 20, 56, 0.7);
            border: 1px solid rgba(138, 43, 226, 0.3);
            border-radius: 10px;
            color: #d8bfd8;
            font-size: 1.1rem;
        }
        
        @media (max-width: 992px) {
            .header-section h1 { font-size: 3rem; }
            .header-section p.lead { font-size: 1.3rem; }
            .section-title { font-size: 2.3rem; }
        }
        
        @media (max-width: 768px) {
            .header-section { padding: 100px 0; }
            .header-section h1 { font-size: 2.5rem; }
            .header-section p.lead { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .countdown { gap: 1rem; }
            .countdown-item { min-width: 80px; padding: 1.2rem 0.5rem; }
            .countdown-number { font-size: 2rem; }
            .info-icon { width: 50px; height: 50px; margin-right: 1rem; }
            .info-content h5 { font-size: 1.1rem; }
            .info-content p { font-size: 1rem; }
            .highlight-card { padding: 1.8rem; }
        }
        
        @media (max-width: 576px) {
            .header-section h1 { font-size: 2rem; }
            .countdown { flex-wrap: wrap; }
            .countdown-item { min-width: 70px; padding: 1rem 0.5rem; }
            .countdown-number { font-size: 1.8rem; }
            .artist-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1.5rem; }
        }