/* Rewards Bar Responsive Refactor */
.rewards-bar.custom-rewards-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 18px 0 24px 0;
}
.rewards-btn.rewards-btn-small {
    min-width: 0;
    padding: 8px 14px;
    font-size: 1em;
    border-radius: 10px;
    background: linear-gradient(90deg, #23272f 0%, #292d36 100%);
    color: #FFD700;
    border: 2px solid #FFD70022;
    box-shadow: 0 2px 8px #FFD70022;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
    max-width: 120px;
}
.rewards-btn-label {
    display: block;
    margin-top: 2px;
    font-size: 0.98em;
    font-weight: 500;
}
.points {
    font-size: 0.95em;
    font-weight: 700;
    color: #FFD700;
    margin-top: 2px;
}
@media (max-width: 300px) {
    .rewards-bar.custom-rewards-bar {
        flex-direction: column;
        gap: 10px;
    }
    .rewards-btn.rewards-btn-small {
        max-width: 100%;
        width: 100%;
        font-size: 1em;
    }
}
/* Redeem Modal Points Display Refactor */
.redeem-modal-body {
    padding-top: 10px;
}
.redeem-points-display {
    text-align: center;
    margin-bottom: 18px;
    padding: 14px 0 10px 0;
    background: linear-gradient(90deg, #FFD70022 0%, #00ff8822 100%);
    border-radius: 14px;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 2px 12px #FFD70022;
}
.redeem-points-label {
    font-size: 1.05em;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}
.redeem-points-value-row {
    font-size: 2.2em;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
}
.redeem-points-star {
    font-size: 1.1em;
    color: #FFD700;
    filter: drop-shadow(0 0 8px #FFD70088);
}
/* Redeem Modal Styles */
.redeem-modal-overlay {
  z-index: 20000;
}
.redeem-modal-content {
  max-width: 500px;
  border: 2px solid #FFD700;
  background: linear-gradient(135deg, #23272f 80%, #FFD70022 100%);
  box-shadow: 0 6px 32px rgba(255,215,0,0.12);
  position: relative;
  overflow: visible;
}
.redeem-modal-close {
  background: linear-gradient(135deg, #FFD700 0%, #fa709a 100%);
  color: #fff;
}
.redeem-modal-title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.6em;
  color: #FFD700;
  background: linear-gradient(90deg, #FFD700 0%, #00ff88 60%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.redeem-modal-title-icon {
  font-size: 1.2em;
}
/* Claim Daily Reward Button Styles */
.claim-daily-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
/* Next Badge Preview Styles */
.next-badge-preview {
  text-align: center;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.next-badge-title {
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 10px;
}
.next-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.next-badge-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.next-badge-name {
  color: #fff;
  font-weight: bold;
}
.next-badge-milestone {
  color: #00ff88;
  font-size: 0.9em;
  margin-top: 5px;
}
/* All Badges Modal Styles */
.all-badges-modal-overlay {
  z-index: 20001;
}
.all-badges-modal-content {
  max-width: 700px;
  min-width: 320px;
  background: #23272f;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  padding: 0 0 24px 0;
}
.all-badges-modal-title {
  margin-bottom: 0;
}
.all-badges-tabs {
  display: flex;
  justify-content: center;
  margin: 18px 0 0 0;
  gap: 0;
  background: #181b20;
  border-radius: 12px;
  overflow: hidden;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.all-badges-tab-btn {
  flex: 1;
  border-radius: 0;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 1.1em;
  padding: 14px 0;
  transition: background 0.2s;
}
.available-tab {
  color: #FFD700;
}
.completed-tab {
  color: #00ff88;
}
.all-badges-tab-count {
  font-size: 0.9em;
  color: #fff;
  background: #333;
  border-radius: 12px;
  padding: 2px 10px;
  margin-left: 6px;
}
.all-badges-modal-body {
  max-height: 60vh;
  margin-top: 10px;
  background: none;
}
.all-badges-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 10px 0;
}
.all-badges-list-item {
  cursor: pointer;
  background: #181b20;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid #292d36;
  transition: box-shadow 0.2s, border 0.2s;
}
.all-badges-list-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #222;
}
.all-badges-list-name {
  font-size: 1.1em;
  color: #fff;
  font-weight: 500;
}
.all-badges-list-check {
  margin-left: auto;
}
.all-badges-list-empty {
  text-align: center;
  color: #aaa;
  margin-top: 30px;
  grid-column: 1/-1;
}
/* Celebratory Badge Modal Styles */
.badge-completed-modal {
  text-align: center;
  margin-top: 20px;
}
.badge-completed-title {
  font-size: 2.2em;
  color: #00ff88;
  margin-bottom: 10px;
}
.badge-completed-desc {
  margin-bottom: 16px;
  color: #fff;
}
.badge-completed-share {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.badge-share-twitter {
  color: #1da1f2;
  font-size: 1.5em;
}
.badge-share-facebook {
  color: #4267B2;
  font-size: 1.5em;
}
.badge-share-copy {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.5em;
  cursor: pointer;
}
/* Title Animation Styles & Responsive Enhancements */
@media (max-width: 768px) {
  .modal-content {
    margin: 15px;
    padding: 20px;
    max-height: 90vh;
    max-width: 95vw;
  }
  .modal-title {
    font-size: 1.4rem;
  }
  .redeem-action-btn, .redeem-merch-btn {
    font-size: 0.85rem;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 10px;
    padding: 15px;
    max-height: 95vh;
    max-width: 95vw;
  }
  .modal-title {
    font-size: 1.3rem;
  }
  .redeem-action-btn, .redeem-merch-btn {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
  .modal-body {
    font-size: 0.9rem;
  }
  .tooltip {
    font-size: 14px;
    padding: 8px 12px;
    min-width: 100px;
  }
}

@media (max-width: 320px) {
  .modal-content {
    margin: 5px;
    padding: 12px;
    max-height: 98vh;
  }
  .modal-title {
    font-size: 1.2rem;
  }
  .redeem-action-btn, .redeem-merch-btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  .tooltip {
    font-size: 12px;
    padding: 6px 10px;
    min-width: 80px;
  }
}

/* Custom Rewards Bar Styles */
.custom-rewards-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto 18px auto;
  justify-items: stretch;
  align-items: stretch;
}
.custom-reward-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 70px;
  font-size: 1.1em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: rgba(24,27,32,0.95);
  border: 1px solid #292d36;
  transition: box-shadow 0.2s, border 0.2s;
}
.custom-reward-btn .points {
  margin-top: 4px;
}
@media (max-width: 700px) {
  .custom-rewards-bar {
    max-width: 98vw;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  .custom-rewards-bar {
    grid-template-columns: 1fr;
    max-width: 100vw;
    gap: 8px;
  }
  .custom-reward-btn {
    font-size: 1em;
    min-height: 56px;
  }
}
/* Authentication Status Indicator Styles */
.auth-status {
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  font-size: 0.9em;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-hard);
}
.auth-error {
  background: rgba(250, 112, 154, 0.1);
  border: 2px solid #fa709a;
  color: #fa709a;
}
.auth-success {
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 10px 16px;
}
/* Main content container styles */
.main-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 0;
  padding: 15px 5px;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
}

/* Main title styles */
.main-title {
  font-size: 2.7em;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(45deg, #FFD700 0%, #FFA500 30%, #00ff88 60%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 12px;
  border-radius: var(--border-radius-sm);
  z-index: 10;
  margin: 0 0 10px 0;
  animation: badgeQuestGlow 4s infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8ch;
  filter: drop-shadow(0 4px 4px rgba(255, 215, 0, 0.3));
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.main-title-gradient {
  background: linear-gradient(45deg, #FFD700 0%, #FFA500 30%, #00ff88 60%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.08em;
  filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}
    [x-cloak] { display: none !important; }

    /* Modern Design System */
    :root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
      --warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
      --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      --emerald-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
      --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --pink-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --glassmorphism: rgba(255, 255, 255, 0.1);
      --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
      --shadow-hard: 0 4px 20px rgba(0, 0, 0, 0.4);
      --border-radius: 16px;
      --border-radius-sm: 8px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      transition: var(--transition);
      box-sizing: border-box;
    }

    html {
      overflow-x: hidden;
    }

    body {
      background: linear-gradient(135deg, #0b0c10 0%, #1a1a2e 50%, #16213e 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      position: relative;
      overflow-x: hidden;
      min-height: 100vh;
      box-sizing: border-box;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
      pointer-events: none;
      z-index: -1;
      animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(0.5deg); }
    }
    .wheel-container {
      perspective: 1000px;
      width: min(340px, 85vw);
      height: min(230px, 60vw);
      max-width: 340px;
      max-height: 230px;
      position: relative;
      touch-action: none;
      user-select: none;
      -webkit-user-select: none;
      margin-bottom: 40px;
      filter: drop-shadow(0 8px 32px rgba(255, 215, 0, 0.2));
    }
    .wheel-wrapper {
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transform: rotateX(-10deg);
      position: absolute;
    }
    .wheel {
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.1s linear;
      position: absolute;
    }
    .badge {
      position: absolute;
      width: 110px;
      height: 110px;
      background: rgba(34, 34, 34, 0.8);
      backdrop-filter: blur(20px);
      border-radius: 50%;
      border: 2px solid rgba(255, 215, 0, 0.6);
      box-shadow:
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      left: 50%;
      top: 50%;
      margin-left: -55px;
      margin-top: -55px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .badge:hover {
      transform: scale(1.1);
      box-shadow:
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 215, 0, 0.8);
    }
    .badge.completed {
      border-color: #00ff88;
      box-shadow:
        0 0 20px rgba(0, 255, 136, 0.4),
        inset 0 2px 10px rgba(0, 255, 136, 0.1);
      background: rgba(0, 255, 136, 0.05);
    }
    .badge.completed:hover {
      box-shadow:
        0 0 30px rgba(0, 255, 136, 0.6),
        inset 0 2px 15px rgba(0, 255, 136, 0.2);
    }
    .badge img {
      width: 90%;
      filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .badge.completed img {
      filter: drop-shadow(0 0 8px rgba(0,255,136,0.5));
    }
    .tooltip {
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      color: #fff;
      padding: 12px 20px;
      border-radius: var(--border-radius-sm);
      font-size: 16px;
      font-weight: 600;
      border: 2px solid #FFD700;
      pointer-events: none;
      text-align: center;
      z-index: 10;
      box-shadow: var(--shadow-soft);
      min-width: 120px;
    }
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 20000;
    }
    .modal-content {
      background: rgba(31, 31, 31, 0.95);
      backdrop-filter: blur(20px);
      border-radius: var(--border-radius);
      padding: 30px;
      position: relative;
      width: 90%;
      max-width: 600px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }
    .modal-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gold-gradient);
    }
    .modal-title {
      color: #FFD700;
      margin: 0 0 20px 0;
      font-size: 28px;
      font-weight: 700;
      text-align: center;
      text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    }
    .modal-body {
      color: #fff;
      font-size: 16px;
      line-height: 1.6;
      max-height: 60vh;
      overflow-y: auto;
    }
    .modal-footer {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 15px;
    }
    .modal-cta {
      background: var(--emerald-gradient);
      color: #fff;
      border: none;
      border-radius: var(--border-radius-sm);
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-hard);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .modal-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    }
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }
    @media (max-width: 480px) {
      .wheel-container {
        width: min(240px, 75vw);
        height: min(170px, 50vw);
        max-width: 240px;
        max-height: 170px;
        perspective: 500px;
        margin-bottom: 15px;
      }
      .badge {
        width: 55px;
        height: 55px;
        margin-left: -27.5px;
        margin-top: -27.5px;
      }
      h1 {
        font-size: 1.4rem !important;
      }
    }

    /* Additional mobile and tablet responsive styles */
    @media (max-width: 768px) {
      body {
        padding: 5px;
        height: auto;
        min-height: 100vh;
      }

      .main-content-container {
        min-height: auto !important;
        padding: 15px 5px !important;
        gap: 10px !important;
      }

      .wheel-container {
        width: min(280px, 80vw);
        height: min(200px, 55vw);
        max-width: 280px;
        max-height: 200px;
        perspective: 600px;
        margin-bottom: 20px;
      }

      .badge {
        width: 65px;
        height: 65px;
        margin-left: -32.5px;
        margin-top: -32.5px;
      }

      h1 {
        font-size: 1.8rem !important;
        text-align: center;
        margin: 0 0 10px 0 !important;
      }

      .rewards-bar {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 280px;
      }

      .rewards-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        font-size: 1rem;
      }
    }

    @media (max-width: 320px) {
      .wheel-container {
        width: min(200px, 70vw);
        height: min(140px, 45vw);
        max-width: 200px;
        max-height: 140px;
        margin-bottom: 10px;
      }

      .badge {
        width: 45px;
        height: 45px;
        margin-left: -22.5px;
        margin-top: -22.5px;
      }

      h1 {
        font-size: 1.2rem !important;
        margin: 0 0 8px 0 !important;
      }

      .rewards-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
      }
    }
    .rewards-bar {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      margin-bottom: 10px;
      justify-content: center;
    }
    .rewards-btn {
      background: rgba(42, 42, 42, 0.8);
      backdrop-filter: blur(20px);
      border: 2px solid #FFD700;
      color: #fff;
      border-radius: var(--border-radius-sm);
      padding: 12px 20px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: var(--shadow-hard);
    }
    .rewards-btn:hover {
      background: rgba(58, 58, 58, 0.9);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
      transform: translateY(-2px);
      border-color: #FFA500;
    }
    .rewards-btn .points {
      background: var(--gold-gradient);
      color: #000;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: 700;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    .badge-list-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 10px;
      border-bottom: 1px solid #333;
    }
    .badge-list-item:last-child {
      border-bottom: none;
    }
    .badge-list-item img {
      width: 50px;
      height: 50px;
    }
    .badge-list-item .completed-check {
      color: #00ff88;
      font-size: 1.5em;
      margin-left: auto;
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* PowerOn Integration Button Styles */
    .redeem-action-btn {
      background: rgba(255,255,255,0.2) !important;
      color: #fff !important;
      border: none;
      transition: all 0.3s ease;
    }
    .redeem-action-btn:hover {
      background: rgba(255,255,255,0.3) !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    }
    .redeem-action-btn-disabled {
      background: rgba(255,255,255,0.05) !important;
      color: rgba(255,255,255,0.5) !important;
      cursor: not-allowed !important;
    }
    .redeem-merch-btn {
      background: rgba(255,255,255,0.2) !important;
      color: #fff !important;
      transition: all 0.3s ease;
    }
    .redeem-merch-btn:hover {
      background: rgba(255,255,255,0.3) !important;
      transform: scale(1.05);
    }
    .redeem-merch-btn-disabled {
      background: rgba(255,255,255,0.05) !important;
      color: rgba(255,255,255,0.3) !important;
      cursor: not-allowed !important;
    }

    /* Enhanced Glow Animation */
    @keyframes badgeQuestGlow {
      0% {
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.4), 0 0 16px rgba(255, 165, 0, 0.2);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
      }
      50% {
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.6), 0 0 24px rgba(255, 165, 0, 0.3), 0 0 4px rgba(0, 255, 136, 0.2);
        filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.4));
      }
      100% {
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.4), 0 0 16px rgba(255, 165, 0, 0.2);
        filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
      }
    }

    /* Notification Styles */
.custom-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  color: white;
  font-weight: 600;
  z-index: 30000;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-hard);
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.custom-notification.success {
  background: var(--emerald-gradient);
}
.custom-notification.error {
  background: var(--danger-gradient);
}
