@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Muli', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  background-color: #0b0d19;
}

.container {
  display: flex;
  width: 90vw;
  height: 80vh;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 700ms cubic-bezier(0.25, 1, 0.45, 1), transform 0.5s ease;
  overflow: hidden;
}

.panel.active {
  flex: 5;
  transform: scale(1.01);
}

.panel-heading {
  font-family: 'Muli', sans-serif;
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 1;
  white-space: nowrap;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.6);
  z-index: 10;
  transition: opacity 0.3s ease-out;
}

.panel.active .panel-heading {
  opacity: 0; 
  transition: opacity 0.2s ease-out;
}

.fallback-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.panel a {
  text-decoration: none;
  color: inherit;
}

/* --- Universal Glass Overlay Interface System --- */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding-left: 4%;
  background: rgba(11, 13, 25, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.panel.active .slide-overlay {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease-in 0.2s;
}

.glass-copy-card {
  background: rgba(11, 13, 25, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 25px;
  width: 100%;
  max-width: 440px;
  height: 85%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-scroll-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 12px;
}

/* Custom Scroll Handling components */
.card-scroll-container::-webkit-scrollbar {
  width: 5px;
}
.card-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.card-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
}
.card-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.7);
}

.glass-copy-card h2 {
  margin: 0 0 12px 0;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.intro-text {
  font-size: 13px;
  line-height: 1.6;
  color: #e2e5f0;
  margin: 0 0 20px 0;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.pack-item {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #d4af37;
  padding: 10px 14px;
  border-radius: 0 12px 12px 0;
}

.pack-item h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #fff;
}

.pack-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #b0b6cf;
}

.special-deal-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(170, 124, 17, 0.05) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 12px 16px;
  margin-top: 10px;
}

.deal-tag {
  font-size: 9px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.special-deal-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #e8d7b9;
}

.code-highlight {
  color: #fff;
  background: rgba(212, 175, 55, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}

/* --- Crypto Interaction UI Blocks --- */
.crypto-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.crypto-action-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: 'Muli', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 11px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crypto-action-btn:hover {
  transform: translateY(-1px);
}

.trade-btn {
  background: linear-gradient(135deg, #00ff66 0%, #00993d 100%);
  color: #080a12;
  box-shadow: 0 4px 12px rgba(0, 255, 102, 0.2);
}
.trade-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 255, 102, 0.4);
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}
.telegram-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4);
}

/* --- Retro Audio Rack Module Deck Overlays --- */
.winamp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  background: rgba(11, 13, 25, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.panel.active .winamp-overlay {
  opacity: 1;
  pointer-events: auto;
}

.winamp-container {
  background: #121424;
  border: 3px solid #2e334d;
  border-radius: 16px;
  width: 370px;
  padding: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winamp-title-bar {
  background: #1c1f35;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
}

.winamp-title {
  font-size: 9px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 1px;
}

.winamp-window-controls span {
  font-size: 9px;
  color: #636b93;
  margin-left: 6px;
}

.winamp-main-display {
  background: #080a12;
  border: 2px solid #1c1f35;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.player-meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.track-cover-frame {
  width: 65px;
  height: 65px;
  background: #020305;
  border: 1px solid #2e334d;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.track-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winamp-info-screen {
  background: #020305;
  border: 1px solid #1c1f35;
  padding: 6px 8px;
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 65px;
  overflow: hidden;
}

.info-screen-text {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

#winamp-time {
  color: #00ff66;
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(0,255,102,0.7);
}

.track-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 16px;
}

#winamp-track-title {
  color: #00ff66;
  font-family: monospace;
  font-size: 11px;
  white-space: nowrap;
  position: absolute;
  text-shadow: 0 0 4px rgba(0,255,102,0.4);
}

#visualizer-canvas {
  width: 100%;
  height: 24px;
  z-index: 1;
  margin-top: auto;
  border-radius: 2px;
}

