.no-drag-img {
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  cursor: default;
  touch-action: manipulation; /* tránh long-press hành vi lạ trên mobile */
  -webkit-touch-callout: none; /* tắt menu long-press trên iOS */
}
/* 🛡️ Overlay chống xem mã nguồn */
#anti-debug-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
background: radial-gradient(circle at center, rgba(183,108,246,0.3), #000);  color: #b76cf6;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 99999;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.5s ease;
}

#anti-debug-overlay h1 {
  font-size: 48px;
  color: #b76cf6;
  text-shadow: 0 0 20px #b76cf6;
}

#anti-debug-overlay p {
  font-size: 1.1em;
  color: #d8b9ff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* WebKit (Chrome, Edge, Safari) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Utility: áp lên mọi container nội bộ nếu có overflow */
.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}


.partners-section {
  margin-top: 60px;
  text-align: center;
  color: white;
}

.partners-section h2 {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #b76cf6;
  letter-spacing: 1px;
}

.partners-table {
  width: 85%;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
}

.partners-table th, .partners-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(183,108,246,0.1);
  text-align: left;
  font-size: 15px;
  color: #ddd;
}

.partners-table tr:hover {
  background: rgba(183,108,246,0.15);
  cursor: pointer;
  transition: 0.3s;
}

/* Popup Partner Info */
.partner-popup {
  position: absolute;
  display: none;
  background: rgba(20, 0, 30, 0.95);
  border: 1px solid #b76cf6;
  border-radius: 10px;
  padding: 15px 20px;
  color: white;
  box-shadow: 0 0 25px rgba(183,108,246,0.4);
  max-width: 260px;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.partner-popup h3 {
  color: #b76cf6;
  margin-bottom: 6px;
}

.partner-popup a {
  color: #00ffa5;
  text-decoration: none;
  font-weight: 600;
}
.partner-popup a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/* 🚫 Tắt bôi đen, chọn chữ trên toàn trang */
* {
  -webkit-user-select: none; /* Safari, Chrome */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge cũ */
  user-select: none;         /* Chuẩn */
}
body.scrollable {
  overflow-y: scroll; /* Cho phép cuộn khi cần */
}
html, body {
    overflow-y: hidden;
  height: 100%;
    overflow-y: auto;           /* hoặc 'scroll' nếu muốn luôn có layout ổn định */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge cũ */
    -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* mượt trên mobile */
}

/* Cho phép copy nếu cần ở vài chỗ đặc biệt */
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

body:not(.scrollable) {
  overscroll-behavior: contain;
  pointer-events: auto;
}


html {
  transform-origin: top left;
}
body {
  /* 🌌 Nền tím đen nâng cấp — có độ sâu & ánh tím trung tâm */
  background: radial-gradient(circle at 25% 25%, #3a0075 0%, #180028 40%, #000 100%);
  background-attachment: fixed;
  color: #f6edff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: background 1.5s ease;
}

/* 🌫️ Lớp sương mờ chuyển động mềm mại */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 60% 30%, rgba(183,108,246,0.18), transparent 70%),
    radial-gradient(circle at 25% 75%, rgba(108,0,255,0.15), transparent 80%),
    radial-gradient(circle at 80% 60%, rgba(255,120,255,0.12), transparent 75%);
  filter: blur(130px) brightness(1.15);
  animation: auroraFloat 14s ease-in-out infinite alternate;
  z-index: -2;
}

/* 💫 Lớp ánh sáng “pulse” nhịp nhẹ — tạo chiều sâu */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.06), transparent 80%);
  filter: blur(80px);
  animation: softPulse 10s ease-in-out infinite alternate;
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -3;
}

/* ✨ Animation aurora — ánh tím di chuyển chậm */
@keyframes auroraFloat {
  0%   { transform: translate(-20px, -10px) scale(1); opacity: 0.6; }
  50%  { transform: translate(25px, 20px) scale(1.05); opacity: 0.8; }
  100% { transform: translate(-15px, 25px) scale(1.08); opacity: 0.65; }
}

/* 🌟 Animation nhịp sáng nhẹ nhàng */
@keyframes softPulse {
  0%   { opacity: 0.25; transform: scale(1); }
  50%  { opacity: 0.5; transform: scale(1.05); }
  100% { opacity: 0.25; transform: scale(1); }
}




#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

header {
  text-align: center;
  margin-top: 40px;
  color: #fff;
}


.logo {
  font-size: 2.2em;
  font-weight: 700;
  color: #b76cf6;
  letter-spacing: 2px;
  margin-bottom: 10px;
  height: 40px; /* giữ ổn định chiều cao khi gõ chữ */
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff, #b76cf6, #fff);
  background-size: 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
}
@keyframes shine {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}


h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #b26cff;
}

p {
  font-size: 1rem;
  color: #c9b8ff;
}

/* ===== 🔔 Notification ===== */
.notification {
  position: fixed;
  top: 25px;
  right: 25px;
  background: linear-gradient(135deg, rgba(40, 0, 80, 0.9), rgba(10, 0, 30, 0.95));
  border: 1px solid rgba(183, 108, 246, 0.3);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(183, 108, 246, 0.4);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.4px;
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backdrop-filter: blur(8px);
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification i {
  color: #b76cf6;
  font-size: 18px;
  animation: bellShake 1.5s infinite ease-in-out;
}

.notification button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.notification button:hover {
  color: #b76cf6;
  transform: scale(1.1);
}

/* Animation */
@keyframes bellShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(8deg); }
}
.old-price {
  color: #ff4d4d;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 15px;
  opacity: 0.7;
  transition: 0.3s;
}

