    :root {
      --bg-dark: #0a0b0e;
      --bg-card: #12141a;
      --accent-color: #c9a86a; /* Gold Accent */
      --accent-hover: #e5c382;
      --text-light: #f4f4f6;
      --text-muted: #9499a6;
      --font-main: 'Roboto Mono', monospace;
    }

    body {
      font-family: var(--font-main);
      background-color: var(--bg-dark);
      color: var(--text-light);
      overflow-x: hidden;
      letter-spacing: -0.5px;
    }

    h1, h2, h3, h4, h5, .brand-logo {
      font-family: var(--font-main);
      font-weight: 400;
      letter-spacing: -1px;
    }

    .justify {text-align: justify;}

    /* Parallax Utility Class */
    .parallax-bg {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(180deg, rgba(10,11,14,0.3) 0%, rgba(10,11,14,0.92) 100%);
    }

    /* Hero Section Desktop */
    .hero-section {
      height: 100vh;
      min-height: 650px;
      background-image: url('images/therain.jpg');
      display: flex;
      align-items: flex-end;
      padding-bottom: 70px;
      transition: background-image 0.3s ease;
    }

    /* Hero Section Mobile Response (max-width: 768px) */
    @media (max-width: 768px) {
      .hero-section {
        background-image: url('images/main-mobile.jpg');
        background-attachment: scroll;
        background-position: center top;
        padding-bottom: 50px;
      }
      .brand-logo {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
      }
    }

    .brand-logo {
      font-size: clamp(3.2rem, 7vw, 6rem);
      line-height: 0.88;
      color: var(--text-light);
      text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
      margin-bottom: 0;
      font-style: italic;
    }

    .subtitle-tag {
      font-family: var(--font-main);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.85rem;
      color: var(--accent-color);
      font-weight: 600;
    }

    /* Section Styling */
    section {
      padding: 100px 0;
    }
    
    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      position: relative;
      margin-bottom: 40px;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      width: 50px;
      height: 4px;
      background-color: var(--accent-color);
      position: absolute;
      bottom: -10px;
      left: 0;
    }

    /* Card Customization */
    .custom-card {
      background-color: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 0px;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
      overflow: hidden;
    }
    
    .custom-card:hover {
      transform: translateY(-6px);
      box-shadow: 8px 8px 0px rgba(201, 168, 106, 0.3);
      border-color: var(--accent-color);
    }

    /* -------------------------------------------------------------
       SECTION 1: Full-Screen Video Background
    ------------------------------------------------------------- */
    .video-hero-section {
      position: relative;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding-bottom: 80px;
    }

    .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .video-hero-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(180deg, rgba(10,11,14,0.2) 0%, rgba(10,11,14,0.85) 100%);
      z-index: 1;
    }

