/* Ambient background glows */
.bg-glow-1 {
  position: fixed;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-2 {
  position: fixed;
  bottom: -10%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Base public page styles */
.public-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  gap: 12px;
  overflow: hidden;
}

/* Header */
.public-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(18, 18, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  box-shadow: var(--glass-glow);
}

.skybyai-logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.header-title-container {
  text-align: right;
}

.header-title-container h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.header-title-container .subtitle {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Main Grid Layout */
.public-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  flex: 1;
  height: calc(100vh - 120px);
  overflow: hidden;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  overflow: hidden;
  justify-content: space-between;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  overflow: hidden;
}

/* Counter Card */
.counter-card {
  padding: 12px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.counter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--glass-border-light);
  padding-bottom: 6px;
}

.counter-header h3 {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.live-indicator {
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent-red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.live-indicator .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse 1.5s infinite ease-in-out;
}

.counter-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.progress-ring-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-ring-bar {
  transform: rotate(-90deg);
  transform-origin: 80px 80px;
  transition: stroke-dashoffset 0.8s ease;
}

.progress-ring-container.critical .progress-ring-bar {
  stroke: var(--accent-red);
  filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.6));
}

.counter-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cupos-number {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  font-feature-settings: "tnum";
}

.progress-ring-container.critical .cupos-number {
  color: var(--accent-red);
  animation: pulse-critical 1.5s infinite ease-in-out;
}

.cupos-total {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.counter-footer {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

@keyframes pulse-critical {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); text-shadow: 0 0 15px rgba(230, 57, 70, 0.6); }
  100% { transform: scale(1); }
}

/* Timer Card */
.timer-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.timer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.timer-header h3 {
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
}

.timer-segment span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  font-feature-settings: "tnum";
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  width: 100%;
  text-align: center;
  padding: 4px 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.timer-segment label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.timer-colon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-top: -24px;
}

.timer-expired-message {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-red);
  text-align: center;
}

/* Payment Section */
.payment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.payment-card {
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 180px;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.elite-badge {
  background: var(--gold-gradient);
  color: #060b19;
}

.reserve-badge {
  background: rgba(0, 180, 216, 0.15);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.payment-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.price-box .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-right: 4px;
}

.price-box .price-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.card-benefits h4 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-benefits li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-secondary);
}

.card-benefits li i {
  color: var(--gold-primary);
  margin-top: 4px;
  font-size: 0.8rem;
}

.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--accent-blue);
  border: 1px solid rgba(0, 180, 216, 0.15);
  margin-top: 15px;
  width: 100%;
}

/* Payment Instructions */
.payment-instructions {
  padding: 16px 24px;
}

.instructions-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.payment-methods {
  flex: 1;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
}

.method-details h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yape-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0;
  letter-spacing: 0.5px;
}

.yape-owner {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.qr-container {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 6px;
}

.qr-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: white; /* Make QR readable */
}

.qr-placeholder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  gap: 6px;
}

.qr-placeholder-icon i {
  font-size: 1.8rem;
  color: var(--glass-border);
}

/* Right Column: Proof Wall (Muro de Comprobantes) */
.muro-container {
  padding: 16px 20px;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.muro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--glass-border-light);
  padding-bottom: 12px;
}

.muro-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.muro-status {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.muro-count {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  padding: 3px 10px;
  border-radius: 99px;
  color: var(--gold-light);
  font-weight: 600;
}

.muro-wall-wrapper {
  overflow-y: auto;
  flex: 1;
  position: relative;
  padding-right: 4px;
}

.muro-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  color: var(--text-muted);
  gap: 15px;
  text-align: center;
}

.muro-empty-state i {
  font-size: 2.5rem;
}

.muro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 4px 0;
}

/* Receipt Card */
.receipt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.5s ease forwards;
}

.receipt-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.receipt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.receipt-card-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.receipt-card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.receipt-img-box {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #09090b;
  cursor: pointer;
  border: 1px solid var(--glass-border-light);
}

.receipt-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.receipt-card:hover .receipt-img-box img {
  transform: scale(1.05);
}

/* Privacy Masking */
.receipt-img-box.redacted img {
  filter: blur(8px);
}

.redacted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 25, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--gold-primary);
  font-size: 0.7rem;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  gap: 6px;
  pointer-events: none;
}

.redacted-overlay i {
  font-size: 1.3rem;
  color: var(--gold-primary);
}

.receipt-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.receipt-status {
  font-size: 0.7rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.receipt-status .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.2s infinite;
}

/* Active Bonuses */
.bonuses-card {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bonuses-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--glass-border-light);
  padding-bottom: 6px;
}

.bonuses-header h3 {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  flex: 1;
}

.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border-light);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.bonus-item.expired {
  opacity: 0.4;
  text-decoration: line-through;
  border-color: rgba(255,255,255,0.03);
}

.bonus-text {
  font-weight: 500;
}

.bonus-item.expired .bonus-text {
  color: var(--text-muted);
}