.new-price {
  color: #00ffcc;
  font-size: 19px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0,255,204,0.6);
  transition: 0.3s;
}
.tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 6px;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Mỗi loại tag có màu riêng */
.tag.plus {
  background: linear-gradient(90deg, #8a2be2, #b26cff);
}

.tag.pro {
  background: linear-gradient(90deg, #00b4d8, #48cae4);
}

.tag.premium {
  background: linear-gradient(90deg, #ff0033, #ff6b6b);
}

/* Typing hiệu ứng cho .brq */
.typing {
  border-right: 3px solid #b26cff;
  white-space: nowrap;
  overflow: hidden;
  animation: caretBlink 0.75s infinite;
}

@keyframes caretBlink {
  50% { border-color: transparent; }
}


header .logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #b26cff;
  border: 3px solid #b26cff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 12px;
  margin-bottom: 12px;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  text-shadow: 0 0 10px #b26cff;
}

header p {
  font-size: 1rem;
  color: #c9b8ff;
}

.pricing {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 20px 100px;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #b26cff;
}
/* ===== Thanh thông báo chính ===== */
.top-notice {
  position: sticky;
  top: 0;
  text-align: center;
  padding: 12px 0;
  color: #f5e8ff;
  font-size: 0.95em;
  letter-spacing: 0.3px;
  backdrop-filter: blur(12px);
  background: rgba(20, 10, 40, 0.55);
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 0 25px rgba(183,108,246,0.25);
  border-radius: 0 0 12px 12px;
}

/* ===== Tia sét ===== */
.lightning {
  position: absolute;
  width: 2px;
  height: 120px; /* tia sét dài hơn */
  opacity: 0;
  background: linear-gradient(to bottom, var(--color, #fff), transparent);
  transform-origin: center top;
  pointer-events: none;
  filter: blur(1px) drop-shadow(0 0 8px var(--color));
  animation: lightningStrike 0.45s ease-out forwards;
}

/* 💥 Hiệu ứng lóe và co dần */
@keyframes lightningStrike {
  0% {
    opacity: 0;
    transform: scaleY(0.3) rotate(var(--angle));
    filter: brightness(2);
  }
  25% {
    opacity: 1;
    transform: scaleY(1.05) rotate(var(--angle));
    filter: brightness(3);
  }
  70% {
    opacity: 0.9;
    transform: scaleY(1) rotate(var(--angle));
  }
  100% {
    opacity: 0;
    transform: scaleY(0.5) rotate(var(--angle));
  }
}


@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
     #cheat-game {
    position: fixed;
    top: 120px;
    right: 0;
    background: rgba(183,108,246,0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px 0 0 25px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    overflow: hidden;
    opacity: 0;
    transform: translateX(120%);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow:
      0 0 25px rgba(183,108,246,0.5),
      inset 0 0 10px rgba(255,255,255,0.08);
    transition:
      transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.8s ease,
      box-shadow 0.5s ease,
      background 0.5s ease;
  }

  /* Khi hiện ra */
  #cheat-game.show {
    opacity: 1;
    transform: translateX(0);
    animation:
      pulseGlow 2.5s infinite alternate ease-in-out,
      floaty 5s infinite ease-in-out;
  }

  /* Hover sáng hơn */
  #cheat-game:hover {
    background: rgba(183,108,246,0.35);
    box-shadow:
      0 0 30px rgba(183,108,246,0.9),
      inset 0 0 12px rgba(255,255,255,0.15);
    animation: none;
  }

  /* Khi ẩn đi */
  #cheat-game.hide {
    animation: vanishGlow 0.8s forwards ease-in-out;
  }

  /* Hiệu ứng tan biến tím */
  @keyframes vanishGlow {
    0% {
      opacity: 1;
      transform: translateX(0) scale(1);
      box-shadow: 0 0 30px rgba(183,108,246,0.8);
    }
    50% {
      opacity: 0.6;
      transform: translateX(30%) scale(0.95);
      box-shadow: 0 0 60px rgba(183,108,246,0.9);
      background: rgba(183,108,246,0.25);
    }
    100% {
      opacity: 0;
      transform: translateX(120%) scale(0.7);
      box-shadow: 0 0 80px rgba(183,108,246,0);
    }
  }

  /* Hiệu ứng “thở” */
  @keyframes pulseGlow {
    0% {
      box-shadow:
        0 0 20px rgba(183,108,246,0.5),
        inset 0 0 8px rgba(255,255,255,0.1);
    }
    100% {
      box-shadow:
        0 0 35px rgba(183,108,246,0.9),
        inset 0 0 12px rgba(255,255,255,0.2);
    }
  }

  /* Trôi nhẹ */
  @keyframes floaty {
    0%, 100% {
      transform: translateX(0) translateY(0);
    }
    50% {
      transform: translateX(0) translateY(-3px);
    }
  }

  /* Viền neon chạy */
  #cheat-game::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px 0 0 25px;
    padding: 2px;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(183,108,246,1) 40%,
      rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    animation: borderMove 2s linear infinite;
    -webkit-mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  @keyframes borderMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }


.card {
  position: relative;
  background: linear-gradient(145deg, rgba(30,0,50,0.85), rgba(15,0,30,0.9));
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 6px 18px rgba(140,75,240,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
  transform-style: preserve-3d; /* cần thiết cho nghiêng 3D */
  perspective: 1000px;
  
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(178,108,255,0.6);
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.price {
  font-size: 1.2rem;
  color: #c99cff;
}

.price span {
  font-size: 0.9rem;
  color: #aaa;
}

.card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Ghi chú từng dòng */
.card-body li {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 14px 10px 36px;
  border-radius: 10px;
  color: #d8cef9;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  transition: all 0.35s ease;
  border: 1px solid rgba(183, 108, 246, 0.05);
  box-shadow: inset 0 0 12px rgba(183, 108, 246, 0.05);
  overflow: hidden;
}

/* Hiệu ứng glow tím khi hover */
.card-body li:hover {
  color: #fff;
  border-color: rgba(183, 108, 246, 0.6);
  box-shadow:
    0 0 18px rgba(183, 108, 246, 0.35),
    inset 0 0 20px rgba(183, 108, 246, 0.1);
  background: rgba(183, 108, 246, 0.06);
  transform: translateY(-2px);
}

/* Dấu chấm phát sáng bên trái */
.card-body li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(183,108,246,1) 0%, rgba(183,108,246,0.2) 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(183,108,246,0.8);
  transition: all 0.3s ease;
  opacity: 0.8;
}

/* Khi hover — đèn chấm sáng lên */
.card-body li:hover::before {
  box-shadow: 0 0 18px rgba(183,108,246,0.9);
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}


.card-footer {
  margin-top: 20px;
}




footer {
  margin: 0 !important;
  margin-top: auto; /* dính đáy */
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 30px 20px;
  background: rgba(20, 15, 30, 0.6);
  border-top: 1px solid rgba(183,108,246,0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(183,108,246,0.1);
  color: #bbaef5;
}

.yt-outline {
    font-weight: 700;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.yt-outline::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, #ff0000 50%, transparent 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: ytWave 4s infinite ease-in-out;
    opacity: 0;
}

@keyframes ytWave {
    0%   { opacity: 0; background-position: -200% 0; }
    10%  { opacity: 1; background-position: -160% 0; }
    60%  { opacity: 1; background-position: 140% 0; }
    75%  { opacity: 0; background-position: 200% 0; }
    100% { opacity: 0; }
}


footer p {
  margin-top: auto; /* dính đáy */
  font-size: 13px;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* Icon cơ bản */
footer .socials a {
  position: relative;
  color: #bbaef5;
  font-size: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  justify-content: center;
  align-items: center;
}

/* Hiệu ứng sáng nhẹ */
footer .socials a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(183,108,246,0.8);
  transform: translateY(-3px) scale(1.15);
}

/* Nhãn mặc định */
footer .socials a::after {
  content: attr(data-label);
  position: absolute;
  background: rgba(183,108,246,0.12);
  border: 1px solid rgba(183,108,246,0.25);
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(183,108,246,0.25);
}

/* Icon đầu tiên (Facebook) → nhãn hiện bên phải */
footer .socials a:first-child::after {
  right: 40px;
  transform: translateX(10px);
}
.header-glow {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183,108,246,0.25), transparent 70%);
  filter: blur(80px);
  z-index: 0;
  animation: glowMove 6s ease-in-out infinite alternate;
}
body::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
@keyframes glowMove {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  100% { transform: translateX(-48%) scale(1.1); opacity: 1; }
}

/* Icon thứ hai (Discord) → nhãn hiện bên trái */
footer .socials a:last-child::after {
  left: 40px;
  transform: translateX(10px);
}

/* Khi hover → nhãn trượt ra và sáng */
footer .socials a:hover::after {
  opacity: 1;
  transform: translateX(0);
  background: rgba(183,108,246,0.2);
  box-shadow: 0 0 18px rgba(183,108,246,0.4);
}

/* Màu riêng từng mạng */
footer .socials a .fa-facebook:hover {
  color: #1877f2;
  text-shadow: 0 0 18px rgba(24,119,242,0.8);
}

