/* Hex Background Animation */
@keyframes hex-scroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-25%, -25%); }
}

@keyframes neon-pulse {
  0%, 100% { 
    border-color: rgba(16, 185, 129, 0.08);
    box-shadow: inset 0 0 80px rgba(16, 185, 129, 0.02);
  }
  50% { 
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: inset 0 0 150px rgba(16, 185, 129, 0.04);
  }
}

@keyframes float-particle {
  0% { 
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { 
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hex-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: rgba(16, 185, 129, 0.05);
  line-height: 1.6;
  word-wrap: break-word;
  animation: hex-scroll 100s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.corner-decoration {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  pointer-events: none;
  z-index: 3;
}

.corner-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.corner-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 72px; left: 12px; border-right: none; border-top: none; }
.corner-br { bottom: 72px; right: 12px; border-left: none; border-top: none; }

.neon-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 4;
  animation: neon-pulse 5s ease-in-out infinite;
}

.bg-particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: #10b981;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: float-particle 20s linear infinite;
  z-index: 1;
}

@keyframes matrix-snowfall {
  0% {
    transform: translateY(-50px) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(100vh) translateX(30px);
    opacity: 0;
  }
}

@keyframes scan-line {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes santa-hat-sway {
  0%,
  100% {
    transform: rotate(0deg) translateX(0px);
  }
  50% {
    transform: rotate(-3deg) translateX(-1px) translateY(-1px);
  }
}

@keyframes cyber-glitch {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  20% {
    transform: scale(1.05) translate(-2px, 1px);
    filter: hue-rotate(90deg);
  }
  40% {
    transform: scale(1.05) translate(2px, -1px);
  }
  60% {
    transform: scale(1.05) translate(-1px, 2px);
    filter: hue-rotate(-90deg);
  }
  80% {
    transform: scale(1.05) translate(1px, -2px);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
    filter: none;
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 6));
  }
}

