:root {
    --primary-purple: #6B21A8;
    --dark-purple: #581C87;
    --light-purple: #A855F7;
    --cyan: #06B6D4;
    --pink: #EC4899;
    --yellow: #FDE047;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2D1B69 0%, #11082A 50%, #8B5A8C 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #2D1B69 0%, #11082A 50%, #8B5A8C 100%);
    min-height: 100vh;
    position: relative;
}

.content-wrapper {
    max-width: 1800px;
    margin: 0 auto;
}

/* BACKGROUND SHAPES */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: mabur 8s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 5px,
        rgba(255, 255, 255, 0.1) 5px,
        rgba(255, 255, 255, 0.1) 10px
    );
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 80px;
    border-radius: 10px;
    animation-delay: -2s;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 3px,
        rgba(255, 255, 255, 0.1) 3px,
        rgba(255, 255, 255, 0.1) 6px
    );
    animation-delay: -4s;
}

.arrow-lines {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 60px;
    font-weight: bold;
}
.arrow-1 { top: 20%; right: 5%; transform: rotate(45deg); }
.arrow-2 { bottom: 30%; left: 2%; transform: rotate(-45deg); }


@media (min-width: 768px) {
    .content-wrapper {
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .content-wrapper {
        max-width: 1500px;
    }
}


@font-face {
  font-family: 'DS-Digital' ;
  src: url('./Asset/Font/DS-Digital/DS-DIGI.TTF') format('truetype');
  font-display: swap;
}

/* Tulisan2 */
@font-face {
  font-family: 'made_future_x';
  src: url('./Asset/Font/made_future_x/MADE\ Future\ X\ HEADER\ Regular\ PERSONAL\ USE.otf');
}

/* About Tenant */
@font-face {
  font-family: 'scream';
  src: url('./Asset/Font/scream/SCREAM__.TTF');
}

@font-face{
    font-family: 'cyberspace';
    src: url('./Asset/Font/cyberspace_raceway/Cyberspace\ Raceway\ Back.otf');
}

.header-bar {
    background: #ffffff;
    border-radius: 25px;
    padding: 1px 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bar span {
    font-family: 'made_future_x';
    color: #FF8000;
    font-weight: 800;
    font-size: xx-large;
} 

.logo-section {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    margin: 0;
}

.logo-bg img{
    margin-top: -130px;
    width: 1200px;
    height: 800px;
    margin-left: 30px;
    position: relative;
    
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px #00f5ff) drop-shadow(0 0 30px #00f5ff);
    
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px); /* naik */
    }
    100% {
        transform: translateY(0px);   /* balik turun */
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px #220044) drop-shadow(0 0 15px #220044);
    }
    100% {
        filter: drop-shadow(0 0 15px #220044) drop-shadow(0 0 25px #220044);
    }
}

.festival-badge {
  color: #ffffff;
  margin-top: 300px;
  text-align: center;
  display: inline-block;
  margin-bottom: 30px;
  font-size: clamp(2rem, 3rem, 4rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #20E9DF, 0 0 20px #20E9DF, 0 0 40px #20E9DF;
  margin-left:  100px;
}


.lineup-section {
  margin: 60px 0;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.lineup-text {
  font-size: 40px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
}

.buy-ticket-btn {
    background: #15A8E0;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    text-transform: uppercase;
    box-shadow: 0 0 40px #ffffff;
    display: inline-block;
    margin: 20px auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.buy-ticket-btn h1{
    font-family: 'cyberspace';
    font-size: 40px;
    background: linear-gradient(to right, #E353B6, #F47C2E);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.star-decoration {
    position: absolute;
    color: var(--yellow);
    font-size: 24px;
}

.star-1 {
    top: 35%;
    left: 10%;
}

.star-2 {
    top: 35%;
    right: 10%;
}

.star-3 {
    top: 42%;
    left: 5%;
}

.star-4 {
    top: 42%;
    right: 5%;
}

.cta-text {
    font-family: 'made_future_x';
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-container {
    background: #7505BA;
    margin-left: 100px;
    width: 730px;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    border: #8FD4ED solid 10px;
    border-radius: 40px;
}


.countdown-display {
    font-family: 'DS-Digital';
    font-size: 70px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 8px;
    text-shadow: 0 0 20px #ff2fff;
}

.countdown-display span {
    width: 80px; /* lebar tiap angka */
    display: inline-block;
    text-align: center;
}





.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;;
    width: 1000px;
    height: 200px;
    margin: 20px 0;
    background-color: #20E9DF;
    border: #7606ba solid 3px;
    border-radius: 40px;
}

.location-info .bi{
    font-size: 70px;
    color: #000000;
}

.location-info span{
    font-family:'Poppins',sans-serif;
        font-size: 40px;
        color: #ffffff;
        text-shadow: 0 0 10px #000000;
}

.playlist-section {
    text-align: center;
    margin: 40px 0;
}

.playlist-title {
    font-family: 'scream', sans-serif;
    font-size: 58px;
    margin-bottom: 10px;
    text-shadow: 
    2px 0px 0 #20E9DF,
    -2px 0px 0 #20E9DF,
    0px -2px 0 #20E9DF,
    0px 2px 0 #20E9DF,
    -9px 6px 0 #8C11B9,  /* Layer 1: Sharp cyan shadow */
    -10px 10px 0 #20E9DF;  /* Layer 2: Darker pink shadow behind the cyan */
}


.playlist-subtitle {
    font-size: 50px;
    font-family: 'Made_future_x';
    color: #ffffff;
    text-shadow: 0 0 10px #20E9DF, 0 0 20px #20E9DF, 0 0 40px #20E9DF;
    margin-bottom: 20px;
}

.playlist-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}


.rounded-shape{
    margin-left: 400px;
}

.rounded-shape h1{
    padding: 8px 20px;
    display: flex;
    align-items: center;
    font-family: 'made_future_x';
    margin-top: 10px;
    margin-left: 40px;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
}

.tenant-card {
    margin-left: 230px;
}

.tenant-image {
    height: 150px;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
}

.tanant-gambar{
    position: absolute;
    margin-top: -470px;
    margin-left: 70px;
}

.tenant-button{
    margin-left: 120px;
    margin-top: 300px;
    width: 500px;
    height: 100px;
    font-size: 50px;
    background: linear-gradient(90deg,#CAA6FA, #20E9DF);
    border-radius: 40px;
    border: 0;
    color: #ffffff;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nostalgic-section {
    background: black;
    border-radius: 20px;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
    position: relative;
    border: 2px solid var(--cyan);
}

.nostalgic-logo {
    width: 100%;
    height: 120px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nostalgic-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.section-box {
      background: linear-gradient(145deg, #1a002a, #320046);
      border: 2px solid #ff00cc;
      border-radius: 16px;
      padding: 30px 20px 40px;
      margin: 40px auto;
      max-width: 1200px;
      box-shadow: 0 0 25px rgba(255, 0, 204, 0.5);
    }

    .section-title {
      text-align: center;
      padding: 5px 10px;
      font-size: 2.3rem;
      font-weight: bold;
      margin-bottom: 20px;
      text-transform: uppercase;
      text-shadow: 0 0 15px #ff00cc, 0 0 30px #ff00cc;
      letter-spacing: 2px;
    }

    .sponsor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* lebih lebar */
      gap: 0px; /* lebih dempet */
      justify-items: center;
      align-items: center;
    }

    .sponsor-item img {
      width: 100%;
      height: auto;
      max-height: 250px; /* lebih besar */
      object-fit: contain;
      filter: drop-shadow(0 0 15px #ff00cc);
      animation: float 4s ease-in-out infinite, pulseShadow 2.5s infinite alternate;
      transition: transform 0.3s ease;
    }

    .sponsor-item img:hover {
      transform: scale(1.1);
    }

    /* Sponsor utama lebih besar */
    .sponsor-main img {
      max-height: 180px;
      filter: drop-shadow(0 0 25px #ff00cc) drop-shadow(0 0 40px #ff00ff);
      animation: float 3s ease-in-out infinite, pulseShadowBest 2s infinite alternate;
    }

    /* Animasi */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes pulseShadow {
      from { filter: drop-shadow(0 0 10px #ff00cc); }
      to { filter: drop-shadow(0 0 20px #ff00ff); }
    }

    @keyframes pulseShadowBest {
      from { filter: drop-shadow(0 0 20px #ff00cc) drop-shadow(0 0 40px #ff00ff); }
      to { filter: drop-shadow(0 0 40px #ff00ff) drop-shadow(0 0 70px #ff00ff); }
    }

    /* Responsive */
    @media(max-width: 900px) {
      .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
      }
      .sponsor-grid {
        gap: 8px;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
    }

    @media(max-width: 600px) {
      .sponsor-item img {
        max-height: 100px;
      }
      .sponsor-main img {
        max-height: 130px;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .section-box {
        padding: 20px 15px 30px;
        margin: 25px 15px;
      }
    }


.social-icon {
    width: 45px; /* lebih proporsional */
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* lebih lembut */
    margin-left: 300px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* transisi lebih smooth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* efek depth */
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.1); /* hover lebih dinamis */
    color: var(--cyan);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* glow ringan */
}



.carousel {
      position: relative;   /* biar bisa ditaruh bebas */
  top: 40%;             /* patokan tengah vertical */
  left: 60%;            /* patokan tengah horizontal */
  transform: translate(-70%, -50%);
      width: 800px;
      height: 450px;
      margin-top: 300px;
      margin-left: 50px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .carousel img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0;
      animation: fade 10s infinite;
    }

    /* urutan delay biar gantian muncul */
    .carousel img:nth-child(1) { animation-delay: 0s; }
    .carousel img:nth-child(2) { animation-delay: 4s; }
    .carousel img:nth-child(3) { animation-delay: 8s; }

    @keyframes fade {
      0%   { opacity: 0; }
      5%   { opacity: 1; }
      20%  { opacity: 1; }
      25%  { opacity: 0; }
      100% { opacity: 0; }
    }

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }

    .festival-title {
        font-size: 28px;
    }

    .countdown-display {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .info-text {
        font-size: 9px;
    }

    .buy-ticket-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (min-width: 768px) {
    .logo-container {
        width: 150px;
        height: 150px;
    }

    .logo-icon {
        font-size: 80px;
    }

    .festival-title {
        font-size: 42px;
    }

    .festival-subtitle {
        font-size: 24px;
    }

    .info-text {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .buy-ticket-btn {
        font-size: 24px;
        padding: 18px 50px;
    }

    .countdown-display {
        font-size: 48px;
    }

    .playlist-title {
        font-size: 36px;
    }

    .tenant-image {
        height: 200px;
    }

    .nostalgic-text {
        font-size: 32px;
    }

    .sponsor-card {
        min-height: 250px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .header-bar {
        padding: 12px 30px;
        margin-bottom: 40px;
    }

    .header-bar span {
        font-size: 36px;
    }

    .logo-container {
        width: 180px;
        height: 180px;
    }

    .logo-icon {
        font-size: 100px;
    }

    .festival-title {
        font-size: 56px;
        margin-bottom: 10px;
    }

    .festival-subtitle {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .info-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 50px;
    }

    .buy-ticket-btn {
        font-size: 28px;
        padding: 20px 60px;
        margin: 30px auto;
    }

    .cta-text {
        font-size: 90px;
        margin: 40px 0 15px;
    }

    .countdown-container {
        padding: 30px;
        margin: 30px 0;
        margin-left: 300px;
    }

    .countdown-display {
        font-size: 170px;
        letter-spacing: 12px;
    }

    .location-info {
        font-size: 18px;
        gap: 15px;
        margin: 30px 0;
        margin-left: 160px;
    }

    .playlist-section {
        margin: 60px 0;
    }

    .playlist-title {
        font-size: 120px;
    }

    .playlist-subtitle {
        font-size: 100px;
    }

    .playlist-logo {
        width: 80px;
        height: 80px;
    }

    .spotify-icon {
        font-size: 48px;
    }

    .playlist-name {
        font-size: 14px;
    }

    .tenant-section,
    .sponsor-section {
        margin: 50px 0;
    }

    .section-label {
        font-size: 16px;
        padding: 10px 25px;
        margin-bottom: 30px;
    }

    .rounded-shape{
        margin-left: 270px;
    }
    

    .tenant-card {
        padding: 30px;
    }

    .tenant-gambar{
        margin-left: 100px;
    }

    .tenant-image {
        height: 250px;
        margin-bottom: 20px;
    }

    .tenant-label {
        font-size: 14px;
        padding: 8px 20px;
    }

    .tenant-name {
        font-size: 22px;
        margin-top: 15px;
    }

    .nostalgic-section {
        padding: 30px;
        margin-left: 270px;
        width: 700px;
        height: 500px;
    }

    .nostalgic-logo {
        height: 150px;
    }

    .nostalgic-text {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .sponsor-label {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sponsor-card {
        padding: 40px;
        min-height: 300px;
    }

    .sponsor-logo {
        height: 200px;
    }

    .social-icons {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 15px;
    }

    .star-decoration {
        font-size: 32px;
    }

    .star-1 {
        top: 32%;
        left: 15%;
    }

    .star-2 {
        top: 32%;
        right: 15%;
    }

    .star-3 {
        top: 40%;
        left: 10%;
    }

    .star-4 {
        top: 40%;
        right: 10%;
    }
}

/* Desktop specific layout adjustments */
@media (min-width: 992px) {
    .desktop-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .full-width {
        grid-column: 1 / -1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}



/* ================= MOBILE LAYOUT ================= */
@media (max-width: 480px) {
  .main-container {
    padding: 10px;
  }

  .logo-bg img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: -50px;
  }

  .festival-badge {
    font-size: 1.2rem;
    margin: 10px auto;
    text-align: center;
    margin-left: 0;
    margin-top: -300px;
      
  }
  
  .carousel {
      position: relative;   /* biar bisa ditaruh bebas */
  top: 40%;             /* patokan tengah vertical */
  left: 60%;            /* patokan tengah horizontal */
  transform: translate(-70%, -30%);
      width: 400px;
      height: 400px;
      margin-top: 100px;
      margin-left: 50px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .carousel img {
      position: absolute;
      width: 90%;
      height: 90%;
      object-fit: contain;
      opacity: 0;
      animation: fade 15s infinite;
    }

  
  
.lineup-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}

.buy-ticket-btn {
    background: #15A8E0;
    border: none;
    border-radius: 20px;
    padding: 5px 20px;
    text-transform: uppercase;
    box-shadow: 0 0 20px #ffffff;
    display: inline-block;
    margin: 0px auto;
    cursor: pointer;
    overflow: hidden;          /* patokan tengah horizontal */
 position: relative;   /* biar bisa ditaruh bebas */
  top: 0%;             /* patokan tengah vertical */
  left: 0%;            /* patokan tengah horizontal */
  transform: translate(50%, 100%);
     
}

.buy-ticket-btn h1{
    font-family: 'cyberspace';
    font-size: 5px;
    background: linear-gradient(to right, #E353B6, #F47C2E);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-family: 'made_future_x';
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
}

  .countdown-container {
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    border: 5px solid #8FD4ED;
  }

  .countdown-display {
    font-size: 100px;
    letter-spacing: 3px;
  }
  

  .location-info {
    flex-direction: flex;
    width: 75%;
    height: auto;
    padding: 20px;
    margin: 20px auto;
    text-align: center;
  }

  .location-info span {
    font-size: 20px;
  }

.location-info .bi{
    font-size: 20px;
    color: #000000;
}

.location-info span{
    font-family:'Poppins',sans-serif;
        font-size: 20px;
        color: #ffffff;
        text-shadow: 0 0 10px #000000;
}




  .playlist-title {
    font-size: 32px;
  }

  .playlist-subtitle {
    font-size: 24px;
  }

  .rounded-shape {
    margin: 0 auto;
    text-align: center;
  }

  .rounded-shape h1 {
    font-size: 32px;
    margin: 10px auto;
    position: relative;
  }

  .tenant-card {
    margin: 20px auto;
    text-align: center;
  }

  .tenant-button {
    width: 90%;
    height: auto;
    font-size: 20px;
    padding: 15px;
    margin: 20px auto;
  }

  .nostalgic-section {
    margin: 40px auto;
    width: 100%;
    height: auto;
  }

  .nostalgic-text {
    font-size: 20px;
  }

  .sponsor-card {
    min-height: 150px;
    padding: 20px;
  }

  .sponsor-logo {
    height: 100px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .buy-ticket-btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .buy-ticket-btn h1 {
    font-size: 24px;
  }
}

@keyframes mabur {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