footer .socials a .fa-discord:hover {
  color: #5865f2;
  text-shadow: 0 0 18px rgba(88,101,242,0.8);
}

footer p {
  font-size: 0.9rem;
  color: #888;
}
.pricing-section {
  padding: 80px 0;
  /* background: radial-gradient(circle at top, #1a001f, #0a0010); */
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #c084fc, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
    text-shadow: 0 0 10px rgba(183,108,246,0.5);
  animation: pulseTitle 3s ease-in-out infinite;
}
@keyframes pulseTitle {
  0%, 100% { text-shadow: 0 0 10px rgba(183,108,246,0.5); transform: scale(1); }
  50% { text-shadow: 0 0 25px rgba(183,108,246,0.8); transform: scale(1.03); }
}
/* =============================== */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  padding: 30px 60px;
  margin-top: 40px;
  perspective: 1000px;
  transition: all 0.4s ease;
  animation: floatingCards 6s ease-in-out infinite;
}

/* 💫 Hiệu ứng "đưa qua lại" mượt mà */
@keyframes floatingCards {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(-6px); }
  100% { transform: translateX(0); }
}
.cards::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(183,108,246,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.cards .card:nth-child(odd) {
  animation: floatLeftRight 7s ease-in-out infinite;
}
.cards .card:nth-child(even) {
  animation: floatLeftRight 7s ease-in-out infinite reverse;
}


.logo-text {
  display: inline-block;
  font-size: 52px;
  font-weight: 700;
  color: #b76cf6;
  letter-spacing: 2px;
  height: 60px; /* 👈 cố định chiều cao */
  line-height: 60px; /* 👈 giúp căn giữa dọc */
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
}

.card {
  background: #150021;
  border: 1px solid #3b0b59;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #c084fc;
}

.price {
  font-size: 1.2rem;
  color: #d8b4fe;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.card-body li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.btn-buy {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05); /* gần như trong suốt */
  color: #b76cf6;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(183, 108, 246, 0.25);
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 rgba(183, 108, 246, 0);
}

.btn-buy:hover {
  background: rgba(183, 108, 246, 0.15);
  border-color: rgba(183, 108, 246, 0.8);
  color: #fff;
  box-shadow: 0 0 20px rgba(183, 108, 246, 0.8);
  transform: scale(1.05) translateY(-2px);
}

/* Thêm hiệu ứng nhấn */
.btn-buy:active {
  transform: scale(0.97);
  box-shadow: 0 0 12px rgba(183, 108, 246, 0.6);
}
.discount-box {
  margin-top: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.discount-box input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(183, 108, 246, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
  width: 180px;
  outline: none;
  text-align: center;
  transition: 0.3s;
}

.discount-box input:focus {
  border-color: #b76cf6;
  box-shadow: 0 0 8px rgba(183, 108, 246, 0.6);
}

.discount-box button {
  background: transparent;
  border: 1px solid rgba(183, 108, 246, 0.4);
  color: #b76cf6;
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.discount-box button:hover {
  background: rgba(183, 108, 246, 0.2);
  color: #fff;
  box-shadow: 0 0 10px rgba(183, 108, 246, 0.8);
}

#discount-msg {
  font-size: 14px;
  color: #00ffae;
  height: 20px;
  text-shadow: 0 0 6px rgba(0, 255, 204, 0.6);
}


.chatgpt-card .sub-card {
  position: relative;
  background: linear-gradient(145deg, rgba(40, 0, 60, 0.7), rgba(20, 0, 30, 0.8));
  border: 1px solid rgba(170, 100, 255, 0.3);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 0 12px rgba(160, 80, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Hiệu ứng ánh sáng tím viền động */
.chatgpt-card .sub-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 16px;
  background: linear-gradient(120deg, #a855f7, #7e22ce, #c084fc);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(6px);
}

.chatgpt-card .sub-card:hover::before {
  opacity: 0.6;
  animation: lightSweep 2.5s linear infinite;
}

.chatgpt-card .sub-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.chatgpt-card .sub-card h4 {
  position: relative;
  z-index: 1;
  color: #d6b4ff;
  margin-bottom: 8px;
  font-size: 1.05rem;
  text-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
  letter-spacing: 0.5px;
}

.chatgpt-card .sub-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chatgpt-card .sub-card li {
  font-size: 0.95rem;
  padding: 5px 0;
  color: #e6d3ff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease;
}

.chatgpt-card .sub-card li:hover {
  color: #fff;
}

/* Animation ánh sáng chạy viền */
@keyframes lightSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}


@keyframes glow {
  from { text-shadow: 0 0 10px #a855f7; }
  to { text-shadow: 0 0 20px #c084fc; }
}/* --- Reveal khi scroll: chỉ thành phần có class .reveal bị ẩn trước --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
/* Khi JS thêm class .reveal-active thì hiện ra */
.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Card cơ bản (không bị ẩn) */
.card {
  position: relative;
  background: linear-gradient(145deg, rgba(30,0,50,0.85), rgba(15,0,30,0.9));
  border-radius: 16px;
  padding: 22px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 6px 18px rgba(140,75,240,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

/* Hover nâng card */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(140,75,240,0.28);
}

/* more-info mặc định ẩn, chỉ hiện khi hover card */
.more-info {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.45s ease;
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 0 12px; /* padding tăng khi hiển thị */
  border-radius: 10px;
}

/* Khi hover vào card thì chỉ phần more-info của card đó hiện */
.card:hover .more-info {
  opacity: 1;
  transform: translateY(0);
  max-height: 220px; /* set đủ lớn để chứa nội dung */
  padding: 12px;
}

/* Tinh chỉnh cho sub-card (ChatGPT) */
.chatgpt-card .sub-card {
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* highlight khi hover sub-card */
.chatgpt-card .sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(150,80,240,0.18);
}
/* Gợn sáng khi click */
.ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(183,108,246,0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
  z-index: 5;
}

@keyframes rippleAnim {
  to {
    transform: scale(15);
    opacity: 0;
  }
}

@keyframes flashGlow {
  from { box-shadow: 0 0 20px rgba(183,108,246,0.6); }
  to { box-shadow: 0 0 5px rgba(183,108,246,0.2); }
}
/* ánh sáng theo chuột (nếu bạn dùng JS để set --xPos/--yPos) */
.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--xPos, 50%) var(--yPos, 50%), rgba(170,85,255,0.08), transparent 25%);
  pointer-events: none;
  transition: background 0.1s linear;
}
.card.tilt {
  transition: transform 0.05s ease-out;
}

/* một vài tinh chỉnh typography */
.card-header h3 { color: #e7d7ff; margin:0 0 6px; }
.price { color: #e3c2ff; margin:0; font-weight:600; }
.card-body ul { list-style: none; padding-left: 0; margin: 10px 0; color:#dcd6ff; }
.more-info p, .more-info ul { color: #efe6ff; font-size: 0.95rem; margin: 6px 0; }
.service-tags {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
/* 🔲 Khung nổi bật cho PLUS / PRO / Premium */
.highlight-box {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(183,108,246,0.3);
}

/* Tùy từng loại màu */
.plus {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: #fff;
}

.pro {
  background: linear-gradient(135deg, #ff4ecd, #b76cf6);
  color: #fff;
}

.premium {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
}

/* Hiệu ứng hover */
.highlight-box:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(183,108,246,0.7);
}
.typing-text {
  font-size: 24px;
  font-weight: 600;
  color: #a66bff;
  height: 30px;
  margin-bottom: 10px;
  min-height: 30px;
  text-shadow: 0 0 10px rgba(166, 107, 255, 0.5);
}
.payment-section {
  text-align: center;
  margin-top: 50px;
}

/* Container tổng thể */
.qr-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
}

/* Ảnh QR */
.qr-container img {
  width: 240px;
  height: 240px;
  border-radius: 18px;
  padding: 10px;
  background: radial-gradient(circle at top left, rgba(183,108,246,0.15), rgba(0,0,0,0.8));
  box-shadow:
    0 0 20px rgba(183,108,246,0.3),
    inset 0 0 15px rgba(183,108,246,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover: QR phát sáng & nhấp nháy nhẹ */
.qr-container img:hover {
  transform: scale(1.06) rotateZ(1deg);
  box-shadow:
    0 0 35px rgba(183,108,246,0.8),
    0 0 15px rgba(255,255,255,0.4),
    inset 0 0 20px rgba(183,108,246,0.3);
  animation: pulseGlow 1.5s infinite alternate;
}

/* Text thông tin bên dưới QR */
#qr-info {
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  color: #e3d8ff;
  line-height: 1.5;
  letter-spacing: 0.4px;
  background: rgba(40, 20, 60, 0.3);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(183,108,246,0.25);
  box-shadow: 0 0 15px rgba(183,108,246,0.15);
  transition: 0.3s ease;
}

#qr-info:hover {
  background: rgba(183,108,246,0.1);
  box-shadow: 0 0 25px rgba(183,108,246,0.3);
}

/* Hiệu ứng khi QR xuất hiện */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hiệu ứng đập nhịp ánh sáng */
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 8px rgba(183,108,246,0.3)); }
  100% { filter: drop-shadow(0 0 15px rgba(183,108,246,0.8)); }
}

.payment-inputs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-inputs input {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
  width: 200px;
}

.payment-inputs button {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.payment-inputs button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(183,108,246,0.6);
}
/* Popup nền tối */
/* ===== POPUP NỀN ===== */
.qr-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(5, 0, 15, 0.75);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  z-index: 9999;
  animation: fadeInPopup 0.5s ease forwards;
}

@keyframes fadeInPopup {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* =============================== */
/* KHUNG POPUP CHÍNH */
/* =============================== */
.qr-popup-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  padding: 50px 70px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(183, 108, 246, 0.2);
  box-shadow:
    0 0 40px rgba(183, 108, 246, 0.08),
    inset 0 0 25px rgba(183, 108, 246, 0.05);
  overflow: hidden;
  isolation: isolate;
  transition: all 0.5s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  max-width: 1500px;
  padding: 40px 60px;
  border: 1px solid rgba(183,108,246,0.3);
  border-radius: 24px;
  box-shadow:
    0 0 60px rgba(183,108,246,0.4),
    inset 0 0 20px rgba(183,108,246,0.1);
  animation: popupSlide 0.5s ease forwards;
}

/* nút đóng tinh tế */
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 5;
}
.close-btn:hover {
  color: #b76cf6;
  transform: scale(1.2) rotate(90deg);
  opacity: 1;
}
/* ===== KHUNG CHÍNH NGANG ===== */



/* ===== CỘT TRÁI ===== */
.qr-left {
  flex: 1;
  text-align: left;
  color: #eee;
}

.qr-left h2 {
  font-size: 28px;
  color: #b76cf6;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(183,108,246,0.8);
}

.qr-left #qr-info {
  font-size: 16px;
  background: rgba(183,108,246,0.1);
  border-left: 3px solid #b76cf6;
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.qr-highlight {
  background: rgba(255,255,255,0.05);
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(183,108,246,0.25);
  box-shadow: 0 0 20px rgba(183,108,246,0.15);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CỘT PHẢI ===== */
.qr-right {
  position: relative;
  width: 260px;
  height: 260px;
}

.qr-right img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 25px rgba(183,108,246,0.3);
  transition: all 0.4s ease;
}

.qr-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(183,108,246,0.8);
}

/* Gửi bill */
.send-bill-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg, #b76cf6, #6c00b6);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.send-bill-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #b76cf6;
}