.winamp-controls {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.winamp-controls button {
  background: linear-gradient(180deg, #2a2f47 0%, #171a2b 100%);
  border: 1px solid #3d4566;
  color: #fff;
  padding: 8px 0;
  flex: 1;
  font-size: 10px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.winamp-controls button#w-play.playing-glow {
  background: linear-gradient(180deg, #171a2b 0%, #004d20 100%);
  border-color: #00ff66;
  box-shadow: 0 0 12px rgba(0,255,102,0.4);
  animation: visualPulse 2s infinite ease-in-out;
}

@keyframes visualPulse {
  0% { box-shadow: 0 0 4px rgba(0,255,102,0.3); }
  50% { box-shadow: 0 0 14px rgba(0,255,102,0.6); }
  100% { box-shadow: 0 0 4px rgba(0,255,102,0.3); }
}

.winamp-vol-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.winamp-vol-container label {
  font-size: 9px;
  font-weight: bold;
  color: #636b93;
}

.winamp-vol-container input[type="range"] {
  flex: 1;
  accent-color: #d4af37;
  height: 4px;
  cursor: pointer;
}

.winamp-eq-deck {
  background: #0a0c16;
  border: 1px solid #1c1f35;
  border-radius: 8px;
  padding: 10px;
}

.eq-deck-label {
  font-size: 8px;
  font-weight: bold;
  color: #636b93;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.eq-sliders {
  display: flex;
  justify-content: space-around;
  height: 95px;
}

.eq-slider-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.eq-slider-group input[type="range"] {
  writing-mode: vertical-lr;
  direction: rtl;
  appearance: slider-vertical;
  width: 10px;
  height: 70px;
  accent-color: #d4af37;
  cursor: pointer;
}

.eq-slider-group label {
  font-size: 8px;
  font-weight: bold;
  color: #cbb48f;
}

/* --- Secure Ingress Booking Interfaces --- */
.booking-overlay {
  position: absolute;
  top: -20;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  padding-right: 2%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}

.panel.active .booking-overlay {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease-in 0.2s;
}

.glass-form-card {
  background: rgba(11, 13, 25, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 25px;
  padding: 22px 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.glass-form-card h2 {
  font-family: 'Muli', sans-serif;
  margin: 0 0 4px 0;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.glass-form-card p {
  margin: 0 0 10px 0;
  color: #a4abd1;
  font-size: 12px;
}

.secure-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.form-row {
  display: flex;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.form-group label {
  font-family: 'Muli', sans-serif;
  color: #e8d7b9;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Muli', sans-serif;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.form-group select option {
  background: #0b0d19;
  color: #fff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(50%) saturate(1000%) hue-rotate(5deg);
  cursor: pointer;
}

.submit-btn {
  font-family: 'Muli', sans-serif;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0b0d19;
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #555c82;
  font-size: 10px;
}

/* --- Mobile Device Sizing Breakpoints --- */
@media (max-width: 1024px) {
  body {
    overflow-y: auto;
    height: auto;
    padding: 20px 0;
  }

  .container {
    flex-direction: column;
    height: auto;
    width: 92vw;
  }

  .panel {
    flex: none !important;
    width: 100%;
    height: 440px;
    border-radius: 25px;
    margin: 8px 0;
    transform: none !important;
  }

  .panel-heading {
    opacity: 1 !important;
    font-size: 20px;
    bottom: 15px;
    left: 15px;
  }

  .slide-overlay, .winamp-overlay, .booking-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(11, 13, 25, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px;
    justify-content: center;
    align-items: center;
  }

  .slide-overlay {
    padding-left: 0;
  }
  .booking-overlay {
    padding-right: 0;
  }

  .glass-copy-card, .winamp-container, .glass-form-card {
    max-width: 100%;
    width: 100%;
    height: 92%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }
}

/* --- Golden Fluid Atmospheric Particles --- */
.champagne-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #07080f 0%, #0f1222 50%, #211b0d 100%);
  z-index: -1; 
  overflow: hidden;
}

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  bottom: -30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(212,175,55,0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4), 0 0 10px rgba(212, 175, 55, 0.15);
  animation: floatUp 12s infinite linear;
}

.bubble:nth-child(1) { left: 5%; width: 10px; height: 10px; animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(2) { left: 20%; width: 20px; height: 20px; animation-duration: 14s; animation-delay: 0s; }
.bubble:nth-child(3) { left: 38%; width: 8px; height: 8px; animation-duration: 8s; animation-delay: 2s; }
.bubble:nth-child(4) { left: 52%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 68%; width: 24px; height: 24px; animation-duration: 15s; animation-delay: 3.5s; }
.bubble:nth-child(6) { left: 82%; width: 11px; height: 11px; animation-duration: 10s; animation-delay: 1.2s; }
.bubble:nth-child(7) { left: 12%; width: 7px; height: 7px; animation-duration: 7s; animation-delay: 4s; }
.bubble:nth-child(8) { left: 60%; width: 16px; height: 16px; animation-duration: 12s; animation-delay: 0.3s; }
.bubble:nth-child(9) { left: 89%; width: 9px; height: 9px; animation-duration: 9s; animation-delay: 6s; }
.bubble:nth-child(10) { left: 94%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: 2.2s; }

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0) scale(0.9); opacity: 0; }
  15% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-110vh) translateX(40px) scale(1.1); opacity: 0; }
}