/* ========================================================
   OG Crypto Faucet - Classic Clean Design System
   Clean white aesthetic, high contrast, ad-friendly layout
   ======================================================== */

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --border-color: #e2e8f0;
  --border-dark: #cbd5e1;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --success: #16a34a;
  --success-hover: #15803d;
  --warning: #d97706;
  --danger: #dc2626;
  --gold: #f59e0b;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================= Top Navigation Bar ================= */
.navbar {
  background-color: var(--bg-card);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.brand-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  background-color: var(--bg-alt);
  color: var(--primary);
}

.nav-badge {
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 9999px;
  margin-left: 4px;
  font-weight: 700;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-balance-badge {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.coin-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
  object-fit: contain;
}

.coin-icon-lg {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  vertical-align: -4px;
  display: inline-block;
  object-fit: contain;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.875rem;
}

/* ================= Layout Structure ================= */
.main-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
  flex: 1;
}

/* Sponsor Ad Containers */
.ad-slot-header {
  margin: 0 auto 20px auto;
  max-width: 728px;
  height: 90px;
  background: #ffffff;
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  overflow: hidden;
}

.ad-slot-footer {
  margin: 24px auto;
  max-width: 728px;
  min-height: 90px;
  background: #ffffff;
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.ad-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-weight: 700;
}

.ad-label:hover {
  color: var(--primary);
  text-decoration: underline;
}

.ad-clickable-bar {
  display: inline-block;
  text-decoration: none;
  background: #f1f5f9;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ad-clickable-bar:hover {
  background: #dbeafe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

/* 3-Column Faucet & General Layout */
.faucet-grid, .layout-with-sidebar {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 1100px) {
  .faucet-grid, .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  .side-ad-column {
    display: none;
  }
}

.side-ad-column {
  background: transparent;
  border: none;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  width: 180px;
}

.ad-slot-mid {
  margin: 20px auto;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}

.ad-slot-inline {
  margin: 16px auto;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
}

/* ================= Cards & Modules ================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Faucet Main Box */
.faucet-box {
  text-align: center;
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}

.faucet-header h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.faucet-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.faucet-stats-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stat-pill {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.stat-pill strong {
  color: var(--primary);
}

/* Timer Display */
.timer-container {
  margin: 20px 0;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.timer-digits {
  font-size: 3rem;
  font-weight: 900;
  font-family: monospace;
  color: var(--text-main);
  letter-spacing: 2px;
}

.timer-ready {
  color: var(--success);
}

.timer-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Antibot Challenge Box */
.antibot-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 18px;
  margin: 20px 0;
  text-align: center;
}

.antibot-instruction {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.antibot-instruction span {
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 4px;
  color: #92400e;
}

.antibot-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.antibot-btn {
  background: #ffffff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
}

.antibot-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.antibot-btn.clicked {
  background: #94a3b8;
  border-color: #94a3b8;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.6;
}

.antibot-reset-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
}

/* Cloudflare Turnstile container */
.turnstile-box {
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-success {
  background-color: var(--success);
  color: #ffffff;
}

.btn-success:hover {
  background-color: var(--success-hover);
}

.btn-danger {
  background-color: var(--danger);
  color: #ffffff;
}

.btn-claim {
  font-size: 1.35rem;
  padding: 14px 40px;
  width: 100%;
  max-width: 320px;
  margin-top: 10px;
}

.btn-disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

/* Refresh reminder bar */
.refresh-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  padding: 12px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

/* ================= Tables ================= */
.table-container {
  overflow-x: auto;
  margin: 16px 0;
}

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

.table th {
  background-color: var(--bg-alt);
  color: var(--text-muted);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-color);
}

.table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}

.table tr:hover {
  background-color: #f8fafc;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Alerts */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.95rem;
  display: none;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

/* Honeypot hidden fields */
.trap-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 24px 16px;
  margin-top: auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Admin Dashboard Specific */
.admin-badge {
  background: #fee2e2;
  color: #b91c1c;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-card .val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* User Level Button in Navbar */
.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-profile-btn:hover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.user-lvl-pill {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-name-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e293b;
}

/* Profile Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: #0f172a;
}

.modal-body {
  padding: 24px;
}

.profile-level-box {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}

.profile-level-badge {
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.profile-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
}

.p-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.p-stat-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin-top: 2px;
}

/* Floating Sticky Footer Ad Bar */
.sticky-ad-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 2px solid #3b82f6;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  z-index: 99990;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sticky-ad-bar.minimized {
  transform: translateY(92%);
}

.sticky-ad-toggle {
  position: absolute;
  top: -24px;
  right: 16px;
  background: #1e293b;
  color: #ffffff;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

/* Dual-Currency Styling */
.btc-balance-badge {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}

.currency-switcher-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  margin-bottom: 20px;
}

.currency-switcher-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.currency-toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.currency-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  user-select: none;
}

.currency-toggle-btn:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}

