* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4a6d6f 0%, #3d5d5f 50%, #2d4d4f 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    text-align: center;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hero {
    text-align: center;
    padding: clamp(3rem, 8vw, 6rem) 1rem;
    animation: fadeIn 1s ease-in;
    margin-top: 50px; /* Adjust based on header height */
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: slideDown 1s ease-out;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.organizer-info {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin: 2rem auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.organizer-label {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.organizer-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.organizer-company {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.event-info {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    margin: 2.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    width: 100%;
}

.flyer-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin: 3rem 0;
}

.flyer-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.flyer-card.visible {
    animation: slideUp 0.6s ease forwards;
}

.flyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.flyer-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.flyer-card:hover img {
    transform: scale(1.03);
}

.flyer-card h3 {
    margin-top: 1.5rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #FFD600;
}

.flyer-card p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-top: 0.8rem;
}

/* Route Map */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 3rem 0;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.roadmap-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #FFD600;
    margin-bottom: 1.5rem;
}

.roadmap-image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.roadmap-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.roadmap-image-container:hover img {
    transform: scale(1.05);
}

.roadmap-zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD600;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roadmap-image-container:hover .roadmap-zoom-icon {
    opacity: 1;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 214, 0, 0.5);
}

/* Modal untuk zoom gambar */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFD600;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #FFC107;
    transform: scale(1.2);
}

.ticket-section {
    margin: 4rem 0;
}

.ticket-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 3rem 0;
}

.ticket-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.ticket-card.visible {
    animation: zoomIn 0.6s ease forwards;
}

.ticket-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ticket-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticket-card:hover .ticket-overlay {
    opacity: 1;
}

.ticket-overlay span {
    color: #FFD600;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.section {
    margin: clamp(3rem, 8vw, 6rem) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #FFD600;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 2.5rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.price-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.price-card:hover {
    border-color: #FFD600;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

.price-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1.2rem;
    color: #FFD600;
}

.price-card p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0.5rem 0;
}

.price {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: bold;
    margin: 1.2rem 0;
    color: #76FF03;
}

/* Button Styles for Price Cards */
.ticket-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    margin-top: 1.5rem;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.6);
    background: linear-gradient(45deg, #FFC107, #FFD600);
}

.ticket-button:active {
    transform: translateY(-1px);
}

.lineup {
    max-width: 900px;
    margin: 0 auto;
}

.lineup-day {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 3vw, 3rem);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.lineup-day:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lineup-day h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: #FFD600;
    border-bottom: 2px solid #FFD600;
    padding-bottom: 1rem;
    text-align: center;
}

.lineup-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.lineup-column ul {
    list-style: none;
}

.lineup-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    transition: all 0.3s ease;
}

.lineup-column li:hover {
    padding-left: 15px;
    color: #FFD600;
    border-left: 3px solid #FFD600;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin: 2.5rem 0;
}

.community-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #FFD600;
}

.community-card p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    line-height: 1.4;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
    margin-top: 5rem;
    border-top: 3px solid #FFD600;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FFD600;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a:hover {
    color: #FFD600;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0;
}

.social-links a:hover {
    background: #FFD600;
    transform: translateY(-5px) scale(1.1);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin: 0.5rem 0;
}

/* ========== FLOATING BUTTONS - FIXED VERSION ========== */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(45deg, #FFD600, #FFC107) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 0 !important;
    transform: translateY(100px) translateZ(0) !important;
    transition: all 0.3s ease !important;
    z-index: 999999 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4) !important;
    font-size: 1.3rem !important;
    color: #2d4d4f !important;
    pointer-events: auto !important;
    will-change: transform !important;
}

.scroll-to-top.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.scroll-to-top:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.6) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: pulse-whatsapp 2s infinite !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7) !important;
}

.whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    fill: white !important;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-tooltip {
    position: absolute !important;
    right: 70px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1 !important;
}