/* -------------------------------------------------------------
       SECTION: Full-Screen Background dengan 4 Column Caption (Bottom Fix)
    ------------------------------------------------------------- */

    /* Memaksa wadah caption menempel tepat di bottom layar */
    .caption-bottom-wrapper {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding-bottom: 50px; /* Jarak aman dari batas paling bawah layar */
      z-index: 2;
    }

    .caption-col {
      border-left: 2px solid var(--accent-color); /* Garis aksen vertikal ala monospaced */
      padding-left: 20px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .caption-col:hover {
      transform: translateY(-5px);
      border-color: #ffffff;
    }

    .caption-line-1 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 4px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .caption-line-2 {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0;
      line-height: 1.3;
    }
    
    /* -------------------------------------------------------------
       SECTION 2: Full-Screen Image Accordion
    ------------------------------------------------------------- */
    .accordion-section {
      padding: 0;
      height: 100vh;
      width: 100%;
      background-color: var(--bg-dark);
    }

    .image-accordion {
      display: flex;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .accordion-panel {
      position: relative;
      flex: 1;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      cursor: pointer;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .accordion-panel:last-child {
      border-right: none;
    }

    .accordion-panel-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(180deg, rgba(10,11,14,0.3) 0%, rgba(10,11,14,0.9) 100%);
      transition: background 0.4s ease;
    }

/* -------------------------------------------------------------
       Fix Alignment for Image Accordion
    ------------------------------------------------------------- */
    .accordion-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 180px; /* Mengunci tinggi wadah teks agar sejajar di semua panel */
      padding: 0 30px 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end; /* Memaksa semua elemen menempel ke dasar yang sama */
      z-index: 2;
      opacity: 0.85;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .accordion-content .subtitle-tag {
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .accordion-content h3 {
      margin-bottom: 8px;
      line-height: 1.1;
      white-space: nowrap; /* Mencegah nama terpotong/turun baris jika panel menyempit */
    }

    /* Teks deskripsi menggunakan min-height agar tidak menggeser title saat muncul/hilang */
    .accordion-desc {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0;
      min-height: 2.2em; 
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Efek Hover Panel */
    .accordion-panel:hover .accordion-content {
      opacity: 1;
    }

    .accordion-panel:hover .accordion-desc {
      opacity: 1;
      transform: translateY(0);
    }

    /* Penyesuaian Tampilan Mobile */
    @media (max-width: 768px) {
      .accordion-content {
        height: 120px;
        padding: 0 20px 20px 20px;
      }
      .accordion-desc {
        display: none; /* Sembunyikan deskripsi di mobile agar lebih rapi */
      }
    }

    .accordion-panel:hover {
      flex: 3;
    }

    .accordion-panel:hover .accordion-panel-overlay {
      background: linear-gradient(180deg, rgba(10,11,14,0.1) 0%, rgba(10,11,14,0.8) 100%);
    }

    .accordion-panel:hover .accordion-content {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .image-accordion {
        flex-direction: column;
      }
      .accordion-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      .accordion-panel:hover {
        flex: 2;
      }
      .accordion-content {
        bottom: 25px;
        left: 20px;
        right: 20px;
      }
    }

    /* Diskografi Card & Hover Overlay Styling */
    .diskografi-item {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background-color: var(--bg-card);
    }

    .diskografi-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .diskografi-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10, 11, 14, 0.85);
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.4s ease;
      border: 1px solid var(--accent-color);
    }

    .diskografi-text {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--accent-color);
      transform: translateY(15px);
      transition: transform 0.4s ease;
    }

    .diskografi-item:hover img {
      transform: scale(1.08);
    }

    .diskografi-item:hover .diskografi-overlay {
      opacity: 1;
    }

    .diskografi-item:hover .diskografi-text {
      transform: translateY(0);
    }

    /* Parallax Banner */
    .parallax-banner {
      height: 400px;
      background-image: url('images/parallax.jpg');
      display: flex;
      align-items: center;
    }

    /* Buttons */
    .btn-accent {
      background-color: var(--accent-color);
      color: #0a0b0e;
      font-weight: 600;
      border-radius: 0px;
      padding: 12px 32px;
      border: 1px solid var(--accent-color);
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }
    
    .btn-accent:hover {
      background-color: transparent;
      border-color: var(--accent-color);
      color: var(--accent-color);
      box-shadow: 4px 4px 0px rgba(201, 168, 106, 0.5);
    }

    .btn-outline-custom {
      border: 1px solid rgba(244, 244, 246, 0.3);
      color: var(--text-light);
      border-radius: 0px;
      padding: 12px 32px;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .btn-outline-custom:hover {
      border-color: var(--accent-color);
      color: var(--accent-color);
      background: transparent;
      box-shadow: 4px 4px 0px rgba(201, 168, 106, 0.5);
    }

    /* Video Player Frame Styling */
    .video-frame {
      border: 1px solid rgba(255, 255, 255, 0.1);
      background-color: var(--bg-card);
      transition: border-color 0.3s ease;
    }
    .video-frame:hover {
      border-color: var(--accent-color);
    }

    /* Footer Styling */
    footer {
      background-color: #07080a;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 40px;
      padding-bottom: 40px;
    }

    footer h5 {
      color: var(--accent-color);
      font-size: 1.2rem;
      margin-bottom: 22px;
      position: relative;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.25s ease, padding-left 0.25s ease;
      display: inline-block;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--accent-color);
      padding-left: 5px;
    }

    .contact-item {
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
    }

    .contact-item i {
      color: var(--accent-color);
    }

    /* Music Player Sticky Bar */
    .audio-bar {
      background-color: rgba(18, 20, 26, 0.95);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(201, 168, 106, 0.2);
    }

    /* -------------------------------------------------------------
       Modal Styling (Roboto Mono & Mobile Ready)
    ------------------------------------------------------------- */
    .custom-modal-content {
      background-color: #12141a;
      border: 1px solid var(--accent-color);
      border-radius: 0; /* Monospaced sharp corners */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      padding: 10px;
    }

    .modal-header-title {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .custom-form-label {
      font-size: 0.8rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .custom-input {
      background-color: #0a0b0e;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--text-light);
      border-radius: 0;
      font-family: var(--font-main);
      font-size: 0.85rem;
      padding: 10px 12px;
    }

    .custom-input:focus {
      background-color: #0a0b0e;
      border-color: var(--accent-color);
      color: var(--text-light);
      box-shadow: 0 0 0 0.2rem rgba(201, 168, 106, 0.25);
    }

    .custom-input::placeholder {
      color: var(--text-muted);
      opacity: 0.6;
    }

    /* Penyesuaian Tampilan HP / Mobile */
    @media (max-width: 576px) {
      .modal-dialog {
        margin: 12px;
      }
      .custom-modal-content {
        padding: 5px;
      }
      .modal-header-title {
        font-size: 0.95rem;
      }
    }
	
	
/* -------------------------------------------------------------
   SECTION: Full-Screen Background + Lightning Flash (GPU OPTIMIZED)
------------------------------------------------------------- */
.fullscreen-caption-section {
  position: relative !important;
  height: 100vh !important;
  width: 100% !important;
  background-image: url('images/therain-profil.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Layer Overlay Gelap */
.fullscreen-caption-overlay {
  position: absolute !important;
  top: 0 !important; 
  left: 0 !important; 
  right: 0 !important; 
  bottom: 0 !important;
  background: linear-gradient(180deg, rgba(10,11,14,0.1) 0%, rgba(10,11,14,0.95) 100%) !important;
  z-index: 1 !important;
}

/* Lapisan Putih Kilatan Petir (Dengan GPU Acceleration) */
.lightning-flash {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #cfcfcf !important; /* Putih Silau */
  z-index: 5 !important;                /* Di atas background & overlay */
  pointer-events: none !important;
  opacity: 0;
  
  /* Memicu Hardware Acceleration GPU */
  transform: translateZ(0);
  will-change: opacity;
  
  /* Jalankan Animasi 5 Detik Loop */
  animation: lightningFlashGPU 5s infinite linear !important;
}

/* Teks Caption di Atas Kilatan */
.caption-bottom-wrapper {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding-bottom: 50px !important;
  z-index: 10 !important;               /* Paling atas agar teks tidak tertutup */
}

/* Animasi 2x Kedipan Kilat Petir */
@keyframes lightningFlashGPU {
  0% { 
    opacity: 0; 
  }
  /* Kedipan Pertama (Flash 1) */
  2% { 
    opacity: 0.2; 
  }
  4% { 
    opacity: 0; 
  }
  /* Jeda Singkat */
  6% { 
    opacity: 0; 
  }
  /* Kedipan Kedua (Flash 2) */
  8% { 
    opacity: 0.6; 
  }
  10% { 
    opacity: 0; 
  }
  /* Sisa waktu hingga detik ke-5 kembali normal */
  100% { 
    opacity: 0; 
  }
}

/* -------------------------------------------------------------
   SECTION: Press Release (Full-Width dengan Background Foto)
------------------------------------------------------------- */
.press-release-section {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 100px 0 !important;
  background-image: url('images/therain-profil-rilis.jpg'); /* Ganti dengan path foto press release Anda */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important; /* Efek Parallax Halus */
  overflow: hidden !important;
}

/* Overlay Gelap di Atas Foto */
.press-release-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(10, 11, 14, 0.50) !important; /* Menggelapkan foto agar teks jelas */
  z-index: 1 !important;
}

/* Card Press Release Box dengan Efek Opacity / Transparan */
.press-release-box {
  /* Menggunakan rgba untuk latar belakang transparan (Opacity 70%) */
  background-color: rgba(18, 20, 26, 0.65) !important; 
  
  /* Efek Blur Kaca (Glassmorphism) agar teks di atas foto sangat jelas */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  
  border: 1px solid var(--accent-color) !important;
  padding: 40px !important;
  position: relative !important;
  z-index: 2 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.press-release-date {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-release-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
}

.press-release-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
}

/* Tampilan Mobile Responsive */
@media (max-width: 576px) {
  .press-release-section {
    padding: 60px 0 !important;
  }
  .press-release-box {
    padding: 25px 20px;
  }
}
