/* ==========================================================================
   VPSCrypto.site - Modern Cyber-Fintech Design System
   ========================================================================== */

:root {
  --bg-primary: #070B14;
  --bg-secondary: #0D1322;
  --bg-card: #131B2E;
  --bg-card-hover: #19233C;
  --bg-glass: rgba(19, 27, 46, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #10B981;
  --border-accent: rgba(16, 185, 129, 0.3);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --accent-emerald: #10B981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  --accent-cyan: #06B6D4;
  --accent-blue: #3B82F6;
  --accent-purple: #8B5CF6;
  --accent-orange: #F97316;
  --accent-red: #EF4444;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", Monaco, Inconsolata, "Fira Code", monospace;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(16, 185, 129, 0.2);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-emerald);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #34D399;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #34D399;
}

.live-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-item a {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav-item a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-item.active a {
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.nav-counter-badge {
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-xmr-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF9933;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-xmr-pill:hover {
  background: rgba(255, 102, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.6);
  transform: translateY(-1px);
  color: #FFAA44;
}

.nav-primary-btn {
  padding: 0.52rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  background: rgba(7, 11, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.25rem 2rem;
  animation: slide-down 0.25s ease;
}

.mobile-nav-drawer.open {
  display: block;
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.mobile-nav-list a:hover, .mobile-nav-list a.active {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.mobile-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mobile-pill {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-pill:hover {
  border-color: #10B981;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .live-status-pill { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #042F2E;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34D399, #10B981);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
  color: #02201E;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.btn-outline {
  border-color: var(--border-accent);
  color: var(--accent-emerald);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--accent-emerald);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Comprehensive Professional Form Design System */
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #F8FAFC;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #64748B;
  font-family: inherit;
  font-weight: 400;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #0F172A;
  color: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Frontend Admin/Card Fallback Container */
.admin-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(10, 16, 29, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Crypto Live Ticker */
.crypto-ticker-bar {
  background: #0B101D;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.4rem 0;
  font-size: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: ticker-slide 35s linear infinite;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.ticker-badge {
  color: var(--accent-emerald);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-emerald);
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.1); }
  100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  max-width: 960px;
  margin: 0 auto 1.25rem;
  line-height: 1.15;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #34D399 0%, #06B6D4 50%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
}

.hero-search-wrapper {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.2s ease;
}

.hero-search-wrapper:focus-within {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-glow);
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  color: #FFFFFF;
  font-size: 1rem;
}

.hero-search-input::placeholder {
  color: var(--text-dim);
}

/* Quick Filter Pills */
.crypto-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-filter:hover, .pill-filter.active {
  background: var(--bg-card);
  border-color: var(--accent-emerald);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.pill-filter img {
  width: 18px;
  height: 18px;
}

/* Provider Cards & Grid */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--accent-emerald);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.provider-card.featured-badge-card {
  border-color: rgba(16, 185, 129, 0.4);
}

.card-ribbon {
  position: absolute;
  top: 12px;
  right: -30px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #042F2E;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 2.5rem;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.provider-logo-img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.provider-name-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.provider-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F59E0B;
}

.card-price-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
}

.price-value small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}

.spec-val {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 700;
}

.card-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.badge-kyc {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-dmca {
  background: rgba(139, 92, 246, 0.15);
  color: #C084FC;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-ddos {
  background: rgba(6, 182, 212, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.card-cryptos-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.crypto-mini-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transition: transform 0.15s ease;
}

.crypto-mini-icon:hover {
  transform: scale(1.2);
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
}

.card-actions .btn {
  flex: 1;
}

/* Matrix Comparison Table */
.matrix-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.matrix-table th {
  background: #0B101D;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-subtle);
}

.matrix-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

/* Interactive VPS Finder Quiz */
.quiz-box {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.95), rgba(13, 19, 34, 0.95));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quiz-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-choice-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.quiz-choice-card:hover, .quiz-choice-card.selected {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-2px);
}

.quiz-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.quiz-choice-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.quiz-choice-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--text-dim);
}

.quiz-result-area {
  display: none;
  background: #0B101D;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-accent);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

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

/* Single Provider Review Page */
.provider-hero {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(19, 27, 46, 0.6) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.provider-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.review-spec-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.review-spec-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.review-spec-box .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.pros-box h4 {
  color: #34D399;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cons-box h4 {
  color: #F87171;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pros-list, .cons-list {
  list-style: none;
}

.pros-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34D399;
  font-weight: 900;
}

.cons-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #F87171;
  font-weight: 900;
}

/* Blog Archive & Single Post */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category-tag {
  color: var(--accent-emerald);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* Article Layout */
.article-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  margin-top: 2rem;
}

.article-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h1, .article-content h2, .article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content pre {
  background: #060911;
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

.article-content code {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.2s ease;
}

/* Ads System */
.ad-container {
  margin: 1.25rem auto;
  position: relative;
  text-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 100%;
}

.ad-zone-header_banner {
  max-width: 728px;
  width: 100%;
  margin: 1.25rem auto;
  display: flex;
  justify-content: center;
}

.ad-zone-header_banner .ad-link {
  width: 100%;
  display: block;
  max-height: 90px;
}

.ad-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #94A3B8;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-banner-img {
  width: 100%;
  height: auto;
  max-height: 90px;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ad-banner-img:hover {
  transform: scale(1.005);
  filter: brightness(1.05);
}

/* Authentic Community Reviews Grid & Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-verified-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #34D399;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-rating-score {
  color: #F59E0B;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-comment-body {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.review-form-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 16, 29, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.25rem;
  max-width: 720px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

/* Sticky Footer Bar */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 19, 34, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent-emerald);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.badge-fire {
  background: #DC2626;
  color: #FFFFFF;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
}

.sticky-footer-btn {
  background: var(--accent-emerald);
  color: #042F2E;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.sticky-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.25rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #040811;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent-emerald);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-contact-item .contact-icon {
  font-size: 1rem;
  line-height: 1.2;
}

.footer-contact-item a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.15s ease;
}

.footer-contact-item a:hover {
  color: var(--accent-emerald);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-container { grid-template-columns: 1fr; }
  .provider-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .jurisdictions-grid { grid-template-columns: 1fr !important; }
  .crypto-specs-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================
   NEW: GEO Privacy Jurisdictions & Technical Matrices
   ========================================================== */
.jurisdictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.jurisdiction-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.jurisdiction-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-emerald);
  box-shadow: 0 12px 24px -10px rgba(16, 185, 129, 0.15);
}

.jurisdiction-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.jurisdiction-flag-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jurisdiction-flag {
  font-size: 1.8rem;
  line-height: 1;
}

.jurisdiction-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.jurisdiction-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.jurisdiction-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.jurisdiction-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  margin-top: auto;
}

.jurisdiction-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jurisdiction-meta-label {
  color: var(--text-dim);
}

.jurisdiction-meta-val {
  color: #FFFFFF;
  font-weight: 600;
}

/* Crypto Capabilities Matrix */
.crypto-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.crypto-spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.crypto-spec-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.crypto-spec-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.crypto-spec-header img {
  width: 36px;
  height: 36px;
}

.crypto-spec-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.crypto-spec-ticker {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Keywords Taxonomy Cloud */
.keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.keyword-pill:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  transform: translateY(-2px);
}

.keyword-pill .tag-icon {
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