.bonus-expiry {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.bonus-item:not(.expired) .bonus-expiry {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.bonus-item.expired .bonus-expiry {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}

/* Bottom Ticker */
.public-footer {
  display: flex;
  background: rgba(18, 18, 20, 0.8);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  overflow: hidden;
  height: 50px;
  align-items: center;
}

.ticker-label {
  background: var(--gold-gradient);
  color: #060b19;
  font-weight: 800;
  font-size: 0.78rem;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  letter-spacing: 1px;
  box-shadow: 5px 0 15px rgba(0,0,0,0.3);
  z-index: 10;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-animation 30s linear infinite;
  color: var(--text-secondary);
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  font-size: 0.92rem;
  font-weight: 500;
}

.ticker-item i {
  color: var(--gold-primary);
  margin-right: 8px;
}

.ticker-item .ticker-modal {
  margin-left: 6px;
  font-size: 0.72rem;
  opacity: 0.85;
}

.ticker-empty {
  color: var(--text-muted);
  font-style: italic;
  padding-left: 20px;
}

@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 11, 25, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
}

.image-modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  padding: 10px;
  position: relative;
}

.image-modal img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: var(--gold-primary);
}

/* Media Queries */
@media (max-width: 1024px) {
  .public-grid {
    grid-template-columns: 1fr;
  }
  .muro-container {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .public-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .header-title-container {
    text-align: center;
  }
  .payment-section {
    grid-template-columns: 1fr;
  }
  .instructions-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .qr-container {
    align-self: center;
  }
}

/* Audio Enable Button Styles */
.audio-btn-suspended {
  border: 1px solid rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.15) !important;
  color: var(--accent-red) !important;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
}

.audio-btn-active {
  border: 1px solid rgba(42, 157, 143, 0.4) !important;
  background: rgba(42, 157, 143, 0.15) !important;
  color: var(--accent-green) !important;
  box-shadow: 0 0 10px rgba(42, 157, 143, 0.2) !important;
  cursor: default !important;
  transition: all 0.3s ease;
}

/* Course selection tabs styling */
.course-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  font-family: var(--font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
}

.course-tab-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000000;
  box-shadow: var(--gold-glow);
}

.course-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* ==========================================================================
   PREMIUM 16:9 VIEWPORT REDESIGN LAYOUT STYLES
   ========================================================================== */

/* Prevent vertical scroll on public view (16:9 projection fit) */
@media (min-width: 1024px) {
  body, html {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }
}

/* Carousel Control hover styles */
#carousel-prev-btn:hover, #carousel-next-btn:hover {
  background: var(--gold-primary) !important;
  color: #000000 !important;
  border-color: var(--gold-primary) !important;
  box-shadow: var(--gold-glow) !important;
}

/* Horizontal card in the carousel track */
.carousel-card {
  width: 220px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.carousel-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.1);
}

.carousel-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-card p {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin: 0;
}

.carousel-card-img-box {
  width: 100%;
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #09090b;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}

.carousel-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-card-img-box:hover img {
  transform: scale(1.05);
}

/* Premium Bonus Item Card (16:9 Image layout) */
.premium-bonus-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border-light);
  border-radius: 8px;
  overflow: hidden;
  height: 60px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.premium-bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.premium-bonus-img-container {
  width: 90px;
  height: 100%;
  flex-shrink: 0;
  background: #09090b;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-bonus-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-bonus-badge-num {
  position: absolute;
  top: 3px;
  left: 3px;
  background: var(--gold-primary);
  color: #000000;
  font-size: 0.6rem;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-bonus-info {
  flex: 1;
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.premium-bonus-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premium-bonus-timer {
  font-size: 0.62rem;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 3px;
  width: fit-content;
  margin-top: 2px;
  font-feature-settings: 'tnum';
}

.premium-bonus-timer.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.premium-bonus-timer.expired {
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

/* Shake/Pulse keyframe for cupos warning alerts */
@keyframes shake-warning {
  0%, 100% { transform: scale(1); }
  10%, 30%, 50%, 70%, 90% { transform: scale(1.03) rotate(-0.5deg); }
  20%, 40%, 60%, 80% { transform: scale(1.03) rotate(0.5deg); }
}

.shake-warning-anim {
  animation: shake-warning 0.5s ease-in-out;
}

/* ==========================================================================
   PREMIUM 3D WELCOME POP-UP NOTIFICATION STYLES
   ========================================================================== */

.welcome-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.4s ease forwards;
}

.welcome-popup-card {
  position: relative;
  width: 500px;
  background: linear-gradient(135deg, rgba(24, 24, 28, 0.9) 0%, rgba(14, 14, 16, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-sizing: border-box;
  transform: scale(0.6);
  opacity: 0;
  animation: popInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  overflow: hidden;
  font-family: var(--font-family);
}

.welcome-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
  z-index: 1;
  animation: rotateGlow 8s linear infinite;
}

.welcome-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-primary);
  color: #000000;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 15px;
  box-shadow: var(--gold-glow);
  z-index: 2;
  position: relative;
}

#welcome-popup-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  z-index: 2;
  position: relative;
  animation: floatText 3s ease-in-out infinite;
}

.welcome-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.welcome-sparkle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  opacity: 0;
}

/* Animations Keyframes */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popInBounce {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes floatSparkle {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80px) scale(1.2);
    opacity: 0;
  }
}