/* Hướng dẫn thanh toán */
.payment-steps {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #b76cf6;
  padding: 12px 18px;
  border-radius: 10px;
}
.payment-steps h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #b76cf6;
}
.payment-steps ol {
  margin-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}

/* Hiệu ứng */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.copy-text {
  background: rgba(183, 108, 246, 0.1);
  border: 1px solid rgba(183, 108, 246, 0.4);
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 6px;
  font-style: italic;
  color: #d8b6ff;
}

.copy-btn {
  background: linear-gradient(90deg, #8a2be2, #b76cf6);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 13px;
  padding: 4px 10px;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* Partner box góc trên trái */
.mini-partner-box {
  position: fixed;
  top: 20px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(20, 0, 30, 0.4);
  border: 1px solid rgba(183,108,246,0.3);
  border-radius: 12px;
  color: #d8bfff;
  font-size: 13px;
    text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(246, 108, 184, 0.25);
  transition: all 0.3s ease;
  z-index: 999;
}

.mini-partner-box img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(246, 108, 191, 0.6);
  transition: 0.3s ease;
}

.mini-partner-box:hover {
  color: #eee;
  background: rgb(255, 132, 183);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 116, 241, 0.4);
}

.mini-partner-box:hover img {
  transform: rotate(10deg) scale(1.1);
}

/* Popup chi tiết */
.mini-partner-popup {
  position: fixed;
  top: 85px;
  left: 25px;
  background: rgba(30, 0, 50, 0.95);
  border: 1px solid #b76cf6;
  border-radius: 12px;
  padding: 12px 16px;
  width: 240px;
  color: #eee;
  font-size: 13px;
  box-shadow: 0 0 25px rgba(183,108,246,0.3);
  display: none;
  animation: fadeIn 0.25s ease;
}
/* --- Discord Section --- */
#discord-services {
  margin-top: 100px;
}

.section-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: -5px;
  margin-bottom: 30px;
}

/* Nitro màu tím hồng Discord */
.title.nitro {
  color: #ff73fa;
  text-shadow: 0 0 10px rgba(255,115,250,0.6);
}

/* Boost màu tím sáng */
.title.boost {
  color: #7289da;
  text-shadow: 0 0 10px rgba(114,137,218,0.6);
}

.mini-partner-popup h4 {
  margin: 0 0 6px;
  color: #b76cf6;
  font-size: 14px;
}

.mini-partner-popup p {
  margin: 0;
  color: #ddd;
  font-size: 12.5px;
  line-height: 1.4;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.copy-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(183, 108, 246, 0.6);
}

.copy-btn.copied {
  background: #00ffa5;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 255, 165, 0.6);
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 0 10px rgba(183, 108, 246, 0.08);
  backdrop-filter: blur(6px);
}

/* Gói mặc định */
.option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(183, 108, 246, 0.15);
  color: #cfc4f9;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Hover — nhẹ nhàng phát sáng tím */
.option:hover {
  color: #fff;
  border-color: rgba(183, 108, 246, 0.5);
  box-shadow: 0 0 14px rgba(183, 108, 246, 0.45);
  transform: translateY(-2px);
  background: rgba(183, 108, 246, 0.08);
}

