:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-turquoise: #40E0D0;
  --accent-cyan: #00ffff;
  --nav-height: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

::selection {
  background: #0077b6;
  color: #ffffff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* App-like feel */
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

#loader-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide loader when navigating away from home */
body.not-home #loader-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s, visibility 0s; /* instant */
}

/* Background Orb */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(20,20,30,1) 0%, rgba(0,0,0,1) 100%);
  transition: opacity 0.3s ease-in-out;
}

body.not-home .background-container {
  opacity: 0;
  transition: opacity 0s; /* Hide instantly when leaving home */
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 40px;
  text-align: left;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.logo-h1 {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.site-logo {
  max-height: 60px;
  width: auto;
  pointer-events: auto;
}

/* Main Content Area */
#app-content {
  flex-grow: 1;
  position: relative;
  z-index: 5;
  height: calc(100vh - var(--nav-height));
  overflow-y: hidden;
  transition: background-color 0s;
}

body.not-home #app-content {
  background-color: #000000;
}

.page-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  padding: 120px 40px 100px 40px;
  overflow-y: auto;
}

.page-section.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.page-section:not(#home) {
  background: #000000;
}

.content-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.content-inner h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.body-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Footer Navigation */
.main-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: var(--nav-height);
  background: transparent;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.music-active .main-footer {
  transform: translateY(100%);
  pointer-events: none;
}

body.loaded .main-header,
body.loaded .main-footer {
  opacity: 1;
}

.main-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
  z-index: -1;
  pointer-events: none;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-plus {
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
}

.footer-play-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.nav-links a.nav-plus-btn {
  font-size: 1.92rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: opacity 0.2s, transform 0.4s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active-link {
  opacity: 1;
}

.nav-links a:not(.active-link) {
  opacity: 0.5;
}


/* Press & Journey Section */
#press .content-inner, #party .content-inner, #gallery .content-inner, #journey .content-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#press .body-text, #gallery .body-text, #journey .body-text {
  text-align: center;
  margin-bottom: 3rem;
}

.press-links-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.press-card {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.press-card:hover {
  transform: translateY(-4px);
}

.press-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.press-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

/* Journey Section */
.journey-table {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.journey-row {
  display: grid;
  grid-template-columns: 100px 260px 300px 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.journey-row:hover {
  opacity: 0.9;
}

.j-col {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}

.j-year { 
  font-weight: 800; 
}

.j-date, .j-city { 
  font-weight: 400; 
}

.j-show { 
  font-weight: 700; 
  text-align: right;
}



/* Info Section Redesign */
.info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 100px 0;
}

.contact-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 13rem;
  font-weight: 800;
  text-align: left;
  margin-bottom: 60px;
  line-height: 1;
  letter-spacing: -6px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column */
.info-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #8A2BE2;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}

.slash {
  margin: 0 8px;
  opacity: 0.5;
}

.info-huge-title {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.0;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.accent-purple {
  color: #8A2BE2;
}

.info-sub-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 90%;
}

.info-sub-text strong {
  color: #fff;
  font-weight: 600;
}

.info-intent-block {
  border-left: 1px solid #444;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #666;
  line-height: 1.8;
}

.intent-highlight {
  color: #fff;
  margin-top: 10px;
  font-weight: 600;
}

/* Vertical Divider (Removed) */

/* Right Column */
.info-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
}

.info-channels-header {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 10px 0;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom: 1px solid #8A2BE2;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fff;
  font-weight: 600;
}

.form-group textarea {
  resize: none;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #8A2BE2;
  transform: translateY(-2px);
}

.submit-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 12px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background-color: #e0e0e0;
}


.credit-link:hover {
  color: #ff3300;
}

/* Gallery Section */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  padding-bottom: 50px;
  width: 100%;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background: #111; /* subtle placeholder */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
  filter: grayscale(40%) brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Horizontal Music Player Bar */
.bottom-music-bar {
  position: fixed;
  bottom: var(--nav-height);
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 80px; /* Increased from 60px to 80px for visibility */
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  pointer-events: none;
}

body.music-active .bottom-music-bar {
  bottom: 0;
}

.bottom-music-bar.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mb-close, .mb-playpause, .mb-next {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.mb-close:hover, .mb-playpause:hover, .mb-next:hover {
  opacity: 0.7;
}

.mb-close {
  font-size: 1.8rem;
  margin-right: 40px;
}

.mb-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 40px;
}

.mb-playpause {
  font-size: 1.8rem;
}

.mb-next {
  font-size: 1.4rem;
  letter-spacing: -1px;
}

.mb-progress-container {
  flex-grow: 1;
  height: 4px; /* Increased from 2px */
  background: rgba(255, 255, 255, 0.2);
  margin-right: 40px;
  position: relative;
  cursor: pointer;
}

.mb-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
}

