/* ======================================================
   Long Nguyen Bao | REAPER CONFIG
   Premium Bio Link - Free Fire Support
   ====================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

a, button {
  cursor: none;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.25); }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 30px;
  display: inline-block;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .7; }
}

.loader-logo svg {
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.4));
  border-radius: 2px;
  transition: width .3s ease;
}

.loader-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
}

.loader-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ===== MOUSE GLOW ===== */
#mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: screen;
}

/* ===== CURSOR ===== */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}

#cursor-trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
}

/* ===== AUDIO BUTTON ===== */
#audio-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  opacity: 0;
  animation: fadeIn .6s ease 2s forwards;
}

#audio-btn:hover {
  background: rgba(255,255,255,.15);
  transform: scale(1.05);
}

#audio-btn.muted {
  opacity: .5;
}

#audio-btn svg {
  transition: transform .3s ease;
}

#audio-btn.muted svg {
  transform: scale(.8);
}

/* ===== BACKGROUND ===== */
#bg-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

#bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.03) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,.4) 100%);
  z-index: 2;
}

#bg-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 3;
}

/* ===== EFFECTS CANVAS ===== */
#snow-canvas,
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

#snow-canvas { z-index: 2; }
#particle-canvas { z-index: 3; }

/* ===== FLOATING CIRCLES ===== */
#floating-circles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  animation: floatCircle linear infinite;
}

@keyframes floatCircle {
  0% { transform: translateY(100vh) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg) scale(.5); opacity: 0; }
}

/* ===== FLOATING LINES ===== */
#floating-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.floating-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: floatLine linear infinite;
}

@keyframes floatLine {
  0% { transform: translateX(-100%) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(200vw) rotate(3deg); opacity: 0; }
}

/* ===== LIGHT BEAMS ===== */
#light-beams {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.03), transparent);
  animation: beamMove linear infinite;
}

@keyframes beamMove {
  0% { transform: translateX(-100%) scaleY(1); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(200vw) scaleY(.3); opacity: 0; }
}

/* ===== MAIN CONTENT ===== */
#main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition: opacity 1s ease, transform 1s ease;
}

#main-content.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== GLASS CARDS ===== */
.card {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  margin-bottom: 24px;

  /* Glassmorphism */
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.15);
  overflow: hidden;

  /* Animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%, rgba(255,255,255,.03) 100%);
  pointer-events: none;
  z-index: -1;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:last-child {
  margin-bottom: 0;
}

/* ===== AVATAR CARD ===== */
.avatar-card {
  text-align: center;
}



.avatar-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  border: 2px solid rgba(255,255,255,.3);
  box-shadow: 0 0 30px rgba(255,255,255,.1);
  overflow: hidden;
  transition: all .4s ease;
}

.avatar-wrap:hover {
  transform: scale(1.05) rotate(5deg);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 50px rgba(255,255,255,.2);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  line-height: 1.3;
}

.name-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,.5);
}

.status-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.status-icon {
  color: rgba(255,255,255,.5);
}

.status {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.typing-wrap {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.typing-cursor {
  animation: blink 1s step-end infinite;
  font-weight: 100;
  color: rgba(255,255,255,.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== CLOCK CARD ===== */
.visitor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.visitor-icon {
  font-size: 28px;
  line-height: 1;
}

.visitor-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.visitor-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
}

.visitor-count {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* ===== ABOUT CARD ===== */
.about-card {}

.about-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}

.about-text strong {
  color: #fff;
  font-weight: 600;
}

/* ===== SOCIAL CARD ===== */
.social-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  overflow: hidden;
  transition: all .3s ease;
  cursor: none;
}

.social-btn:last-child {
  margin-bottom: 0;
}

.social-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.social-btn:active {
  transform: translateY(0) scale(.98);
}

.social-icon {
  flex-shrink: 0;
  opacity: .8;
  transition: opacity .3s ease;
}

.social-btn:hover .social-icon {
  opacity: 1;
}

.btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-label {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.btn-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.btn-arrow {
  flex-shrink: 0;
  opacity: .3;
  transition: all .3s ease;
}

.social-btn:hover .btn-arrow {
  opacity: .7;
  transform: translateX(3px);
}

/* Zalo color */
.zalo-btn:hover .social-icon { color: #0068ff; }
.zalo-group-btn:hover .social-icon { color: #0068ff; }

/* Shine effect */
.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left .6s ease;
}

.social-btn:hover .shine {
  left: 150%;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transform: scale(0);
  pointer-events: none;
}

.ripple.active {
  animation: rippleAnim .6s ease-out forwards;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===== MUSIC CARD ===== */

.music-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.music-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.music-cover-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.music-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.music-cover-wrap:hover .music-cover {
  transform: scale(1.1);
}

.music-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.music-cover-wrap:hover .music-cover-overlay {
  opacity: 1;
}

.music-info {
  text-align: center;
}

.music-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.music-artist {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* Visualizer */
.visualizer-wrap {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
}

#visualizer {
  width: 100%;
  height: 100%;
}

/* Progress Bar */
.progress-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,.4);
  min-width: 36px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  position: relative;
  cursor: none;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,.6), #fff);
  border-radius: 2px;
  transition: width .1s linear;
  position: relative;
}

.progress-thumb {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity .2s ease;
}

.progress-bar:hover .progress-thumb {
  opacity: 1;
}

/* Controls */
.music-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  cursor: none;
}

.ctrl-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: scale(1.05);
}