/* Active — tàng hình, sáng viền tím, glow mờ mịn */
.option.active {
  background: rgba(183, 108, 246, 0.12);
  border-color: rgba(183, 108, 246, 0.8);
  color: #fff;
  box-shadow:
    0 0 20px rgba(183,108,246,0.7),
    inset 0 0 25px rgba(183,108,246,0.2);
  transform: scale(1.03);
}
/* Tooltip style */
.option::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 0, 40, 0.95);
  color: #b76cf6;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  font-size: 13px;
  box-shadow: 0 0 8px rgba(183,108,246,0.25);
}

.option::before {
  content: "";
  position: absolute;
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(26, 0, 40, 0.95) transparent transparent transparent;
  opacity: 0;
  transition: 0.25s ease;
}

.option:hover::after,
.option:hover::before {
  opacity: 1;
  bottom: 120%;
}
.option.tooltip-active::after,
.option.tooltip-active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px) scale(1);
}

/* 💫 Cực mượt - auto scale icon đều nhau */
.title {
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--brand-color, #fff);
  cursor: pointer;
  line-height: 1.2;
  transition: color .3s ease, transform .3s ease;
}

/* Hover: chữ tan biến */

/* Hover: logo hiện + phóng nhẹ */
.title:hover::after {
  opacity: 1;
  transform: scale(calc(var(--logo-scale, 1) * 1.08));
  filter: drop-shadow(0 0 10px var(--brand-color, #b76cf6));
}

/* =====================
   🎨 Màu & icon từng app
   ===================== */

/* Netflix */
.title.netflix::after {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/0/08/Netflix_2015_logo.svg");
}

/* YouTube */
.title.youtube::after {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/b/b8/YouTube_Logo_2017.svg");
}

/* ChatGPT */
.title.chatgpt::after {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/0/04/ChatGPT_logo.svg");
}

/* Canva */
.title.canva::after {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/e/e5/Canva_logo.svg");
}

/* 💎 Hover feedback thêm sáng nhẹ */
.title:hover::after {
  filter: drop-shadow(0 0 14px var(--brand-color, #b76cf6));
}
/* --------------------------
   💜 Responsive Payment Layout
--------------------------- */

/* ✅ Bố cục mặc định (Desktop) */
.payment-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-info, .qr-section {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 20px 25px;
  flex: 1;
  color: #fff;
  box-shadow: 0 0 15px rgba(183,108,246,0.15);
  transition: 0.3s;
}

.payment-info:hover, .qr-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(183,108,246,0.3);
}

.qr-section {
  text-align: center;
}

.qr-section img {
  width: 260px;
  height: 260px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.submit-btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #a855f7, #7e22ce);
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b76cf6, #9333ea);
  transform: scale(1.05);
}

/* --------------------------
   📱 Mobile Responsive
--------------------------- */
@media (max-width: 768px) {
  .payment-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 25px;
  }

  .payment-info, .qr-section {
    width: 100%;
    max-width: 500px;
  }

  .qr-section img {
    width: 80%;
    height: auto;
  }

  .submit-btn {
    width: 90%;
    padding: 15px;
    font-size: 16px;
  }
}
.pricing-section {
  margin: 80px auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(183,108,246,0.2);
}

.section-title {
  text-align: center;
  font-size: 1.9em;
  color: #b76cf6;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 35px;
  font-size: 1.05em;
}

/* 🧠 Bổ sung cho cực nhỏ (điện thoại 360px) */
@media (max-width: 420px) {
  .payment-info, .qr-section {
    padding: 15px;
  }

  .qr-section img {
    width: 95%;
  }

  .submit-btn {
    width: 100%;
  }
}
.m365-date {
  position: relative;
  display: inline-block;
  cursor: help;
}

.m365-date::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(183,108,246,0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.m365-date:hover::after {
  opacity: 1;
}
.partners-section {
  margin-top: 80px;
  text-align: center;
  color: #fff;
}

.partners-section h2 {
  font-size: 1.9em;
  margin-bottom: 30px;
  color: #b76cf6;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(183,108,246,0.5);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px 40px;
}

.partner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(183,108,246,0.3);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(183,108,246,0.1);
  width: 260px;
  padding: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.partner:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(183,108,246,0.4);
  border-color: rgba(183,108,246,0.6);
}

/* hiệu ứng tia sáng quét qua */
.partner::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(183,108,246,0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}
.partner:hover::before {
  left: 125%;
}

/* text */
.partner h3 {
  color: #b76cf6;
  font-weight: 700;
  margin-bottom: 6px;
}
.partner p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}
.partner a {
  color: #00ffa5;
  font-weight: 600;
  text-decoration: none;
}
.partner a:hover {
  text-decoration: underline;
}

/* responsive */
@media (max-width: 768px) {
  .partners-grid {
    gap: 16px;
  }
  .partner {
    width: 90%;
  }
}
.partner-detail {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  z-index: 999;
}
.partner-detail.show { opacity: 1; }
.popup-content {
  background: rgba(20,0,40,0.9);
  border: 1px solid #b76cf6;
  border-radius: 14px;
  padding: 20px 30px;
  color: #fff;
  box-shadow: 0 0 25px rgba(183,108,246,0.3);
  text-align: center;
  animation: popupIn 0.3s ease;
}
@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* =============================== */
/* 🔥 Best Seller Style - ChatGPT Card */
/* =============================== */

/* viền vàng ánh kim tinh tế */
.chatgpt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #ffe87b, #ffcb00, #fff2b0);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 6s linear infinite;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


@keyframes lightSweep {
  from { left: -100%; }
  to { left: 120%; }
}

/* chữ ChatGPT màu vàng nhẹ */
.chatgpt-card .title.chatgpt {
  color: #ffe87b;
  text-shadow: 0 0 10px rgba(255, 230, 130, 0.4);
}

/* bóng vàng nhẹ khi hover */
.chatgpt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 220, 100, 0.3), 0 0 10px rgba(255, 180, 0, 0.2);
}
/* =============================== */
/* 💜 .brq Review Popup - Sang & Huyền Ảo */
/* =============================== */
.review-popup {
  position: fixed;
  bottom: 35px;
  left: 35px;
  display: none;
  flex-direction: column;
  gap: 6px;

  /* 🌌 Nền mờ kiểu kính cường lực */
  background: rgba(25, 10, 40, 0.65);
  border: 1px solid rgba(183,108,246,0.25);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  /* 💫 Viền & bóng mờ nhẹ */
  box-shadow:
    0 0 25px rgba(183,108,246,0.25),
    inset 0 0 15px rgba(183,108,246,0.1);
  border-radius: 14px;
  padding: 14px 20px;
  z-index: 99999;

  color: #eae6ff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  max-width: 260px;

  /* ✨ Hiệu ứng khi xuất hiện & biến mất */
  animation: fadeInSlide 0.6s ease, fadeOutSlide 0.6s ease 3s forwards;
}

/* 🌈 Hiệu ứng ánh sáng tím chạm viền */
.review-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(183,108,246,0.2),
    rgba(108,0,255,0.1),
    rgba(0,255,255,0.05)
  );
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* ===== 🎨 MÀU SẮC CHO TÊN NGƯỜI MUA ===== */
.review-popup strong {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 0 8px rgba(183,108,246,0.4);
  transition: 0.3s ease;
}

/* Tên nữ: hồng ngọc dịu */
.review-box.female strong {
  color: #ffb6d9;
  text-shadow: 0 0 8px rgba(255,160,210,0.5);
}