.currency-toggle-btn.active.ltc-btn {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.currency-toggle-btn.active.btc-btn {
  border-color: #f59e0b;
  background: #fffbeb;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.currency-toggle-btn .c-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e293b;
}

.currency-toggle-btn .c-rate {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
}

.currency-toggle-btn.btc-btn .c-rate {
  color: #d97706;
}

/* Swap Button & Modal Styling */
.swap-nav-btn {
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1px solid #bfdbfe;
  color: #2563eb;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.swap-nav-btn:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  transform: translateY(-1px);
}

.swap-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
}

.swap-switch-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.swap-switch-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: scale(1.04);
}

/* ========================================================
   Anti-Adblock Enforcement Modal & Overlay
   ======================================================== */
body.adblock-active {
  overflow: hidden !important;
}

body.adblock-active .main-wrapper,
body.adblock-active .navbar,
body.adblock-active .footer,
body.adblock-active .layout-with-sidebar {
  filter: blur(8px) grayscale(50%) !important;
  pointer-events: none !important;
  user-select: none !important;
}

.adblock-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  animation: adblockFadeIn 0.3s ease-out forwards;
}

@keyframes adblockFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.adblock-modal-box {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 2px solid #ef4444 !important;
  max-width: 580px !important;
  width: 100% !important;
  box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.3), 0 0 40px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden !important;
  text-align: center !important;
}

.adblock-header {
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%) !important;
  border-bottom: 1px solid #fecaca !important;
  padding: 24px 20px 16px 20px !important;
}

.adblock-icon-glow {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 12px auto !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 32px !important;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.5) !important;
  animation: adblockPulse 2s infinite !important;
}

@keyframes adblockPulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 30px rgba(239, 68, 68, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
}

.adblock-title {
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #991b1b !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.3px !important;
}

.adblock-subtitle {
  font-size: 0.92rem !important;
  color: #7f1d1d !important;
  margin: 0 !important;
  font-weight: 600 !important;
}

.adblock-body {
  padding: 20px 24px 24px 24px !important;
  text-align: left !important;
}

.adblock-desc {
  font-size: 0.92rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin-bottom: 16px !important;
  text-align: center !important;
}

.adblock-steps-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

@media (max-width: 520px) {
  .adblock-steps-grid {
    grid-template-columns: 1fr !important;
  }
}

.adblock-step-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

.adblock-step-icon {
  font-size: 1.25rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.adblock-step-text strong {
  display: block !important;
  font-size: 0.82rem !important;
  color: #1e293b !important;
  margin-bottom: 2px !important;
}

.adblock-step-text span {
  display: block !important;
  font-size: 0.75rem !important;
  color: #64748b !important;
  line-height: 1.3 !important;
}

.adblock-btn-reload {
  width: 100% !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.adblock-btn-reload:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5) !important;
}

.adblock-btn-reload:active {
  transform: translateY(0) !important;
}