/* Ticket Floating Buttons Container */
.ticket-buttons-container {
    position: fixed !important;
    bottom: 160px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

.ticket-float {
    min-width: 140px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    color: white !important;
}

.ticket-float:hover {
    transform: translateX(-5px) scale(1.05) !important;
}

.ticket-float svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

/* Concert Ticket Button */
.ticket-concert {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%) !important;
    animation: pulse-concert 2s infinite !important;
}

.ticket-concert svg {
    fill: white !important;
}

.ticket-concert:hover {
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.7) !important;
}

@keyframes pulse-concert {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(255, 107, 107, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(255, 107, 107, 0.8);
    }
}

/* Run Ticket Button */
.ticket-run {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    animation: pulse-run 2s infinite !important;
}

.ticket-run svg {
    fill: white !important;
}

.ticket-run:hover {
    box-shadow: 0 8px 35px rgba(76, 175, 80, 0.7) !important;
}

@keyframes pulse-run {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(76, 175, 80, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(76, 175, 80, 0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.pulse-animation {
    animation: pulse 2.5s ease-in-out infinite;
}

/* See More Button Styles */
.about-content {
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.see-more-btn {
    display: none;
    margin: 1.5rem auto 0;
    padding: 12px 30px;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 214, 0, 0.5);
}

.see-more-btn:active {
    transform: translateY(-1px);
}

#arrowIcon {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

/* Media Partner Styles - Horizontal Scroll */
.media-partner-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: clamp(1rem, 2vw, 2rem);
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: #FFD600 rgba(255, 255, 255, 0.1);
}

.media-partner-grid::-webkit-scrollbar {
    height: 10px;
}

.media-partner-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.media-partner-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FFD600, #FFC107);
    border-radius: 10px;
}

.media-partner-grid::-webkit-scrollbar-thumb:hover {
    background: #FFD600;
}

.media-partner-item {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.media-partner-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.media-partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.media-partner-item:hover img {
    transform: scale(1.05);
}

/* Prize Section Styles */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin: 3rem 0;
}

.prize-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    border: 2px solid rgba(255, 214, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '🏆';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 214, 0, 0.4);
    border-color: #FFD600;
}

.prize-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #FFD600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-image-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.prize-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.prize-image-container:hover img {
    transform: scale(1.05);
}

.prize-zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD600;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prize-image-container:hover .prize-zoom-icon {
    opacity: 1;
}

.prize-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    border-radius: 20px;
    font-weight: bold;
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.prize-highlight {
    background: rgba(255, 214, 0, 0.15);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.prize-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.6;
    margin: 0.3rem 0;
}

/* Doorprize Special Card */
.doorprize-card {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 2px solid #FFD600;
}

.doorprize-card::before {
    content: '🎁';
}

/* ========== NAVBAR STYLES ========== */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-menu {
    position: absolute;
    right: 20px;
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s ease;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #FFD600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(13px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-13px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    transition: transform 0.4s ease;
    transform: translateX(100%);
    z-index: 100;
    overflow-y: auto;
    display: none;
}

.nav-menu.active {
    transform: translateX(0);
    display: block;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin-bottom: 1.5rem;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #FFD600;
    padding-left: 10px;
    border-left: 3px solid #FFD600;
}

.nav-ticket-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    border: none;
    margin-top: 1rem;
}

.nav-ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 214, 0, 0.5);
    padding-left: 25px;
    border: none;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(45deg, #FFD600, #FFC107);
    color: #2d4d4f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.6);
}

.hero-btn.concert {
    background: linear-gradient(45deg, #FF6B6B, #FF5252);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    color: white;
}

.hero-btn.concert:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.hero-btn.run {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    color: white;
}

.hero-btn.run:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

/* ========== BLINKING ANIMATION FOR HERO BUTTONS ========== */
@keyframes blink-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.9), 0 0 25px rgba(76, 175, 80, 0.6);
        transform: scale(1.05);
    }
}

@keyframes blink-glow-concert {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.9), 0 0 25px rgba(76, 175, 80, 0.6);
        transform: scale(1.05);
    }
}

/* Apply blinking animation to hero buttons */
.hero-btn.concert {
    animation: blink-glow-concert 1.5s ease-in-out infinite;
}