/* Tên nam: đổi màu liên tục theo rainbow chạy */
.review-box.male strong {
  background: linear-gradient(90deg, #ff0000, #ff9900, #ffee00, #00ff66, #00ccff, #6600ff, #ff0099);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nameRainbow 4s linear infinite;
  font-weight: 700;
  text-shadow: none;
}
@keyframes nameRainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Khi hover vào popup → tên sáng hơn chút */
.review-box:hover strong {
  filter: brightness(1.2);
}


.review-popup b {
  color: #fff;
  font-weight: 600;
}

/* ⭐ Sao đánh giá mờ sáng nhẹ */
.review-popup .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
}

.review-popup .fa-star,
.review-popup .fa-star-half-stroke,
.review-popup .fa-star-half {
  color: #ffd700;
  filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
}

.review-popup .fa-regular.fa-star {
  color: rgba(255,255,255,0.25);
}


/* ✨ Animation mượt */
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes fadeOutSlide {
  to { opacity: 0; transform: translateY(20px) scale(0.95); filter: blur(3px); }
}

/* 🌟 Hiệu ứng “nhịp sáng” nhẹ toàn khung */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(183,108,246,0.2); }
  50% { box-shadow: 0 0 30px rgba(183,108,246,0.4); }
}
/* ===== .brq Review Popup ===== */
.review-popup {
  position: fixed;
  bottom: 35px;
  left: 35px;
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(25, 10, 40, 0.65);
  border: 1px solid rgba(183,108,246,0.25);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow:
    0 0 25px rgba(183,108,246,0.25),
    inset 0 0 15px rgba(183,108,246,0.1);
  color: #eae6ff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  max-width: 260px;
  z-index: 99999;
  overflow: hidden;
}

/* Hiệu ứng xuất hiện / biến mất */
.fadeIn {
  animation: popupIn 0.6s ease forwards;
}
.fadeOut {
  animation: popupOut 0.6s ease forwards;
}

/* Trượt lên và hiện dần */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Trượt xuống và mờ dần khi biến mất */
@keyframes popupOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(3px);
  }
}

/* Ngôi sao thật có hiệu ứng sáng dần */
.review-popup .stars i {
  color: #ffd700;
  filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
  opacity: 0;
  animation: starGlow 0.4s ease forwards;
}
.review-popup .stars i:nth-child(1) { animation-delay: 0.1s; }
.review-popup .stars i:nth-child(2) { animation-delay: 0.2s; }
.review-popup .stars i:nth-child(3) { animation-delay: 0.3s; }
.review-popup .stars i:nth-child(4) { animation-delay: 0.4s; }
.review-popup .stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starGlow {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
/* 🎬 Card Coming Soon (BaoRq Discord Edition) */
.card.coming-soon-discord {
  position: relative;
  opacity: 0.85;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  border: 1px solid rgba(183,108,246,0.25);
}

/* Lớp phủ ánh sáng tím nhẹ */
.card.coming-soon-discord::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(183,108,246,0.12), rgba(0,0,0,0.8));
  backdrop-filter: blur(0.5px);
  border-radius: 16px;
  z-index: 1;
  animation: pulseLight 4s infinite ease-in-out;
}

/* Logo Discord mờ phía sau nền */
.card.coming-soon-discord::before {
  content: "\f392"; /* Font Awesome Discord logo */
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  color: rgba(183,108,246,0.08);
  text-shadow: 0 0 20px rgba(183,108,246,0.15);
  z-index: 1;
}

/* Dòng chữ COMING SOON nổi phía trên logo */
.card.coming-soon-discord .coming-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b76cf6, #ff4d8b, #b76cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(183,108,246,0.8), 0 0 25px rgba(255,0,128,0.5);
  animation: lightSweep 3s linear infinite;
  z-index: 3;
  user-select: none;
}

/* Nút “Đang cập nhật” */
.card.coming-soon-discord .btn-buy.disabled {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(183,108,246,0.3);
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* 💙 Card Coming Soon (BaoRq Facebook Edition) */
.card.coming-soon-facebook {
  position: relative;
  opacity: 0.85;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  border: 1px solid rgba(24,119,242,0.25);
}

/* Lớp phủ ánh sáng xanh lam nhẹ */
.card.coming-soon-facebook::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(24,119,242,0.12), rgba(0,0,0,0.85));
  backdrop-filter: blur(0.5px);
  border-radius: 16px;
  z-index: 1;
  animation: pulseLightFB 4s infinite ease-in-out;
}

/* Logo Facebook mờ phía sau nền */
.card.coming-soon-facebook::before {
  content: "\f09a"; /* Font Awesome Facebook logo */
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: rgba(24,119,242,0.09);
  text-shadow: 0 0 25px rgba(24,119,242,0.15);
  z-index: 1;
}

/* Dòng chữ COMING SOON nổi phía trên logo */
.card.coming-soon-facebook .coming-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #1877f2, #40a9ff, #1877f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(24,119,242,0.8), 0 0 25px rgba(64,169,255,0.6);
  animation: lightSweepFB 3s linear infinite;
  z-index: 3;
  user-select: none;
}

/* Nút “Đang cập nhật” */
.card.coming-soon-facebook .btn-buy.disabled {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(24,119,242,0.4);
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* Hiệu ứng ánh sáng di chuyển qua chữ */
@keyframes lightSweepFB {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
/* 🎵 Card Coming Soon (BaoRq TikTok Edition) */
.card.coming-soon-tiktok {
  position: relative;
  opacity: 0.85;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  border: 1px solid rgba(255,0,128,0.25);
}

/* Lớp phủ ánh sáng TikTok */
.card.coming-soon-tiktok::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,255,200,0.12), rgba(0,0,0,0.9));
  backdrop-filter: blur(0.5px);
  border-radius: 16px;
  z-index: 1;
  animation: pulseLightTT 4s infinite ease-in-out;
}

/* Logo TikTok mờ phía sau nền */
.card.coming-soon-tiktok::before {
  content: "\e07b"; /* Font Awesome TikTok logo */
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: rgba(255,0,128,0.1);
  text-shadow: 0 0 25px rgba(0,255,200,0.2);
  z-index: 1;
}

/* Dòng chữ COMING SOON nổi phía trên logo */
.card.coming-soon-tiktok .coming-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #00fff7, #ff0050, #00fff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255,0,128,0.8), 0 0 30px rgba(0,255,200,0.6);
  animation: lightSweepTT 3s linear infinite;
  z-index: 3;
  user-select: none;
}

/* Nút “Đang cập nhật” */
.card.coming-soon-tiktok .btn-buy.disabled {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,0,128,0.3);
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}
/* 💜 Subtitle "Coming Soon..." */
.section-subtitle {
  position: relative;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #b76cf6;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(183,108,246,0.6), 0 0 20px rgba(255,0,128,0.4);
  animation: subtitleGlow 3s ease-in-out infinite;
  user-select: none;
  margin-bottom: 25px;
}

/* Ánh sáng tím chạy qua */
.section-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: lightSweepSubtitle 4s linear infinite;
  pointer-events: none;
}