@keyframes blink-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes border-glow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes glow-text {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

@keyframes rotate-star {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes glow-gold {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

@keyframes count-glow {
  0% {
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 0px rgba(16, 185, 129, 0);
    transform: scale(1);
  }
}

@keyframes pulse-fresh {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse-news {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
  }
}

@keyframes pulse-text {
  0%,
  100% {
    color: #f27065;
    text-shadow: 0 0 5px #f27065;
  }
  50% {
    color: #ef4444;
    text-shadow: 0 0 15px #ef4444;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  background: #030303;
  color: #fafafa;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 60px;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  color: #fafafa;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      #1a1a1a 2px,
      transparent 2px
    ),
    radial-gradient(circle at 75% 75%, #1a1a1a 2px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.matrix-line {
  position: fixed;
  top: -50px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 12px;
  color: #10b981;
  text-shadow:
    0 0 10px #10b981,
    0 0 20px rgba(16, 185, 129, 0.5);
  z-index: 1;
  pointer-events: none;
  animation: matrix-snowfall ease-in-out infinite;
  opacity: 0.35;
  font-weight: 700;
  line-height: 16px;
}

.matrix-line:nth-of-type(1) {
  left: 8%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.matrix-line:nth-of-type(2) {
  left: 25%;
  animation-duration: 15s;
  animation-delay: 3s;
  opacity: 0.25;
}

.matrix-line:nth-of-type(3) {
  left: 42%;
  animation-duration: 10s;
  animation-delay: 1.5s;
}

.matrix-line:nth-of-type(4) {
  left: 60%;
  animation-duration: 18s;
  animation-delay: 5s;
  opacity: 0.3;
}

.matrix-line:nth-of-type(5) {
  left: 78%;
  animation-duration: 13s;
  animation-delay: 2s;
}

.matrix-line:nth-of-type(6) {
  left: 92%;
  animation-duration: 16s;
  animation-delay: 4.5s;
  opacity: 0.28;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-group,
.logo-mark,
.logo-text,
.nav-item,
.nav-dropdown,
.btn-messages,
.btn-disputes,
footer,
.stat-block,
.stat-block-compact,
.telegram-announcement,
.gold-announcement,
.shop-link-item {
  position: relative;
}

header {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 0 40px rgba(220, 38, 38, 0.06),
    0 0 80px rgba(34, 197, 94, 0.04),
    inset 0 -1px 0 0 rgba(220, 38, 38, 0.1);
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  animation: scan-line 8s linear infinite;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: #fafafa;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  overflow: visible;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -12px;
  width: 26px;
  height: 26px;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"%3E%3Cg id="Filled_outline"%3E%3Cpath d="m61 40h-36a7.651 7.651 0 0 1 2-5 7.651 7.651 0 0 1 -2-5h36a7.651 7.651 0 0 1 -2 5 7.651 7.651 0 0 1 2 5z" fill="%23eae9d8"%3E%3C/path%3E%3Ccircle cx="10" cy="54" fill="%23eae9d8" r="7"%3E%3C/circle%3E%3Cpath d="m25 30-1-9-14 26 1-31 21-13 22 10 7 17z" fill="%23da1c4b"%3E%3C/path%3E%3Cpath d="m61.994 30.1a2.284 2.284 0 0 0 -.069-.484l-7-17a1 1 0 0 0 -.511-.529l-22-10a1 1 0 0 0 -.94.06l-21 13a1 1 0 0 0 -.473.818l-.971 30.1a7.983 7.983 0 1 0 2.559.095l11.771-21.86.646 5.813a8.6 8.6 0 0 0 1.694 4.887 8.559 8.559 0 0 0 -1.7 5 1 1 0 0 0 1 1h36a1 1 0 0 0 1-1 8.559 8.559 0 0 0 -1.7-5 8.589 8.589 0 0 0 1.694-4.9zm-45.994 23.9a6 6 0 1 1 -6-6 6.006 6.006 0 0 1 6 6zm9.034-32.749 3.8-5.7-1.664-1.11-4 6s-.034.052-.049.081l-11.984 22.258.845-26.212 20.09-12.437 21.154 9.616 6.281 15.253h-33.607zm1.054 17.749a6.885 6.885 0 0 1 1.371-3h4.541v-2h-4.545a6.772 6.772 0 0 1 -1.363-3h33.814a6.921 6.921 0 0 1 -1.364 3h-7.542v2h7.544a6.754 6.754 0 0 1 1.37 3z" fill="%23000"%3E%3C/path%3E%3Cpath d="m6 54a4 4 0 0 0 1.333 2.981l1.334-1.491a2 2 0 1 1 2.824-2.823l1.49-1.334a4 4 0 0 0 -6.981 2.667z" fill="%23000"%3E%3C/path%3E%3Cpath d="m51.929 15.628a1 1 0 0 0 -.482-.523l-8-4-.894 1.79 7.66 3.83 1.858 4.647 1.858-.744z" fill="%23000"%3E%3C/path%3E%3Cpath d="m14.485 17.143a1 1 0 0 0 -.485.857v6h2v-5.434l4.515-2.709-1.03-1.714z" fill="%23000"%3E%3C/path%3E%3Cpath d="m14 26h2v2h-2z" fill="%23000"%3E%3C/path%3E%3C/g%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  transform: rotate(0deg);
  animation: santa-hat-sway 3s ease-in-out infinite;
  z-index: 10;
}

.logo-mark:hover {
  transform: scale(1.05);
  box-shadow:
    0 4px 20px rgba(220, 38, 38, 0.3),
    0 0 30px rgba(34, 197, 94, 0.2);
  animation: cyber-glitch 0.3s ease-in-out;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fafafa;
  text-shadow:
    0 0 20px rgba(220, 38, 38, 0.15),
    0 0 40px rgba(34, 197, 94, 0.1);
}

.logo-group:hover .logo-text {
  color: #10b981;
  text-shadow:
    0 0 10px #10b981,
    0 0 20px #10b981,
    0 0 30px rgba(16, 185, 129, 0.5);
  transition: all 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  flex: 1;
}

.nav-item {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-item:hover {
  color: #fafafa;
  background: #0f0f0f;
}

.nav-item.active {
  color: #10b981;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translatey(-10px);
  transition: all 0.2s;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #a3a3a3;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  border-bottom: 1px solid #0f0f0f;
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item:hover {
  background: #0f0f0f;
  color: #fafafa;
}

.nav-dropdown-item.active {
  color: #10b981;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn-header {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #262626;
  background: transparent;
  color: #fafafa;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-header:hover {
  background: #0f0f0f;
  border-color: #404040;
}

.btn-header.warning {
  border-color: #f59e0b;
  color: #f59e0b;
}

.btn-header.info {
  border-color: #3b82f6;
  color: #3b82f6;
}

.btn-header.success {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.btn-header.primary {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

.btn-messages {
  background: #10b981;
}

.btn-messages.has-unread {
  background: #f59e0b;
}

.btn-disputes {
  background: #8b5cf6;
}

.btn-disputes.has-unread {
  background: #ef4444;
}

.dispute-count {
  font-size: 10px;
  opacity: 0.8;
  margin-left: 4px;
}

.message-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(270deg, #f0c, #33f, #0fc, #fc0);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease infinite;
}

.btn-auth {
  padding: 10px 24px;
  background: #10b981;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-auth:hover {
  background: #059669;
}

.btn-auth-outline {
  padding: 10px 24px;
  background: transparent;
  color: #fafafa;
  border: 1px solid #404040;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-auth-outline:hover {
  border-color: #fafafa;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid #262626;
  color: #fafafa;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 1050;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-item {
  display: block;
  padding: 16px 24px;
  color: #a3a3a3;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
  transition: all 0.2s;
}

.mobile-nav-item:hover {
  background: #0f0f0f;
  color: #fafafa;
}

.mobile-nav-item.active {
  color: #10b981;
}

.mobile-nav-section {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #525252;
  border-bottom: 1px solid #1a1a1a;
}

.main-content {
  min-height: calc(100vh - 140px);
}

.purchases-ticker {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 16px 0;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
}

.ticker-wrapper:hover {
  animation-play-state: running;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  white-space: nowrap;
  font-size: 13px;
  color: #a3a3a3;
  border-right: 1px solid #1a1a1a;
}

.ticker-user {
  font-weight: 700;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
}

.ticker-user.user-vip {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  border: 1px solid #8b5cf6;
}

.ticker-user.user-gold {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid #fbbf24;
}

.ticker-user.user-regular {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid #10b981;
}

.ticker-product {
  color: #fafafa;
}

.ticker-time {
  color: #525252;
  font-size: 11px;
}

footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 40px 0;
  z-index: 100;
}

.footer-content {
  text-align: center;
  color: #737373;
  font-size: 14px;
}

.footer-link {
  color: #fafafa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #e5e5e5;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-link {
  padding: 8px 14px;
  min-width: 40px;
  background: #0a0a0a;
  border: 1px solid #262626;
  color: #fafafa;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-link:hover {
  background: #1a1a1a;
  border-color: #404040;
}

.pagination .page-item.active .page-link {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background: #050505;
  border-color: #1a1a1a;
  color: #404040;
  cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
  background: #050505;
  border-color: #1a1a1a;
}

.hero-section {
  padding: 10px 0 10px;
}

.announcement {
  background: #dc2626;
  color: #fff;
  padding: 16px 24px;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-icon {
  animation: blink-fade 2s infinite;
}

.telegram-announcement {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 100%);
  border: 1px solid #3b82f6;
  padding: 8px 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.telegram-announcement::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #3b82f6);
  background-size: 200% 200%;
  animation: border-glow 3s ease infinite;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.telegram-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.telegram-icon {
  font-size: 20px;
  animation: pulse-icon 2s ease-in-out infinite;
}

.telegram-label {
  color: #3b82f6;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  animation: glow-text 2s ease-in-out infinite;
}

.telegram-message {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 500;
}

.telegram-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.telegram-channel:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translatey(-2px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.telegram-channel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

.telegram-channel-text {
  color: #3b82f6;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
  position: relative;
  z-index: 1;
}

.telegram-arrow {
  color: #3b82f6;
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.telegram-channel:hover .telegram-arrow {
  transform: translateX(4px);
}

.gold-announcement {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1506 100%);
  border: 1px solid #fbbf24;
  padding: 8px 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.gold-announcement::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
  background-size: 200% 200%;
  animation: border-glow 3s ease infinite;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.gold-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gold-icon {
  font-size: 20px;
  animation: rotate-star 4s linear infinite;
}

.gold-label {
  color: #fbbf24;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  animation: glow-gold 2s ease-in-out infinite;
}

.gold-message {
  color: #d4d4d4;
  font-size: 13px;
  font-weight: 500;
}

.gold-upgrade-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.gold-upgrade-btn:hover {
  transform: translatey(-2px);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
  color: #000;
}

.gold-upgrade-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}

.gold-upgrade-icon {
  font-size: 14px;
  animation: pulse-icon 2s ease-in-out infinite;
}

.stat-value.counting {
  color: #10b981;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  transition: all 0.3s ease;
}

.stat-value.count-complete {
  animation: count-glow 0.5s ease-out;
}

.stats-row {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
  width: 100%;
}

.stat-col-double {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.stat-block {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  min-width: 0;
  border-radius: 4px;
}

.stat-block-compact {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 16px 24px;
  flex: 1;
  min-width: 0;
  border-radius: 4px;
}

.stat-block-compact .stat-value {
  font-size: 28px;
}

.stat-value-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.stat-block-compact .stat-title {
  font-size: 10px;
  margin-bottom: 8px;
}

.stat-block-compact .stat-trend {
  font-size: 11px;
  margin-top: 4px;
}

.stat-block-compact .user-type {
  font-size: 7px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 1px 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid;
  white-space: nowrap;
}

.stat-block-compact .user-breakdown {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.activity-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-row:last-child {
  border-bottom: none;
}

.activity-label {
  font-size: 12px;
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.activity-value {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
}

.activity-balance {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.activity-membership-vip {
  color: #8b5cf6;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.activity-membership-gold {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.activity-membership-user {
  color: #737373;
}

.activity-discount {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.news-paginated {
  display: flex;
  flex-direction: column;
}

.news-page {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.news-page.active {
  display: flex;
}

.news-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
}

.news-mini-item:last-child {
  border-bottom: none;
}

.news-mini-icon {
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.news-mini-fresh {
  color: #ef4444;
  animation: pulse-fresh 2s infinite;
}

.news-mini-regular {
  color: #525252;
}

.news-mini-link {
  font-size: 12px;
  font-weight: 600;
  color: #fafafa;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s;
}

.news-mini-link:hover {
  color: #10b981;
}

.news-mini-fresh-link {
  color: #ef4444 !important;
  font-weight: 700;
}

.news-mini-fresh-link:hover {
  color: #dc2626 !important;
}

.news-pagination-controls {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
}

.news-nav-btn {
  padding: 2px 8px;
  background: #0a0a0a;
  border: 1px solid #262626;
  color: #a3a3a3;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.news-nav-btn:hover:not(:disabled) {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.news-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  border-color: #1a1a1a;
}

.news-page-counter {
  font-size: 9px;
  color: #525252;
  min-width: 50px;
  text-align: center;
  font-weight: 600;
}

.shop-links-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-link-label {
  font-size: 9px;
  font-weight: 700;
  color: #525252;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-link {
  color: #10b981;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
  word-break: break-all;
}

.shop-link:hover {
  color: #059669;
}

.stat-block-compact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fafafa;
}

.stat-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #fafafa;
}

.stat-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
  margin-bottom: 16px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #fafafa;
}

.stat-trend {
  font-size: 13px;
  color: #10b981;
}

.stat-trend.down {
  color: #ef4444;
}

.user-breakdown {
  font-size: 11px;
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.user-type {
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-type-vip {
  color: #8b5cf6;
  font-weight: 700;
  font-size: 7px;
  border-color: #8b5cf6;
}

.user-type-gold {
  color: #fbbf24;
  font-weight: 700;
  font-size: 7px;
  border-color: #fbbf24;
}

.user-type-sold {
  color: #10b981;
  font-weight: 700;
  font-size: 7px;
  border-color: #10b981;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.3);
  }
}

.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-view-all:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #34d399, #10b981);
  animation: none;
}

.btn-view-all:hover::before {
  animation: none;
  left: 100%;
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(3px);
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 20px;
}

.data-table thead {
  background: #050505;
}

.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.data-table td {
  padding: 20px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover {
  background: #0f0f0f;
}

.product-name {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-category {
  font-size: 12px;
  color: #737373;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-hot {
  background: #dc2626;
  color: white;
}

.badge-new {
  background: #10b981;
  color: white;
}

.badge-premium {
  background: #fbbf24;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}

.badge-premium:hover {
  background: #f59e0b;
  transform: translatey(-1px);
}

.badge-vip {
  background: #8b5cf6;
  color: #fff;
}

.price {
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
}

.btn-buy {
  padding: 8px 20px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-buy:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.btn-buy-disabled {
  padding: 8px 20px;
  background: #262626;
  color: #737373;
  border: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: not-allowed;
  text-transform: uppercase;
  display: inline-block;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.stock-text {
  font-size: 13px;
  color: #10b981;
}

.countdown-timer {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
}

.shop-links-block {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-label {
  font-size: 11px;
  font-weight: 700;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-item {
  color: #10b981;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.link-item:hover {
  color: #059669;
}

.news-block {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1a1a1a;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-item-fresh .news-title {
  color: #ef4444;
}

.news-icon {
  flex-shrink: 0;
}

.icon-fresh {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #ef4444;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 18px;
  animation: pulse-news 2s infinite;
}

.icon-regular {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #1a1a1a;
  color: #737373;
  text-align: center;
  line-height: 32px;
  font-size: 24px;
}

.news-content {
  font-size: 15px;
  line-height: 1.8;
  color: #d4d4d4;
  margin-bottom: 32px;
}

.news-title {
  font-size: 32px;
  font-weight: 700;
  color: #fafafa;
  line-height: 1.3;
  margin-bottom: 16px;
}

.news-title:hover {
  color: #10b981;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item-fresh .news-date {
  color: #ef4444;
}

.news-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}

.pagination-btn {
  padding: 8px 16px;
  background: #262626;
  border: 1px solid #404040;
  color: #fafafa;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination-btn:hover {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.vip-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #737373;
  margin-bottom: 24px;
}

.vip-heading {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.vip-desc {
  font-size: 18px;
  color: #a3a3a3;
  margin-bottom: 12px;
}

.vip-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 12px;
}

.vip-feature {
  font-size: 16px;
}

.btn-vip {
  padding: 18px 12px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-vip:hover {
  background: #e5e5e5;
  transform: scale(1.02);
}

.page-banner {
  background: #10b981;
  padding: 20px 0;
  margin: 40px 0;
}

.page-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.free-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.free-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.free-textarea {
  width: 100%;
  min-height: 120px;
  background: #0f0f0f;
  border: 1px solid #262626;
  color: #fafafa;
  padding: 12px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  resize: vertical;
}

.free-textarea:focus {
  outline: none;
  border-color: #ec4899;
}

.free-badge {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  float: right;
}

.badge-gold {
  background: #f59e0b;
  color: #050505;
}

.locked-message {
  text-align: center;
  padding: 30px;
  color: #666;
  background: #0a0a0a;
  border: 1px dashed #262626;
}

.recovery-form {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
}

.field-label.required::after {
  content: " *";
  color: #ef4444;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
  border-radius: 4px;
}

 .field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #ef4444;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.field-hint {
  font-size: 11px;
  color: #737373;
  margin-top: 6px;
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  font-family: "Space Grotesk", sans-serif;
  margin-top: 32px;
}

.btn-submit:hover {
  background: #059669;
  transform: translatey(-1px);
}

.alert {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.alert-danger {
  padding: 16px 24px;
  margin-bottom: 24px;
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #ef4444;
  color: #ef4444;
  font-size: 14px;
}

.cost-notice {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  border: 2px solid #ef4444;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.cost-notice h4 {
  color: #ef4444;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cost-notice p {
  color: #fafafa;
  margin: 0;
}

.page-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}

.search-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 24px 32px;
  margin-bottom: 40px;
}

.search-form {
  max-width: 700px;
  margin: 0 auto;
}

.search-form form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
  border-radius: 4px;
}

.search-input:focus {
  outline: none;
  border-color: #404040;
}

.search-input::placeholder {
  color: #404040;
}

.search-buttons {
  display: flex;
  gap: 8px;
}

.btn-search {
  padding: 10px 20px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Space Grotesk", sans-serif;
  border-radius: 4px;
}

.btn-search:hover {
  background: #059669;
}

.btn-clear {
  padding: 10px 16px;
  background: transparent;
  color: #737373;
  border: 1px solid #262626;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  border-radius: 4px;
}

.btn-clear:hover {
  border-color: #404040;
  color: #fafafa;
}

.search-results {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  color: #737373;
}

.search-results strong {
  color: #fafafa;
}

.result-badge {
  background: #10b981;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.alert-box {
  padding: 16px 24px;
  margin-bottom: 24px;
  border-left: 3px solid;
  font-size: 14px;
  text-align: center;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #f59e0b;
  font-size: 13px;
  text-align: center;
}

.alert-warning-pulse {
  animation: pulse-text 2s infinite;
}

.category-section {
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-count {
  background: #10b981;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

.countdown-link {
  color: #10b981;
  text-decoration: underline;
  margin-left: 5px;
}

.verify-icon {
  color: #10b981;
  font-size: 18px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #737373;
  font-size: 16px;
}

.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid #262626;
  color: #737373;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}

.pill:hover {
  border-color: #10b981;
  color: #10b981;
  transform: translatey(-2px);
}

.pill.active {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}

.category-section.hidden {
  display: none;
  opacity: 0;
  transform: translatey(-10px);
}

.auth-container {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px;
}

.auth-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 48px;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #fafafa;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-size: 14px;
  color: #737373;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 15px;
  font-family: "Space Grotesk", sans-serif;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #404040;
}

.form-input::placeholder {
  color: #404040;
}

.captcha-container {
  text-align: center;
  margin: 24px 0;
}

#captchaCanvas {
  border: 1px solid #262626;
  margin-bottom: 12px;
  width: 100%;
  max-width: 300px;
  height: 100px;
}

.captcha-hint {
  font-size: 11px;
  color: #737373;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-refresh {
  padding: 8px 16px;
  background: transparent;
  color: #fafafa;
  border: 1px solid #262626;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Space Grotesk", sans-serif;
}

.btn-refresh:hover {
  border-color: #10b981;
  color: #10b981;
}

.auth-footer {
  margin-top: 32px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}

.auth-footer-text {
  font-size: 13px;
  color: #737373;
}

.auth-footer-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.auth-footer-link:hover {
  color: #059669;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}

.alert strong {
  font-weight: 600;
}

.btn-forgot {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  font-family: "Space Grotesk", sans-serif;
  margin-top: 16px;
}

.btn-forgot:hover {
  background: rgba(239, 68, 68, 0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #0a0a0a;
  margin: 5% auto;
  padding: 40px;
  border: 1px solid #1a1a1a;
  width: 90%;
  max-width: 600px;
}

.modal-close {
  color: #737373;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 20px;
}

.modal-close:hover {
  color: #fafafa;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 24px;
}

.modal-text {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.modal-steps {
  background: #050505;
  padding: 20px;
  border-left: 3px solid #ef4444;
  margin: 24px 0;
}

.modal-step {
  color: #fafafa;
  margin-bottom: 12px;
  font-size: 13px;
}

.modal-step strong {
  color: #10b981;
}

.modal-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  padding: 16px;
  margin-top: 24px;
  text-align: center;
}

.modal-warning p {
  color: #ef4444;
  font-weight: 600;
  margin: 0;
  font-size: 13px;
}

.purchases-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
}

.purchases-table thead {
  background: #050505;
}

.purchases-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.purchases-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.purchases-table tr:last-child td {
  border-bottom: none;
}

.purchases-table tr:hover {
  background: #0f0f0f;
}

.btn-view {
  padding: 8px 20px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-view:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.no-purchases {
  text-align: center;
  padding: 60px 20px;
  color: #737373;
  font-size: 16px;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.purchase-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.purchase-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.detail-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
}

.detail-value {
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 14px;
  cursor: text;
  user-select: all;
}

.detail-value:focus {
  outline: none;
  border-color: #3b82f6;
}

.copy-line {
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #3b82f6;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 13px;
  cursor: text;
  user-select: all;
  word-break: break-all;
}

.btn-back {
  width: 100%;
  padding: 14px 32px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-back:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.section-divider {
  margin: 40px 0;
  height: 1px;
  background: #1a1a1a;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.search-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-input {
  padding: 10px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-family: inherit;
  font-size: 14px;
}

.field-input::placeholder {
  color: #525252;
}

.field-input:focus {
  outline: none;
  border-color: #404040;
}

.search-actions {
  display: flex;
  gap: 16px;
}

.info-text {
  margin-top: 24px;
  padding: 16px;
  background: #0a0e1b;
  border: 1px solid #1a1a1a;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
}

.cards-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
}

.cards-table thead {
  background: #050505;
}

.cards-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.cards-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.cards-table tr:last-child td {
  border-bottom: none;
}

.cards-table tr:hover {
  background: #0f0f0f;
}

.bin-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bin-number {
  font-size: 14px;
  font-weight: 700;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.bin-type {
  font-size: 11px;
  color: #737373;
}

.year-badge {
  background: #ef4444;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.location-info {
  line-height: 1.6;
  color: #fafafa;
}

.location-zip {
  font-size: 11px;
  color: #737373;
  margin-top: 4px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.badge-info {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.badge-primary {
  border-color: #ec4899;
  color: #ec4899;
  background: rgba(236, 72, 153, 0.1);
}

.price-text {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
}

.price-old {
  text-decoration: line-through;
  color: #737373;
  font-size: 12px;
  margin-right: 8px;
}

.btn-purchase {
  padding: 8px 20px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-purchase:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.resolved-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.resolved-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 60px 40px;
  text-align: center;
}

.resolved-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: scaleIn 0.5s ease;
}

.resolved-title {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.resolved-message {
  font-size: 14px;
  color: #737373;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-home {
  padding: 14px 32px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-home:hover {
  background: #059669;
  color: #fff;
  transform: translatey(-2px);
}

.dispute-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.dispute-field {
  margin-bottom: 24px;
}

.info-box {
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #737373;
  line-height: 1.8;
  font-style: italic;
}

.reply-box {
  background: #0f0f0f;
  border: 1px solid #262626;
  padding: 20px;
  margin-bottom: 16px;
}

.reply-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #10b981;
  margin-bottom: 12px;
  font-weight: 600;
}

.reply-from.admin {
  color: #ef4444;
}

.reply-from.buyer {
  color: #3b82f6;
}

.reply-from.seller {
  color: #a855f7;
}

.btn-primary {
  background: #10b981;
  color: #fff;
}

.btn-primary:hover {
  background: #059669;
  transform: translatey(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-danger {
  background: #ef4444;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-info {
  padding: 12px 24px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-info:hover {
  background: #2563eb;
}

.btn-secondary {
  background: #3b82f6;
}

.btn-secondary:hover {
  background: #2563eb;
}

.dispute-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.dispute-warning {
  padding: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  margin-bottom: 32px;
  border-radius: 4px;
}

.dispute-warning-title {
  font-size: 14px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.dispute-warning-text {
  font-size: 13px;
  color: #fca5a5;
  line-height: 1.8;
  font-style: italic;
}

.field-textarea:focus {
  outline: 2px solid #8b5cf6;
}

.info-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #737373;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  resize: none;
  margin-bottom: 32px;
}

.btn-dispute {
  padding: 6px 16px;
  background: #f59e0b;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-left: 4px;
}

.btn-dispute:hover {
  background: #d97706;
}

.error-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.error-content {
  max-width: 600px;
  text-align: center;
}

.error-title {
  font-size: 32px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.error-message {
  font-size: 16px;
  color: #a3a3a3;
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-error {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.error-decoration {
  margin-top: 40px;
  font-size: 14px;
  color: #525252;
}

.page-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.escrow-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 30px;
}

.escrow-card h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.reward-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

.reward-box.vip {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.reward-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.reward-value {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.reward-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.requirements {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid #667eea;
  padding: 20px;
  margin: 20px 0;
}

.requirements h4 {
  color: #667eea;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements li {
  padding: 8px 0;
  color: #fafafa;
  font-size: 14px;
}

.requirements li::before {
  content: "✓";
  color: #10b981;
  margin-right: 10px;
  font-weight: 700;
}

.status-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.status-box.warning {
  background: rgba(234, 179, 8, 0.1);
  border-color: #eab308;
}

.status-box.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.btn-escrow {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-escrow:hover {
  transform: translatey(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  color: #fff;
}

.btn-escrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.staking-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.staking-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.status-large {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border: 1px solid #667eea;
  margin-bottom: 30px;
}

.status-large.completed {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  border-color: #10b981;
}

.status-large.cooldown {
  background: linear-gradient(
    135deg,
    rgba(234, 179, 8, 0.1) 0%,
    rgba(202, 138, 4, 0.1) 100%
  );
  border-color: #eab308;
}

.days-counter {
  font-size: 64px;
  font-weight: 700;
  color: #667eea;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  margin: 20px 0;
}

.days-counter.completed {
  color: #10b981;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #1a1a1a;
  margin: 20px 0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-size: 11px;
  color: #737373;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: #050505;
}

.history-table thead {
  background: #0a0a0a;
}

.history-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
}

.history-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
}

.history-table tr:hover {
  background: #0f0f0f;
}

.badge-warning {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.message-container {
  max-width: 800px;
  margin: 0 auto;
}

.message-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 24px;
}

.message-from {
  font-size: 15px;
  color: #fafafa;
}

.message-from strong {
  color: #3b82f6;
}

.message-to {
  font-size: 13px;
  color: #737373;
  margin-top: 4px;
}

.message-content {
  padding: 24px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
  margin-bottom: 24px;
  min-height: 200px;
  cursor: text;
}

.message-content:focus {
  outline: none;
}

.btn-reply {
  padding: 14px 32px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-right: 12px;
}

.btn-reply:hover {
  background: #2563eb;
}

.messages-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
}

.nav-btn {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #262626;
  color: #737373;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.nav-btn:hover {
  border-color: #404040;
  color: #fafafa;
}

.nav-btn.active {
  background: #fafafa;
  color: #050505;
  border-color: #fafafa;
}

.btn-new {
  padding: 12px 32px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.messages-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.messages-table thead {
  background: #050505;
}

.messages-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
}

.messages-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
}

.messages-table tr:hover {
  background: #0f0f0f;
}

.btn-open {
  padding: 8px 20px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.send-container {
  max-width: 700px;
  margin: 0 auto;
}

.send-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.field-input:read-only {
  color: #ef4444;
}

.btn-send {
  width: 100%;
  padding: 18px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
}

.btn-send:hover {
  background: #059669;
}

.badge-member {
  background: #525252;
  color: #fff;
}

.status-unread {
  color: #ef4444;
  font-style: italic;
  font-size: 11px;
}

.news-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 48px;
  margin-bottom: 24px;
}

.news-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #262626;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #737373;
}

.news-date::before {
  content: "📅";
  font-size: 14px;
}

.news-content p {
  margin-bottom: 16px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.faq-card {
  background: #0a0a0a;
  border-left: 3px solid #3b82f6;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.faq-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fafafa;
}

.faq-answer {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 1.8;
}

.faq-answer p {
  margin-bottom: 16px;
}

.faq-answer ul {
  margin: 16px 0;
  padding-left: 24px;
}

.faq-answer li {
  margin-bottom: 12px;
}

.faq-answer a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.2s;
}

.faq-answer a:hover {
  color: #60a5fa;
}

.product-container {
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.product-field {
  margin-bottom: 24px;
}

.field-value {
  width: 100%;
  color: #fafafa;
  background: #050505;
  border: 1px solid #262626;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 4px;
  display: block;
}

.btn-buy:disabled {
  background: #262626;
  color: #525252;
  cursor: not-allowed;
}

.escrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

.goods-container {
  max-width: 900px;
  margin: 0 auto;
}

.goods-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.goods-field {
  margin-bottom: 24px;
}

.field-value:focus {
  outline: none;
  border-color: #10b981;
}

.btn-action {
  width: 100%;
  padding: 18px;
  background: #8b5cf6;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 16px;
}

.btn-action:hover {
  background: #059669;
}

.create-form {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
  font-family: inherit;
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: #f59e0b;
}

.btn-create {
  background: #10b981;
  color: #000;
}

.btn-create:hover {
  background: #059669;
}

.buy-container {
  max-width: 700px;
  margin: 0 auto;
}

.buy-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  margin-bottom: 24px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.quantity-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fafafa;
}

.quantity-input {
  width: 80px;
  padding: 8px 12px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.quantity-slider {
  flex: 1;
  height: 6px;
  background: #262626;
  position: relative;
  cursor: pointer;
}

.btn-confirm {
  width: 100%;
  padding: 18px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  margin-bottom: 12px;
}

.btn-confirm:hover {
  background: #059669;
}

.promo-section {
  margin: 32px 0;
  padding: 24px;
  background: #050505;
  border: 1px solid #262626;
}

.promo-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.promo-input {
  flex: 1;
  padding: 12px 14px;
  background: #0a0a0a;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  text-transform: uppercase;
}

.btn-apply {
  padding: 12px 24px;
  background: #3b82f6;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-apply:hover {
  background: #2563eb;
}

.btn-apply:disabled {
  background: #404040;
  cursor: not-allowed;
}

.promo-success {
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #10b981;
  color: #10b981;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

.promo-error {
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #ef4444;
  color: #ef4444;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

#promo-message {
  display: none;
}

.discount-breakdown {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #262626;
}

.discount-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.discount-label {
  color: #737373;
}

.discount-value {
  color: #fafafa;
  font-weight: 600;
}

.discount-value.savings {
  color: #10b981;
}

.final-price-row {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #262626;
  margin-top: 12px;
}

.final-price-label {
  color: #fafafa;
  font-weight: 700;
  font-size: 16px;
}

.final-price-value {
  color: #10b981;
  font-weight: 700;
  font-size: 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background: #0a0a0a;
  border: 2px solid #1a1a1a;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}

.bonus-card.info {
  border-color: #3b82f6;
}

.bonus-card.success {
  border-color: #10b981;
}

.bonus-card.danger {
  border-color: #ef4444;
}

.bonus-card.warning {
  border-color: #fbbf24;
}

.bonus-card.primary {
  border-color: #8b5cf6;
}

.bonus-percent {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-card.info .bonus-percent {
  color: #3b82f6;
}

.bonus-card.success .bonus-percent {
  color: #10b981;
}

.bonus-card.danger .bonus-percent {
  color: #ef4444;
}

.bonus-card.warning .bonus-percent {
  color: #fbbf24;
}

.bonus-card.primary .bonus-percent {
  color: #8b5cf6;
}

.bonus-text {
  font-size: 13px;
  color: #737373;
  line-height: 1.6;
}

.balance-box {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.balance-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
  margin-bottom: 16px;
}

.balance-amount {
  font-weight: 700;
  color: #10b981;
  font-size: 16px;
}

.btn-deposit {
  padding: 14px 40px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  margin: 8px;
}

.btn-deposit:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.transactions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-top: 40px;
}

.transactions-table thead {
  background: #050505;
}

.transactions-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.transactions-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.transactions-table tr:last-child td {
  border-bottom: none;
}

.transactions-table tr:hover {
  background: #0f0f0f;
}

 .status-pending,
 .status-completed,
 .status-failed,
 .status-confirmed,
 .status-processing,
.status-expired {
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-pending {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid #fbbf24;
}

.status-completed {
  background: #10b981;
  color: #fff;
}

.status-confirmed {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.status-processing {
  background: #404040;
  color: #fafafa;
}

.status-failed {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.status-expired {
  color: #ef4444;
  font-weight: 600;
}

.sales-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
}

.sales-table thead {
  background: #050505;
}

.sales-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.sales-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
}

.sales-table tr:hover {
  background: #0f0f0f;
}

.status-badge {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  display: inline-block;
}

.status-delivered {
  background: #3b82f6;
  color: #fff;
}

.status-disputed {
  background: #f59e0b;
  color: #050505;
}

.status-refunded {
  background: #ef4444;
  color: #fff;
}

.search-box {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 24px;
  margin-bottom: 32px;
}

.ref-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.ref-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.ref-code-box {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
  box-sizing: border-box;
  max-width: 100%;
}

.ref-code {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  margin-bottom: 12px;
  word-break: break-all;
}

.ref-link {
  background: #fff;
  color: #000;
  padding: 12px 20px;
  font-size: 14px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.stat-box {
  background: #050505;
  border: 1px solid #262626;
  padding: 20px;
  text-align: center;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  background: #050505;
}

.ref-table thead {
  background: #0a0a0a;
}

.ref-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
}

.ref-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
}

.ref-table tr:hover {
  background: #0f0f0f;
}

.btn-goods {
  padding: 6px 16px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-goods:hover {
  background: #059669;
}

.btn-goods:disabled {
  background: #262626;
  color: #525252;
  cursor: not-allowed;
}

.products-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
}

.products-table thead {
  background: #050505;
}

.products-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.products-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  color: #fafafa;
}

.products-table tr:hover {
  background: #0f0f0f;
}

.status-available {
  color: #10b981;
  font-weight: 600;
}

.status-sold {
  color: #ef4444;
  font-weight: 600;
}

.btn-edit,
.btn-boost {
  padding: 6px 16px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  margin: 2px;
}

.btn-boost {
  background: #10b981;
  color: #fff;
}

.btn-boost:hover {
  background: #059669;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.membership-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}

.membership-card:hover {
  border-color: #ec4899;
  transform: translatey(-4px);
}

.membership-card.vip {
  background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 100%);
  border-color: #ec4899;
}

.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.membership-badge.gold {
  background: #f59e0b;
  color: #050505;
}

.membership-badge.vip {
  background: #ec4899;
  color: #fff;
}

.membership-price {
  text-align: center;
  margin: 24px 0 32px;
  font-size: 48px;
  font-weight: 700;
  color: #fafafa;
}

.membership-price small {
  font-size: 24px;
  color: #737373;
}

.membership-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.membership-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: #fafafa;
  border-bottom: 1px solid #1a1a1a;
}

.membership-feature:last-child {
  border-bottom: none;
}

.membership-feature.disabled {
  color: #404040;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ec4899;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.feature-icon.disabled {
  background: #1a1a1a;
  color: #404040;
}

.btn-membership {
  width: 100%;
  padding: 16px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-membership:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.btn-membership.disabled {
  background: #1a1a1a;
  color: #404040;
  cursor: not-allowed;
}

.profile-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
}

.profile-card h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #737373;
}

.profile-value {
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 14px;
}

.profile-input {
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-family: inherit;
  font-size: 14px;
}

.profile-input:focus {
  outline: none;
  border-color: #ec4899;
}

.btn-save {
  padding: 14px 32px;
  background: #fafafa;
  color: #050505;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.btn-save:hover {
  background: #e5e5e5;
  transform: translatey(-1px);
}

.edit-form {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.btn-update {
  width: 100%;
  padding: 16px;
  background: #f59e0b;
  color: #050505;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-update:hover {
  background: #d97706;
}

.api-page-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 0;
  margin: 40px 0;
}

.api-page-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.api-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.api-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 32px;
}

.api-card-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fafafa;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a1a1a;
}

.api-info {
  font-size: 13px;
  color: #d1d1d1;
  line-height: 1.8;
  margin-bottom: 24px;
}

.api-info strong {
  color: #fafafa;
}

.api-key-box {
  background: #050505;
  border: 2px solid #10b981;
  padding: 16px;
  margin: 20px 0;
  font-family: monospace;
  font-size: 13px;
  color: #10b981;
  word-break: break-all;
}

.api-key-label {
  font-size: 10px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.api-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.api-stat-item {
  background: #050505;
  padding: 16px;
  border: 1px solid #1a1a1a;
  text-align: center;
}

.api-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #10b981;
}

.api-stat-label {
  font-size: 10px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.btn-api {
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  margin: 8px;
  display: inline-block;
}

.btn-regenerate {
  background: #3b82f6;
  color: #fff;
}

.btn-regenerate:hover {
  background: #2563eb;
}

.btn-delete {
  background: #ef4444;
  color: #fff;
}

.btn-delete:hover {
  background: #dc2626;
}

.btn-copy {
  background: #8b5cf6;
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
}

.btn-copy:hover {
  background: #7c3aed;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.requirements-list li {
  padding: 10px;
  margin: 8px 0;
  background: #050505;
  border-left: 3px solid #8b5cf6;
  font-size: 12px;
}

.requirements-list li.met {
  border-left-color: #10b981;
}

.requirements-list li.not-met {
  border-left-color: #ef4444;
}

.code-block {
  background: #050505;
  border: 1px solid #1a1a1a;
  padding: 16px;
  font-family: monospace;
  font-size: 12px;
  color: #d1d1d1;
  margin: 16px 0;
  overflow-x: auto;
}

.endpoint-item {
  margin: 16px 0;
  padding: 12px;
  background: #050505;
  border-left: 3px solid #667eea;
}

.endpoint-method {
  display: inline-block;
  padding: 4px 8px;
  background: #10b981;
  color: #000;
  font-weight: 700;
  font-size: 10px;
  border-radius: 3px;
  margin-right: 8px;
}

.endpoint-method.post {
  background: #3b82f6;
  color: #fff;
}

.endpoint-path {
  font-family: monospace;
  color: #fafafa;
}

.balance-container {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.balance-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 60px 40px;
  text-align: center;
}

.deposit-container {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.bonus-card:hover {
  border-color: #262626;
}

.bonus-percentage {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-card.info .bonus-percentage {
  color: #3b82f6;
}

.bonus-card.success .bonus-percentage {
  color: #10b981;
}

.bonus-card.danger .bonus-percentage {
  color: #ef4444;
}

.bonus-card.warning .bonus-percentage {
  color: #fbbf24;
}

.bonus-card.primary .bonus-percentage {
  color: #8b5cf6;
}

.deposit-form {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  font-size: 14px;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #10b981;
}

.form-hint {
  font-size: 12px;
  color: #737373;
  margin-top: 8px;
  line-height: 1.6;
}

.btn-generate {
  width: 100%;
  padding: 18px;
  background: #10b981;
  color: #fff;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.btn-generate:hover {
  background: #059669;
}

.alert-danger ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.invoice-container {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.invoice-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 40px;
}

.invoice-field {
  margin-bottom: 24px;
}

.status-active {
  color: #10b981;
  font-weight: 600;
}

.countdown-urgent {
  color: #f59e0b;
  font-weight: 600;
}

.tool-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0 40px;
  margin-bottom: 40px;
  text-align: center;
}

.tool-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tool-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.tool-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.tool-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
  margin-bottom: 8px;
  font-weight: 600;
}

.tool-input {
  width: 100%;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 4px;
}

.tool-input:focus {
  outline: none;
  border-color: #667eea;
}

.tool-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
}

.tool-btn:hover {
  transform: translatey(-2px);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.platform-checkbox {
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.platform-checkbox input {
  position: absolute;
  opacity: 0;
}

.platform-checkbox.selected {
  background: #0f0f0f;
  border-color: #667eea;
}

.platform-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.platform-name {
  font-size: 11px;
  color: #a3a3a3;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.result-card {
  background: #050505;
  border: 1px solid #262626;
  padding: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-found {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.result-not-found {
  opacity: 0.6;
}

.result-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-icon {
  font-size: 24px;
}

.result-name {
  font-size: 13px;
  color: #fafafa;
}

.result-status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-found {
  background: #10b981;
  color: #000;
}

.status-not-found {
  background: #404040;
  color: #737373;
}

.view-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.view-btn:hover {
  transform: translatey(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

.stats-bar {
  background: #1a1a1a;
  padding: 16px 24px;
  margin-bottom: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-around;
}

.select-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.select-btn {
  background: #262626;
  color: #a3a3a3;
  padding: 8px 16px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.select-btn:hover {
  background: #404040;
  color: #fafafa;
}

.export-section {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.export-btn {
  background: #262626;
  color: #fafafa;
  padding: 10px 20px;
  font-size: 12px;
  border: 1px solid #404040;
  cursor: pointer;
  border-radius: 4px;
}

.export-btn:hover {
  background: #404040;
}

.update-banner {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.update-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.update-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.update-text {
  font-size: 13px;
  color: #a3a3a3;
}

.update-timer {
  font-size: 12px;
  color: #737373;
}

.access-info {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  text-align: center;
}

.access-info.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.access-info.vip {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
}

.access-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.access-subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 4px;
}

.access-counts {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.count-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
}

.count-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.count-value {
  font-size: 18px;
  font-weight: 700;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.filter-btn {
  background: #1a1a1a;
  color: #737373;
  padding: 10px 16px;
  font-size: 13px;
  border: 1px solid #262626;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #262626;
  color: #fafafa;
}

.filter-btn.active {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.proxy-table {
  width: 100%;
  border-collapse: collapse;
  background: #050505;
  margin-top: 20px;
}

.proxy-table th {
  background: #0a0a0a;
  padding: 12px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
  border-bottom: 2px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 10;
}

.proxy-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
}

.proxy-table tr:hover {
  background: #0f0f0f;
}

.proxy-ip {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  color: #10b981;
  font-weight: 600;
}

.proxy-type {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.type-http {
  background: #3b82f6;
  color: #fff;
}

.type-https {
  background: #10b981;
  color: #fff;
}

.type-socks4 {
  background: #f59e0b;
  color: #000;
}

.type-socks5 {
  background: #ef4444;
  color: #fff;
}

.status-alive {
  color: #10b981;
  font-weight: 600;
}

.status-dead {
  color: #ef4444;
}

.anonymity-elite {
  background: #10b981;
  color: #000;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.anonymity-anonymous {
  background: #f59e0b;
  color: #000;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.anonymity-transparent {
  background: #ef4444;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.export-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

.loading-text {
  font-size: 14px;
  color: #a3a3a3;
}

.update-bar {
  background: #0a0a0a;
  padding: 16px 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.update-time {
  font-size: 12px;
  color: #737373;
}

.limit-banner {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border: 2px solid #fbbf24;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.limit-banner h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.limit-banner p {
  font-size: 14px;
  margin: 4px 0;
  color: #000;
}

.upgrade-btn {
  background: #000;
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
}

.stat-card {
  background: #050505;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
  text-align: center;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-tab {
  background: #1a1a1a;
  color: #737373;
  padding: 10px 20px;
  font-size: 13px;
  border: 1px solid #262626;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.filter-tab:hover {
  background: #262626;
  color: #a3a3a3;
}

.filter-tab.active {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.proxy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proxy-column {
  background: #050505;
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 16px;
  height: 600px;
  overflow-y: auto;
}

.proxy-column::-webkit-scrollbar {
  width: 6px;
}

.proxy-column::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.proxy-column::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 3px;
}

.column-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
  margin-bottom: 12px;
  font-weight: 600;
  padding: 8px;
  background: #0a0a0a;
  border-radius: 4px;
}

.proxy-item {
  background: #0a0a0a;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.proxy-item:hover {
  background: #0f0f0f;
  border-color: #667eea;
}

.proxy-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-flag {
  font-size: 32px;
  margin-bottom: 8px;
}

.copy-btn {
  background: #262626;
  color: #fafafa;
  border: none;
  padding: 6px 12px;
  font-size: 11px;
  cursor: pointer;
  margin-top: 12px;
  border-radius: 4px;
}

.copy-btn:hover {
  background: #404040;
}

.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.page-btn {
  background: #1a1a1a;
  color: #a3a3a3;
  padding: 8px 12px;
  border: 1px solid #262626;
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  min-width: 36px;
  text-align: center;
}

.page-btn:hover {
  background: #262626;
  color: #fafafa;
}

.page-btn.active {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  font-size: 13px;
  color: #737373;
  margin: 0 16px;
}

.page-header {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 20px 0;
  margin: 40px 0;
  text-align: center;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.info-item {
  background: #050505;
  border: 1px solid #262626;
  border-radius: 6px;
  padding: 16px;
}

.info-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #737373;
  margin-bottom: 6px;
}

.info-value {
  font-size: 15px;
  font-weight: 600;
  color: #fafafa;
}

.records-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
}

.record-item {
  background: #050505;
  border: 1px solid #262626;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #d4d4d4;
  position: relative;
}

.record-item:hover {
  border-color: #dc2626;
}

.record-number {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #1a1a1a;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  color: #737373;
}

.record-field {
  margin-bottom: 8px;
}

.back-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #262626;
  color: #fafafa;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.back-btn:hover {
  background: #404040;
}

.pagination-btn:hover:not(:disabled) {
  background: #404040;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: #737373;
  font-size: 13px;
}

.page-numbers {
  display: flex;
  gap: 6px;
}

.page-num {
  padding: 6px 12px;
  background: #262626;
  border: 1px solid #404040;
  color: #fafafa;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.page-num:hover {
  background: #404040;
}

.page-num.active {
  background: #dc2626;
  border-color: #dc2626;
}

.info-banner {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  border: 2px solid #3b82f6;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.info-banner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.info-banner p {
  font-size: 14px;
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-box {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.price-item {
  background: #050505;
  border: 1px solid #262626;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #737373;
  margin-bottom: 8px;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
}

.price-vip {
  color: #fbbf24 !important;
}

.price-gold {
  color: #f59e0b !important;
}

.tool-select {
  width: 100%;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.tool-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.results-section {
  display: none;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.results-header {
  text-align: center;
  margin-bottom: 24px;
}

.results-found {
  font-size: 48px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.results-text {
  font-size: 16px;
  color: #737373;
}

.results-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 12px;
  color: #525252;
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.purchase-option {
  background: #050505;
  border: 2px solid #262626;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.purchase-option:hover {
  border-color: #dc2626;
  transform: translatey(-4px);
}

.purchase-option.selected {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}

.option-title {
  font-size: 16px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.option-count {
  font-size: 32px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.option-price {
  font-size: 20px;
  font-weight: 600;
  color: #fbbf24;
}

.option-desc {
  font-size: 11px;
  color: #737373;
  margin-top: 8px;
}

.purchase-btn {
  margin-top: 24px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.balance-info {
  background: #1a1a1a;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: #a3a3a3;
  margin-bottom: 16px;
}

.demo-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.demo-header {
  text-align: center;
  margin-bottom: 20px;
}

.demo-title {
  font-size: 16px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 8px;
}

.demo-subtitle {
  font-size: 12px;
  color: #737373;
}

.demo-record {
  background: #050505;
  border: 2px solid #262626;
  border-radius: 6px;
  padding: 20px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #d4d4d4;
  max-width: 100%;
  margin: 0 auto;
}

.demo-field {
  margin-bottom: 4px;
}

.demo-label {
  color: #10b981;
  font-weight: 600;
  display: inline-block;
  min-width: 90px;
}

.demo-value {
  color: #fafafa;
}

.purchases-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.purchase-card:hover {
  border-color: #dc2626;
  transform: translateX(4px);
}

.purchase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.purchase-id {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fafafa;
}

.purchase-date {
  font-size: 12px;
  color: #737373;
}

.purchase-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.detail-item {
  background: #050505;
  border: 1px solid #262626;
  border-radius: 6px;
  padding: 12px;
}

.detail-value.price {
  color: #10b981;
  font-size: 18px;
}

.no-purchases-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-purchases-text {
  font-size: 16px;
  color: #737373;
  margin-bottom: 24px;
}

.pagination a,
.pagination span {
  padding: 8px 12px;
  background: #0a0a0a;
  border: 1px solid #262626;
  border-radius: 4px;
  color: #fafafa;
  text-decoration: none;
  font-size: 13px;
}

.pagination .active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.fullz-card {
  background: #050505;
  border: 1px solid #262626;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.fullz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1a1a1a;
}

.fullz-title {
  font-size: 20px;
  font-weight: 700;
  color: #fafafa;
}

.fullz-section {
  margin-bottom: 20px;
}

.fullz-section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #737373;
  margin-bottom: 12px;
  font-weight: 600;
}

.fullz-field {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.fullz-label {
  min-width: 140px;
  font-size: 12px;
  color: #737373;
}

.fullz-value {
  font-size: 13px;
  color: #fafafa;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.copy-section {
  display: flex;
  gap: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ssn-highlight {
  color: #10b981;
  font-weight: 600;
}

.dl-highlight {
  color: #f59e0b;
  font-weight: 600;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.address-card {
  background: #050505;
  border: 1px solid #262626;
  padding: 24px;
  border-radius: 8px;
  position: relative;
}

.address-card:hover {
  border-color: #667eea;
}

.address-name {
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 16px;
}

.address-line {
  font-size: 13px;
  color: #a3a3a3;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-line strong {
  color: #737373;
  min-width: 60px;
  font-size: 11px;
  text-transform: uppercase;
}

.country-flags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.country-btn {
  background: #1a1a1a;
  border: 2px solid #262626;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.country-btn:hover {
  border-color: #667eea;
  background: #0f0f0f;
}

.country-btn.active {
  border-color: #667eea;
  background: #0f0f0f;
}

.country-name {
  font-size: 12px;
  color: #a3a3a3;
}

.usage-bar {
  background: #1a1a1a;
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.usage-text {
  font-size: 13px;
  color: #737373;
}

.usage-count {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
}

.card-result {
  background: #050505;
  border: 1px solid #262626;
  padding: 20px;
  border-radius: 8px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.card-number {
  font-size: 18px;
  letter-spacing: 2px;
  color: #10b981;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-details {
  display: flex;
  justify-content: space-between;
  color: #737373;
  font-size: 14px;
}

.rate-limit {
  background: #f59e0b;
  color: #000;
  padding: 12px 20px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 4px;
}

.usage-info {
  background: #1a1a1a;
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #737373;
  font-size: 13px;
}

.input-group {
  margin-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bin-presets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.bin-preset {
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 12px;
}

.bin-preset:hover {
  border-color: #667eea;
  background: #0f0f0f;
}

.limit-banner a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #000;
  color: #fbbf24;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
}

.usage-stats {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.usage-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.usage-stat-item {
  text-align: center;
}

.usage-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #737373;
  margin-bottom: 4px;
}

.usage-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #fafafa;
}

.usage-stat-value.gold {
  color: #fbbf24;
}

.usage-stat-value.green {
  color: #10b981;
}

.usage-stat-value.red {
  color: #ef4444;
}

.tool-textarea {
  width: 100%;
  background: #050505;
  border: 1px solid #262626;
  color: #fafafa;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 4px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  min-height: 150px;
}

.bin-result {
  background: #050505;
  border: 1px solid #262626;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.bin-result.valid {
  border-color: #10b981;
}

.bin-result.invalid {
  border-color: #ef4444;
  opacity: 0.8;
}

.bin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bin-status {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-valid {
  background: #10b981;
  color: #000;
}

.status-invalid {
  background: #ef4444;
  color: #fff;
}

.bin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.bin-field {
  background: #0a0a0a;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #1a1a1a;
}

.bin-field-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #737373;
  margin-bottom: 4px;
}

.bin-field-value {
  font-size: 14px;
  color: #fafafa;
  font-weight: 600;
}

.brand-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 16px;
}

.brand-visa {
  background: linear-gradient(135deg, #1a365d, #2563eb);
  color: #fff;
}

.brand-mastercard {
  background: linear-gradient(135deg, #eb001b, #ff5f00);
  color: #fff;
}

.brand-amex {
  background: linear-gradient(135deg, #006fcf, #00a6e0);
  color: #fff;
}

.brand-discover {
  background: linear-gradient(135deg, #ff6000, #ff9100);
  color: #fff;
}

.brand-other {
  background: #404040;
  color: #fafafa;
}

.quick-bins {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.quick-bin {
  background: #1a1a1a;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #262626;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.quick-bin:hover {
  background: #262626;
  border-color: #667eea;
}

.feature-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature-tag {
  background: #1a1a1a;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  color: #a3a3a3;
}

.stat-icon {
  font-size: 20px;
}

.stat-text {
  font-size: 13px;
  color: #737373;
}

.ssn-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  margin-bottom: 40px;
}

.ssn-table thead {
  background: #050505;
}

.ssn-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #1a1a1a;
  font-family: "Space Grotesk", -apple-system, sans-serif;
}

.ssn-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  font-family: "Space Grotesk", -apple-system, sans-serif;
  color: #fafafa;
}

.ssn-table tr:last-child td {
  border-bottom: none;
}

.ssn-table tr:hover {
  background: #0f0f0f;
}

.info-tooltip {
  position: relative;
  cursor: help;
  color: #3b82f6;
}

.info-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 12px;
  margin-bottom: 8px;
  width: 200px;
  font-size: 11px;
  transition: all 0.2s;
  z-index: 100;
  text-align: left;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}

@media (prefers-reduced-motion: no-preference) {
  .ticker-wrapper {
    animation: scroll 60s linear infinite;
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-actions .btn-header {
    font-size: 10px;
    padding: 6px 10px;
  }
  .header-actions .btn-header.warning,
  .header-actions .btn-header.btn-messages,
  .header-actions .btn-header.btn-disputes {
    padding: 6px 8px;
  }
  .message-badge {
    top: -4px;
    right: -4px;
    min-width: 16px;
    font-size: 9px;
    padding: 1px 4px;
  }
  .dispute-count {
    font-size: 8px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-name {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 25ch;
  }
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 12px;
  }
  .header-actions .btn-header {
    font-size: 9px;
    padding: 5px 8px;
  }
  .btn-auth,
  .btn-auth-outline {
    font-size: 10px;
    padding: 8px 16px;
  }
  .stat-block {
    padding: 20px;
  }
  .stat-block-compact {
    padding: 12px 16px;
  }
  .stat-title {
    font-size: 9px;
  }
  .stat-value {
    font-size: 24px;
  }
  .activity-label {
    font-size: 10px;
  }
  .activity-value {
    font-size: 12px;
  }
  .auth-card {
    padding: 24px 16px;
  }
  .auth-title {
    font-size: 20px;
  }
  .form-input {
    padding: 12px;
    font-size: 14px;
  }
  .btn-submit {
    padding: 14px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .stats-row,
  .detail-grid,
  .search-grid,
  .membership-grid,
  .profile-grid,
  .purchase-options,
  .pricing-grid,
  .purchase-details,
  .grid-3,
  .address-grid,
  .grid-2,
  .results-grid,
  .bin-grid,
  .usage-stats-grid,
  .proxy-columns,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .bonus-grid,
  .bonus-cards {
    grid-template-columns: 1fr !important;
  }
  .purchases-table,
  .cards-table,
  .transactions-table,
  .proxy-table,
  .ssn-table {
    font-size: 11px;
  }
  .data-table {
    font-size: 13px;
  }
  .data-table th,
  .data-table td {
    padding: 12px;
  }
  .product-name {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 25ch;
  }
  .vip-block {
    padding: 40px 20px;
  }
  .vip-features {
    flex-direction: column;
    gap: 20px;
  }
  .search-section {
    padding: 24px 0;
  }
  .filter-pills {
    gap: 8px;
  }
  .pill {
    padding: 8px 16px;
    font-size: 11px;
  }
  .purchases-table th,
  .purchases-table td {
    padding: 10px;
  }
  .purchase-card {
    padding: 20px;
  }
  .cards-table th,
  .cards-table td {
    padding: 10px;
  }
  .error-code {
    font-size: 80px;
  }
  .error-title {
    font-size: 24px;
  }
  .error-actions {
    flex-direction: column;
  }
  .btn-error {
    width: 100%;
  }
  .faq-card {
    padding: 24px 20px;
  }
  .faq-number {
    font-size: 32px;
    top: 12px;
    right: 16px;
  }
  .balance-amount {
    font-size: 28px;
  }
  .transactions-table th,
  .transactions-table td {
    padding: 10px 8px;
  }
  .membership-price {
    font-size: 36px;
  }
  .profile-card {
    padding: 20px;
  }
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .proxy-table th,
  .proxy-table td {
    padding: 6px;
  }
  .filter-controls {
    grid-template-columns: 1fr 1fr;
  }
  .pagination {
    flex-wrap: wrap;
  }
  .demo-record {
    font-size: 11px;
    padding: 16px;
  }
  .purchase-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .fullz-label {
    min-width: 100px;
  }
  .ssn-table th,
  .ssn-table td {
    padding: 10px;
  }
  .stats-row {
    flex-direction: column;
  }
  .stat-block,
  .stat-col-double {
    width: 100%;
  }
  .activity-stats {
    gap: 6px;
  }
  .activity-row {
    padding: 10px 12px;
  }
  .activity-label {
    font-size: 10px;
  }
  .activity-value {
    font-size: 13px;
  }
  .search-form form {
    flex-direction: column;
  }
  .search-input {
    width: 100%;
  }
  .search-buttons {
    width: 100%;
    justify-content: center;
  }
  .btn-search,
  .btn-clear {
    flex: 1;
    text-align: center;
  }
  .auth-container {
    margin: 40px auto;
    padding: 0 16px;
  }
  .auth-card {
    padding: 32px 24px;
  }
  .auth-title {
    font-size: 24px;
  }
  .captcha-container {
    margin: 16px 0;
  }
  #captchaCanvas {
    height: 80px;
  }
}
