


.noise-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9998; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.cursor-glow {
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  position: fixed; pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}


#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.6;
}


#reading-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400), var(--gold));
  z-index: 1001; width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(139,92,246,0.6);
}


.spotlight-card {
  position: relative; overflow: hidden;
}
.spotlight-card .spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(139,92,246,0.1), transparent 40%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.spotlight-card:hover .spotlight { opacity: 1; }


.big-stat-card {
  padding: 40px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.big-stat-card::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.7), transparent);
}
.big-stat-number {
  font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.big-stat-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
}
.big-stat-suffix {
  font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}


.icon-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(139,92,246,0.15));
  border: 1px solid rgba(139,92,246,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(139,92,246,0.25), 0 0 80px rgba(139,92,246,0.08);
}
.icon-circle-sm {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(139,92,246,0.12));
  border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.icon-circle-xs {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(139,92,246,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}


.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 15px;
}
.compare-table th {
  padding: 14px 20px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 1px solid rgba(139,92,246,0.15);
}
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(139,92,246,0.08);
  color: rgba(255,255,255,0.8);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td {
  background: rgba(139,92,246,0.04);
  color: #fff;
}
.compare-table .check-yes { color: var(--green-light); font-size: 16px; }
.compare-table .check-no  { color: rgba(255,255,255,0.2); font-size: 16px; }


.h-scroll {
  overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: rgba(139,92,246,0.3) transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.h-scroll::-webkit-scrollbar { height: 4px; }
.h-scroll::-webkit-scrollbar-track { background: transparent; }
.h-scroll::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }


.video-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(0,0,0,0.5); aspect-ratio: 16/9; cursor: pointer;
}
.video-card .play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-base);
}
.play-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(139,92,246,0.9); backdrop-filter: blur(10px);
  border: 2px solid rgba(139,92,246,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: var(--transition-base);
  box-shadow: 0 0 40px rgba(139,92,246,0.5);
}
.video-card:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(139,92,246,0.7);
}
.video-thumb {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
  transition: opacity 0.3s;
}
.video-card:hover .video-thumb { opacity: 0.4; }


#toast-container {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 14px 22px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(20px); border: 1px solid;
  animation: slide-in-right 0.4s cubic-bezier(0.16,1,0.3,1) both;
  min-width: 260px;
}
.toast-success {
  background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3);
  color: var(--green-light); box-shadow: 0 0 20px rgba(16,185,129,0.15);
}
.toast-error {
  background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3);
  color: var(--red-light); box-shadow: 0 0 20px rgba(239,68,68,0.15);
}
.toast-info {
  background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3);
  color: var(--purple-300); box-shadow: 0 0 20px rgba(139,92,246,0.15);
}
.toast-exit { animation: slide-in-right 0.3s reverse ease both; }


.accordion-arrow {
  width: 20px; height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0; color: var(--purple-400);
}
.faq-item.open .accordion-arrow { transform: rotate(180deg); }


.copy-btn {
  background: rgba(139,92,246,0.1); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--purple-300);
  cursor: pointer; transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 6px;
}
.copy-btn:hover {
  background: rgba(139,92,246,0.2); border-color: var(--border-hover);
  color: #fff;
}
.copy-btn.copied { color: var(--green-light); border-color: rgba(16,185,129,0.3); }


.stars {
  display: inline-flex; gap: 3px;
}
.star { font-size: 14px; color: rgba(255,255,255,0.15); }
.star.filled { color: var(--gold); text-shadow: 0 0 8px rgba(245,158,11,0.5); }


.avatar-group {
  display: flex;
}
.avatar-group .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avatar-group .avatar:first-child { margin-left: 0; }
.avatar-group .avatar-count {
  background: rgba(139,92,246,0.2); border: 2px solid var(--bg-primary);
  width: 36px; height: 36px; border-radius: 50%; margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--purple-300);
}