/* Hiệu ứng sáng mờ nhịp */
@keyframes subtitleGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(183,108,246,0.6), 0 0 18px rgba(255,0,128,0.4);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 14px rgba(183,108,246,0.8), 0 0 25px rgba(255,0,128,0.5);
  }
}
/* 🟣 Tooltip BaoRq Pro Neon (v2) */
.option[data-tooltip] {
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Tooltip chính */
.option[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;

  /* Style tooltip */
  background: radial-gradient(circle at top left, rgba(30, 15, 45, 0.97), rgba(15, 10, 20, 0.9));
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4em;
  font-weight: 400;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(183,108,246,0.4);
  box-shadow:
    0 0 18px rgba(183,108,246,0.4),
    inset 0 0 12px rgba(255,0,128,0.25),
    0 0 40px rgba(183,108,246,0.15);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
  min-width: 230px;
  max-width: 280px;
  text-align: center;
  white-space: normal;
  backdrop-filter: blur(6px) brightness(1.1);
  z-index: 999;

  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Mũi tên nhỏ */
.option[data-tooltip]::before {
  content: "";
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: rgba(183,108,246,0.6) transparent transparent transparent;
  filter: drop-shadow(0 0 6px rgba(183,108,246,0.8));
  opacity: 0;
  transition: all 0.25s ease;
}

/* Khi hover: hiện tooltip và tạo hiệu ứng mượt */
.option[data-tooltip]:hover::after,
.option[data-tooltip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hiệu ứng ánh sáng neon chuyển động */
@keyframes tooltipGlow {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(183,108,246,0.4),
      inset 0 0 12px rgba(255,0,128,0.25),
      0 0 35px rgba(183,108,246,0.2);
  }
  50% {
    box-shadow:
      0 0 28px rgba(255,0,128,0.5),
      inset 0 0 16px rgba(183,108,246,0.4),
      0 0 45px rgba(255,0,128,0.25);
  }
}

/* Kích hoạt glow khi hover */
.option[data-tooltip]:hover::after {
  animation: tooltipGlow 3.5s infinite ease-in-out;
}
.option[data-tooltip]:hover::after {
  transition-delay: 0.1s;
}
/* 🟣 Bộ chọn số lượng Gmail */
.quantity-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

.quantity-box label {
  color: #b76cf6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quantity-box input {
  width: 70px;
  padding: 5px 8px;
  text-align: center;
  border: 1px solid rgba(183,108,246,0.5);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.quantity-box input:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(183,108,246,0.6);
}

/* Tổng giá */
.total-price {
  text-align: center;
  color: #ffbdfd;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(183,108,246,0.6);
  transition: 0.3s ease;
}
/* Tooltip cho "Có bán sỉ" */
.has-tooltip {
  position: relative;
  cursor: pointer;
  color: #ddd;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.has-tooltip:hover {
  color: #b76cf6;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(183,108,246,0.7);
}

/* Tooltip chính */
.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;

  background: radial-gradient(circle at top left, rgba(30, 15, 45, 0.97), rgba(15, 10, 20, 0.9));
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4em;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(183,108,246,0.4);
  box-shadow: 0 0 18px rgba(183,108,246,0.5), inset 0 0 10px rgba(255,0,128,0.25);
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
  white-space: nowrap;
  backdrop-filter: blur(5px);
  z-index: 10;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Tam giác nhỏ dưới tooltip */
.has-tooltip::before {
  content: "";
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(183,108,246,0.6) transparent transparent transparent;
  filter: drop-shadow(0 0 4px rgba(183,108,246,0.7));
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover hiển thị tooltip */
.has-tooltip:hover::after,
.has-tooltip:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hiệu ứng ánh sáng nhịp */
@keyframes tooltipGlow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(183,108,246,0.4), inset 0 0 10px rgba(255,0,128,0.25);
  }
  50% {
    box-shadow: 0 0 28px rgba(255,0,128,0.6), inset 0 0 14px rgba(183,108,246,0.35);
  }
}

.has-tooltip:hover::after {
  animation: tooltipGlow 3s infinite ease-in-out;
}

/* Bộ chọn số lượng */
.quantity-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

.quantity-box label {
  color: #b76cf6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quantity-box input {
  width: 80px;
  padding: 6px 8px;
  text-align: center;
  border: 1px solid rgba(183,108,246,0.5);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.quantity-box input:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(183,108,246,0.6);
}

/* Tổng giá */
.total-price {
  text-align: center;
  color: #ffbdfd;
  font-weight: 600;
  margin-top: 12px;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(183,108,246,0.6);
  transition: 0.3s ease;
}
/* --- Floating Search Box --- */
.floating-search {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 9999;
  animation: floatySearch 6s ease-in-out infinite alternate;
}

/* --- Neon Frost Search Container --- */
.search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(20,10,40,0.55), rgba(0,30,40,0.35));
  border: 1.6px solid rgba(0,255,255,0.25);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(18px) saturate(200%);
  box-shadow:
    0 0 12px rgba(0,255,255,0.08),
    inset 0 0 10px rgba(255,255,255,0.04),
    0 0 22px rgba(183,108,246,0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: text;
  overflow: hidden;
  min-height: 40px;
  max-width: 360px;
  position: relative;
}

/* 💫 Hiệu ứng viền sáng động nhẹ */
.search-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(120deg,
    rgba(0,255,255,0.3),
    rgba(183,108,246,0.5),
    rgba(0,255,255,0.3)
  );
  background-size: 200% 100%;
  animation: borderGlow 5s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* 🪶 Input style – nhẹ, sáng, hiện đại */
.search-container input {
  background: transparent;
  border: none;
  outline: none;
  color: #e0ffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  caret-color: #00ffff;
  text-shadow: 0 0 6px rgba(0,255,255,0.5);
}

.search-container input::placeholder {
  color: rgba(180,255,255,0.5);
  text-shadow: 0 0 6px rgba(0,255,255,0.3);
  transition: color 0.3s ease;
}

.search-container:hover input::placeholder {
  color: rgba(255,255,255,0.8);
}

/* 🔍 Icon – neon cyan với ánh tím */
.search-container i {
  font-size: 18px;
  color: #7afcff;
  text-shadow: 0 0 12px rgba(122,252,255,0.6);
  transition: 0.3s ease;
}

.search-container:hover i {
  color: #b76cf6;
  text-shadow: 0 0 16px rgba(183,108,246,0.8);
  transform: scale(1.15);
}

/* ✨ Hover tổng thể */
.search-container:hover {
  border-color: rgba(0,255,255,0.7);
  box-shadow:
    0 0 25px rgba(0,255,255,0.25),
    0 0 35px rgba(183,108,246,0.25),
    inset 0 0 15px rgba(0,255,255,0.15);
  transform: translateY(-1.5px) scale(1.01);
}

/* 💨 Animation viền neon di chuyển */
@keyframes borderGlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* 🌬️ Nhịp nổi nhẹ */
@keyframes floatySearch {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}


/* 🌫 Khi focus hoặc đang nhập */
.search-container.focused {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.35),
    inset 0 0 20px rgba(0, 255, 255, 0.15);
  background: rgba(0, 30, 50, 0.55);
  transform: translateY(-1px) scale(1.03);
}

/* 🔍 Icon kính lúp */
.search-icon {
  color: rgba(150, 255, 255, 0.85);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.5));
}

.search-container:hover .search-icon {
  color: #cfffff;
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.9));
}

/* ✏️ Input mượt mà */
#search-card {
  border: none;
  outline: none;
  background: transparent;
  color: #eaffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  width: 0;
  opacity: 0;
  caret-color: #00ffff;
  transition: width 0.35s ease, opacity 0.35s ease;
  font-family: 'Poppins', sans-serif;
}