.mb-track-info {
  margin-right: 30px;
  font-weight: 500;
  font-size: 1.1rem; /* Increased size */
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Explore Button - hidden on desktop */
.explore-btn {
  display: none;
}

/* Responsive */
@media (max-width: 1100px) {
  /* Info Layout Responsiveness */
  .contact-hero-title {
    font-size: 8rem;
    margin-bottom: 40px;
  }
  .info-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .info-left {
    padding-right: 0;
  }
  .info-huge-title {
    font-size: 2.5rem;
  }
  .info-right {
    padding-left: 0;
  }

  .gallery-grid {
    column-count: 2;
  }
  
  .press-links-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-row {
    grid-template-columns: 80px 150px 1fr 1fr;
  }
  
  .j-link { display: none; }
}

@media (max-width: 800px) {
  /* Center logo on mobile */
  .main-header {
    text-align: center;
    padding: 24px 20px;
  }

  .site-logo {
    max-height: 48px;
  }

  /* Footer becomes dropdown container */
  .main-footer {
    flex-direction: column;
    height: auto;
    padding: 16px 20px;
    gap: 0;
    transition: background-color 0.3s ease;
  }

  .main-footer::before {
    height: 120px;
  }

  .main-footer.menu-open {
    background: #000000;
  }

  /* Explore button visible on mobile */
  .explore-btn {
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .explore-btn:hover,
  .explore-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
  }

  /* Hide nav by default on mobile */
  
  /* Info Layout Mobile */
  .contact-hero-title {
    font-size: 5rem;
    letter-spacing: -3px;
  }
  .info-huge-title {
    font-size: 2rem;
  }
  .info-sub-text {
    font-size: 0.9rem;
  }
  .form-footer {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .contact-label {
    width: calc(100% - 40px); /* Fill space minus number */
    margin-bottom: 8px;
  }
  
  .contact-link {
    width: 100%;
    padding-left: 40px; /* Align with number */
    font-size: 1.1rem;
  }
  
  .contact-arrow {
    position: absolute;
    right: 0;
  }

  .bottom-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    width: 100%;
  }

  .bottom-nav.menu-open {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
  }

  /* Vertical nav links */
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a.nav-plus-btn {
    font-size: 1.4rem;
  }

  /* Content adjustments */
  .gallery-grid {
    column-count: 1; /* Better for mobile viewing */
    column-gap: 15px;
  }
  
  .press-links-container {
    grid-template-columns: 1fr;
  }
  
  .journey-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 1.5rem 0;
  }
  
  .page-section {
    padding: 90px 20px 120px 20px;
  }
  
  .content-inner h2 {
    font-size: 2rem;
  }

  /* Horizontal Music Bar Mobile */
  .bottom-music-bar {
    padding: 0 15px;
    height: 50px;
  }
  .mb-close { margin-right: 15px; font-size: 1rem; }
  .mb-controls { margin-right: 15px; gap: 15px; }
  .mb-playpause { font-size: 1rem; }
  .mb-next { font-size: 0.8rem; }
  .mb-progress-container { margin-right: 15px; }
  .mb-track-info { display: none; }
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-img-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-overlay.active .lightbox-img-wrap {
  transform: scale(1);
}

.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-img-wrap img.fading-left {
  opacity: 0;
  transform: translateX(-40px);
}

.lightbox-img-wrap img.fading-right {
  opacity: 0;
  transform: translateX(40px);
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  z-index: 9100;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease, transform 0.3s ease;
  font-weight: 200;
}

.lightbox-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9100;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.lightbox-counter {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9100;
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* Blur rest of gallery while lightbox is open */
.gallery-lightbox-open .gallery-item {
  filter: blur(4px) brightness(0.35);
  transition: filter 0.4s ease;
}

@media (max-width: 800px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2rem;
  }
}



/* About Section Update */
#about .content-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-text {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
}

.about-content-centered {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.about-content-centered p {
  margin-bottom: 0;
}

.about-content-centered strong {
  color: #fff;
  font-weight: 700;
}

.about-content-centered em {
  font-style: italic;
  color: #fff;
}

.separator-line {
  width: 30px;
  height: 1px;
  background-color: #555;
  margin: 2rem auto;
}

/* Journey Section Updates */
#journey .content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#journey .body-text {
  text-align: center;
}

.journey-row {
  grid-template-columns: 80px 220px 250px 1fr 60px !important;
}

.journey-row.old-entry {
  color: rgba(255, 255, 255, 0.4);
}

.j-num {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.num-circle {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
}

/* Key2Paradise Section */
#key2paradise .content-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
}

.k2p-subtitle {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.k2p-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 4rem;
  max-width: 800px;
}

.k2p-grid {
  display: flex;
  width: 100%;
  text-align: left;
  gap: 3rem;
}

.k2p-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-right: 2rem;
}

.k2p-col.border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.k2p-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.k2p-num {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem;
  width: 30px;
}

.k2p-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #bbb;
  margin: 0;
}

.k2p-video-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.k2p-video-header {
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
}

.k2p-video-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
  margin: 0 0 1rem 0;
}

.k2p-video-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.k2p-video-box:hover {
  opacity: 0.8;
}

.play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  margin-left: 4px;
}

.k2p-video-box span {
  font-size: 0.8rem;
  letter-spacing: 3px;
}

.k2p-icons-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.k2p-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

/* Mobile Responsiveness for Custom Layouts */
@media (max-width: 768px) {
  /* Press & Party grids */
  .press-links-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Journey Row adjustments */
  .journey-row {
    display: flex !important;
    flex-direction: column;
    position: relative;
    padding: 1.5rem 0;
    gap: 0.4rem;
  }
  .j-col {
    width: 100%;
    text-align: left !important;
  }
  .j-col.j-year {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .j-col.j-show {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
  .j-col.j-num {
    position: absolute;
    top: 1.5rem;
    right: 0;
    width: auto;
  }

  /* Key2Paradise Layout */
  .k2p-grid {
    flex-direction: column !important;
    gap: 2rem;
  }
  .k2p-col.border-right {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0 !important;
    padding-bottom: 2rem;
  }
  .k2p-icons-col {
    flex-direction: row !important;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Additional text tweaks */
  .page-section h2 {
    font-size: 1.8rem !important;
  }
  .about-hero-text {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
}
  .about-content-centered {
    font-size: 1rem;
  }
}

/* ============================================
   VIDEO LIGHTBOX
   ============================================ */
.video-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-content {
  width: 90%;
  max-width: 1000px;
  position: relative;
}

.video-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.video-lightbox-close:hover {
  color: #ccc;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