.ctrl-btn:active {
  transform: scale(.95);
}

.play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.play-btn:hover {
  background: rgba(255,255,255,.18);
}

/* ===== FOOTER CARD ===== */
.footer-card {
  text-align: center;
}

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-text strong {
  color: rgba(255,255,255,.5);
}

.footer-heart {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
  color: rgba(255,255,255,.6);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

.footer-heart:hover .heart {
  color: #fff;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes blurIn {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes rotateRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .card {
    padding: 28px 24px;
    border-radius: 26px;
    margin-bottom: 20px;
  }

  .card::before {
    border-radius: 26px;
  }

  .name {
    font-size: 20px;
  }

  .name-sub {
    font-size: 12px;
  }

  .avatar-wrap {
    width: 110px;
    height: 110px;
  }

  .music-cover-wrap {
    width: 100px;
    height: 100px;
  }

  #audio-btn {
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
  }

  #main-content {
    padding: 12px;
  }

  .social-btn {
    padding: 14px 16px;
  }

  .visitor-count {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 24px 20px;
    border-radius: 24px;
    margin-bottom: 18px;
  }

  .card::before {
    border-radius: 24px;
  }

  .name {
    font-size: 18px;
  }

  .name-sub {
    font-size: 11px;
  }

  .avatar-wrap {
    width: 100px;
    height: 100px;
  }

  .music-cover-wrap {
    width: 90px;
    height: 90px;
  }

  .social-btn {
    padding: 12px 14px;
    gap: 10px;
  }

  .btn-label {
    font-size: 13px;
  }

  .btn-sub {
    font-size: 11px;
  }

  .visitor-count {
    font-size: 22px;
  }

  #main-content {
    padding: 20px 14px;
  }
}

@media (max-width: 360px) {
  .card {
    padding: 20px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .card::before {
    border-radius: 20px;
  }

  .name {
    font-size: 17px;
  }

  .name-sub {
    font-size: 10px;
  }

  .avatar-wrap {
    width: 90px;
    height: 90px;
  }

}

/* ===== TOUCH DEVICE ADJUSTMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  body, a, button {
    cursor: auto;
  }

  #mouse-glow,
  #cursor-dot,
  #cursor-trail-canvas {
    display: none;
  }

  .social-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .avatar-wrap:hover {
    transform: none;
  }
}

/* ===== TIKTOK MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 32px 24px 24px;
  position: relative;
  transform: translateY(20px) scale(.95);
  transition: transform .3s ease;
}

.modal-overlay.active .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.modal-icon {
  text-align: center;
  margin-bottom: 16px;
  color: rgba(255,255,255,.6);
}

.modal-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.modal-sub {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: #fff;
  font-family: inherit;
  text-align: left;
  transition: all .3s ease;
}

.modal-option:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.modal-option:active {
  transform: translateY(0) scale(.98);
}

.modal-option-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,.5);
  display: flex;
}

.modal-option:hover .modal-option-icon {
  color: #fff;
}

.modal-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-option-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.modal-option-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.modal-option-arrow {
  flex-shrink: 0;
  opacity: .3;
  transition: all .3s ease;
}

.modal-option:hover .modal-option-arrow {
  opacity: .7;
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .modal-panel {
    padding: 28px 20px 20px;
    border-radius: 20px;
  }
  .modal-title { font-size: 18px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