.hero-btn.run {
    animation: blink-glow 1.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Pause animation saat hover */
.hero-btn:hover {
    animation-play-state: paused;
}

/* ========== ARTIST LINEUP - CAROUSEL ========== */
.artist-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.scroll-hint {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #FFD600;
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.artist-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: #FFD600 rgba(255, 255, 255, 0.1);
}

.artist-track::-webkit-scrollbar {
    height: 10px;
}

.artist-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.artist-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FFD600, #FFC107);
    border-radius: 10px;
}

.artist-track::-webkit-scrollbar-thumb:hover {
    background: #FFD600;
}

.artist-slide {
    min-width: 280px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    border: 2px solid rgba(255, 214, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.artist-slide:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #FFD600;
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.5);
    z-index: 10;
}

.artist-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FFD600 0%, #FFC107 100%);
}

.artist-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-slide:hover .artist-image-container img {
    transform: scale(1.1);
}

/* Placeholder jika tidak ada gambar */
.artist-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: linear-gradient(135deg, #FFD600 0%, #FFC107 100%);
}

/* Artist Name Overlay - Di bawah gambar */
.artist-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.artist-slide:hover .artist-name-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 70%, transparent 100%);
}

.artist-name-overlay .name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .lineup-columns {
        gap: clamp(1rem, 3vw, 2rem);
    }

    .lineup-column li:hover {
        padding-left: 10px;
    }

    /* See More Button */
    .see-more-btn {
        display: block;
    }

    .about-content {
        max-height: 200px;
        overflow: hidden;
        position: relative;
    }

    .about-content::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12));
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .about-content.expanded {
        max-height: 2000px;
    }

    .about-content.expanded::after {
        opacity: 0;
    }

    .ticket-button {
        min-height: 44px;
        padding: 14px 20px;
    }

    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }

    .scroll-to-top {
        min-width: 48px !important;
        min-height: 48px !important;
        transform: translateZ(0) !important;
    }

    .organizer-company,
    .organizer-name {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .price-card h3 {
        hyphens: auto;
    }

    .lineup-column li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .nav-menu {
        width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .artist-slide {
        min-width: 220px;
        height: 350px;
    }

    .artist-name-overlay .name {
        font-size: 1.2rem;
    }

    .artist-name-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        bottom: 120px !important;
        right: 20px !important;
        transform: translateZ(0) !important;
    }

    .ticket-buttons-container {
        bottom: 180px !important;
        right: 20px !important;
        transform: translateZ(0) !important;
    }

    .ticket-float {
        min-width: 120px !important;
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }

    .ticket-float svg {
        width: 20px !important;
        height: 20px !important;
    }

    .media-partner-item {
        width: 180px;
        height: 180px;
        padding: 12px;
        flex-shrink: 0;
    }

    .media-partner-grid {
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .prize-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {

    .flyer-section,
    .ticket-images,
    .price-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .lineup-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logo {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .nav-menu {
        width: 100%;
    }

    .artist-slide {
        min-width: 200px;
        height: 320px;
    }

    .artist-name-overlay .name {
        font-size: 1.1rem;
    }

    .scroll-to-top {
        width: 48px !important;
        height: 48px !important;
        bottom: 30px !important;
        right: 15px !important;
        transform: translateZ(0) !important;
    }

    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        bottom: 120px !important;
        right: 15px !important;
        transform: translateZ(0) !important;
    }

    .ticket-buttons-container {
        bottom: 180px !important;
        right: 15px !important;
        transform: translateZ(0) !important;
    }

    .ticket-float {
        min-width: 110px !important;
        padding: 9px 10px !important;
        font-size: 0.8rem !important;
    }

    .media-partner-item {
        width: 80px;
        height: 80px;
        padding: 10px;
        flex-shrink: 0;
    }

    .media-partner-grid {
        gap: 1rem;
        padding: 1rem;
    }

    .prize-grid {
        grid-template-columns: 1fr;
    }
}

/* Size Chart Section with smaller gap */
.size-chart-section {
    gap: 1rem;
}