/* Khi gõ mở rộng theo độ dài */
#search-card.active {
  opacity: 1;
  width: auto;
  min-width: 40px;
}

/* Placeholder thanh thoát */
#search-card::placeholder {
  color: rgba(200, 255, 255, 0.35);
  font-style: italic;
}

/* 💡 Viền sáng phản chiếu nhẹ */
.search-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    rgba(0, 255, 255, 0.05),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.search-container.focused::before {
  opacity: 1;
}

/* 📱 Responsive */
@media (max-width: 720px) {
  .search-container {
    padding: 6px 12px;
    border-radius: 35px;
    min-height: 34px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
  }
  .search-icon {
    font-size: 16px;
  }
}


/* Glow khi focus */
.search-container.focused {
  border-color: rgba(0,255,255,0.9);
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}

/* Card highlight */
.card.highlighted {
  animation: glow-card 1.2s ease-in-out 3;
  border: 2px solid aqua !important;
  box-shadow: 0 0 25px rgba(0,255,255,0.6) !important;
  transform: scale(1.03);
}

@keyframes glow-card {
  0% { box-shadow: 0 0 0px aqua; }
  50% { box-shadow: 0 0 25px aqua; }
  100% { box-shadow: 0 0 0px aqua; }
}

/* Responsive */
@media (max-width: 720px) {
  .floating-search { top: 15px; left: 15px; }
  .search-container { padding: 6px 10px; }
}
/* --- Thông báo tìm kiếm (mini toast) --- */
/* 🔔 Thông báo khi không tìm thấy (BaoRq Glow Edition) */
.search-noti {
  position: fixed;
  top: 65px;
  left: 25px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.25), rgba(255, 50, 50, 0.15));
  border: 1px solid rgba(255, 80, 80, 0.5);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 10px rgba(255, 50, 50, 0.4),
    inset 0 0 12px rgba(255, 0, 0, 0.2);
  text-shadow: 0 0 6px rgba(255, 120, 120, 0.4);
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.6, 0, 0.25, 1);
  pointer-events: none;
  z-index: 99999;
}

/* Khi hiển thị */
.search-noti.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pulseRed 2s ease-in-out infinite;
}

/* 💫 Hiệu ứng ánh sáng đỏ đập nhẹ */
@keyframes pulseRed {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(255, 80, 80, 0.4),
      inset 0 0 10px rgba(255, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 20px rgba(255, 0, 0, 0.6),
      inset 0 0 15px rgba(255, 100, 100, 0.35);
  }
}

/* 💨 Hiệu ứng slide nhẹ khi hiện ra */
.search-noti.show {
  animation: slideFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1), pulseRed 2s ease-in-out infinite;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ✨ Responsive */
@media (max-width: 720px) {
  .search-noti {
    top: 60px;
    left: 15px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* 💬 Thông báo chuyển giao diện */
.mode-noti {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 255, 255, 0.05));
  color: #bff;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999999;
  pointer-events: none;
}

.mode-noti.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 📱 Khi ở chế độ Mobile Mode */
body.mobile-mode {
  font-size: 15px;
  overflow-x: hidden;
}

body.mobile-mode .pricing-section {
  padding: 20px 10px;
}

body.mobile-mode .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.mobile-mode .card {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
  transition: transform 0.3s ease;
}

body.mobile-mode .card:hover {
  transform: scale(1.02);
}

body.mobile-mode .card-header h3 {
  font-size: 1.2rem;
}

/* Ẩn hoặc điều chỉnh các phần tử không cần thiết trên mobile */
body.mobile-mode .floating-search {
  top: 10px;
  left: 10px;
  transform: scale(0.9);
}
/* ======= FREE SECTION ======= */
.subtitle-free {
  color: rgba(190, 255, 255, 0.8);
  font-size: 0.95em;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.5;
}

/* Key container grid */
.keys-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

/* Key card frost style */
.key-card {
  background: rgba(0, 20, 40, 0.55);
  border: 1.5px solid rgba(0,255,255,0.2);
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: #e0ffff;
  text-shadow: 0 0 8px rgba(0,255,255,0.15);
  box-shadow: 0 0 10px rgba(0,255,255,0.15);
  backdrop-filter: blur(10px) saturate(180%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  text-align: center;
}

/* Hover glow */
.key-card:hover {
  background: rgba(0, 40, 60, 0.65);
  border-color: rgba(0,255,255,0.6);
  box-shadow: 0 0 25px rgba(0,255,255,0.3);
  transform: scale(1.03);
}

/* Click pulse glow */
.key-card:active {
  transform: scale(0.97);
  box-shadow: 0 0 25px rgba(0,255,255,0.6);
}

/* Toast thông báo copy */
.copy-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 0, 60, 0.25);
  border: 1px solid rgba(183,108,246,0.4);
  color: #fff;
  padding: 14px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 30px rgba(183,108,246,0.45);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  font-size: 15px;
  font-weight: 600;
  z-index: 9999;
  animation: fadeInCapcut 0.35s ease;
}


/* Khi hiển thị */
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile */
@media (max-width: 720px) {
  .keys-container { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .key-card { font-size: 0.9em; padding: 8px 14px; }
}
/* 🎬 CapCut Pro 7 Day Free - BaoRq Edition */
.buttons-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}


.info-btn:hover {
  background: rgba(183, 108, 246, 0.15);
  border-color: rgba(183, 108, 246, 0.8);
  color: #fff;
  box-shadow: 0 0 20px rgba(183, 108, 246, 0.8);
  transform: scale(1.05) translateY(-2px);
}




.info-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05); /* gần như trong suốt */
  color: #b76cf6;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(183, 108, 246, 0.25);
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 rgba(183, 108, 246, 0);
}


/* Popup chính */
.info-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px) saturate(160%);
}

.info-popup-content {
  background: rgba(30, 0, 60, 0.25);
  border: 1px solid rgba(183,108,246,0.4);
  color: #fff;
  padding: 35px 30px 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 30px rgba(183,108,246,0.45);
  animation: fadeInCapcut 0.35s ease;
  position: relative;
}

/* Tiêu đề */
.popup-header {
  background: rgba(183,108,246,0.15);
  border: 1px solid rgba(183,108,246,0.35);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #d8b4fe;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(183,108,246,0.6);
  box-shadow: inset 0 0 15px rgba(183,108,246,0.1);
}

/* 2 nút copy ngang */
.copy-section {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Nút Copy kiểu "thẻ mờ kính" */
.copy-btn {
  background: rgba(30, 0, 60, 0.25);
  border: 1px solid rgba(183,108,246,0.4);
  color: #fff;
  padding: 14px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 20px rgba(183,108,246,0.25);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  min-width: 130px;
  transition: 0.3s;
}
.copy-btn:hover {
  background: rgba(60, 0, 90, 0.4);
  box-shadow: 0 0 30px rgba(183,108,246,0.55);
  transform: scale(1.05);
}

/* Nút đóng */
.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover {
  color: #fff;
}

/* Toast copy */
.copy-toast {
  background: rgba(30, 0, 60, 0.25);
  border: 1px solid rgba(183,108,246,0.4);
  color: #fff;
  padding: 35px 30px 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 30px rgba(183,108,246,0.45);
  animation: fadeInCapcut 0.35s ease;
  position: relative;
}

@keyframes fadeInCapcut {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