.glow-sep {
  display: flex; align-items: center; gap: 16px; margin: 40px 0;
}
.glow-sep-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3));
}
.glow-sep-line:last-child {
  background: linear-gradient(90deg, rgba(139,92,246,0.3), transparent);
}
.glow-sep-text {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}


.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  animation: fade-in-up 1s ease 1s both;
  transition: color 0.2s;
}
.scroll-indicator:hover { color: rgba(139,92,246,0.7); }
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(139,92,246,0.4);
  border-radius: 11px; position: relative;
}
.scroll-wheel {
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--purple-400); position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-bounce 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(139,92,246,0.6);
}
@keyframes scroll-bounce {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 16px; opacity: 0.3; }
}


.input-group {
  display: flex; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color 0.2s;
}
.input-group:focus-within { border-color: rgba(139,92,246,0.5); }
.input-group input {
  flex: 1; background: rgba(139,92,246,0.07);
  border: none; color: #fff; padding: 14px 18px;
  font-size: 15px; outline: none;
}
.input-group input::placeholder { color: rgba(255,255,255,0.2); }
.input-group .input-addon {
  background: rgba(139,92,246,0.12); border-left: 1px solid var(--border);
  padding: 0 18px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--purple-300);
  cursor: pointer; transition: background 0.2s;
}
.input-group .input-addon:hover { background: rgba(139,92,246,0.2); }


.masonry-grid {
  columns: 3; gap: 20px;
}
.masonry-grid > * {
  break-inside: avoid; margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .masonry-grid { columns: 2; }
}
@media (max-width: 640px) {
  .masonry-grid { columns: 1; }
}


.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--purple-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--purple-300); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }


.store-featured {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(251,191,36,0.1));
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold); padding: 2px 10px;
  border-radius: var(--radius-full); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.store-hot {
  position: absolute; top: 12px; right: 12px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25);
  color: var(--red-light); padding: 2px 10px;
  border-radius: var(--radius-full); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.store-new {
  position: absolute; top: 12px; right: 12px;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
  color: var(--green-light); padding: 2px 10px;
  border-radius: var(--radius-full); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}


.gradient-overlay-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  padding: 56px 40px;
}
.gradient-overlay-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(124,58,237,0.25) 0%,
    rgba(99,102,241,0.15) 50%,
    rgba(139,92,246,0.2) 100%
  );
}
.gradient-overlay-card > * { position: relative; z-index: 1; }


.process-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; font-weight: 900;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 0 25px rgba(139,92,246,0.35), 0 0 50px rgba(139,92,246,0.1);
  flex-shrink: 0;
}


.btn-telegram {
  background: linear-gradient(135deg, #0088cc, #229ED9);
  color: #fff; font-weight: 700;
  box-shadow: 0 0 30px rgba(0,136,204,0.35);
  transition: var(--transition-slow);
}
.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,136,204,0.5);
}


.social-proof-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.social-proof-avatars { display: flex; }
.social-proof-text { font-size: 13px; color: var(--text-muted); }
.social-proof-text strong { color: #fff; }


.empty-state {
  text-align: center; padding: 80px 32px;
}
.empty-state-icon {
  font-size: 56px; margin-bottom: 20px; opacity: 0.4;
  animation: float 5s ease-in-out infinite;
}
.empty-state-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.empty-state-text  { font-size: 14px; color: var(--text-muted); }


.img-placeholder {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(99,102,241,0.1));
  border: 1px dashed rgba(139,92,246,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px;
}


hr.gradient {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
  margin: 48px 0;
}


@media (max-width: 768px) {
  #toast-container { right: 16px; bottom: 16px; left: 16px; }
  .toast { min-width: unset; }
  .scroll-indicator { display: none; }
  .social-proof-row { justify-content: center; }
  .glow-sep { margin: 24px 0; }
  .big-stat-card { padding: 28px 20px; }
  .big-stat-number { font-size: 40px; }
}
