﻿/* ============================================
   OFTECO v2 — Neon Dark Theme
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1200;
  --bg-card: #1e1e1e;
  --bg-card-border: #2a2a2a;
  --bg-navbar: #111111;
  --bg-frogy: #000000;

  --neon-primary: #c8ff00;
  --neon-cyan: #00ffcc;
  --neon-orange: #ff6b35;
  --neon-blue: #00bfff;

  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-card: 14px;
  --radius-btn: 8px;
  --transition: all 0.3s ease;

  /* Heights for stacked fixed bars */
  --frogy-height: 80px;
  --navbar-height: 52px;
  --header-total: 132px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  padding-top: var(--header-total);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   FROGY HEADER BAR
   ============================================ */
.frogy-header {
  background-color: var(--bg-frogy);
  padding: 0 24px;
  width: 100%;
  height: var(--frogy-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.frogy-header .frogy-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.frogy-header .frogy-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.frogy-header .frogy-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.frogy-header .frogy-text {
  font-size: 13px;
  font-weight: 500;
  color: #cccccc;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frogy-header .frogy-text .highlight {
  color: var(--neon-cyan);
  font-weight: 700;
}

.frogy-header .frogy-cta {
  background: linear-gradient(135deg, var(--neon-primary) 0%, #a8d400 100%);
  color: #000000;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(200, 255, 0, 0.35);
  display: inline-block;
}

.frogy-header .frogy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 255, 0, 0.5);
}

/* ============================================
   STICKY NAVBAR
   ============================================ */
.nav-ofteco {
  background-color: var(--bg-navbar);
  border-bottom: 1px solid #2a2a2a;
  position: fixed;
  top: var(--frogy-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
}

.nav-ofteco .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-ofteco .nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--neon-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.5);
}

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

.nav-ofteco .nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-ofteco .nav-links a:hover,
.nav-ofteco .nav-links a.active {
  color: var(--neon-primary);
  background: rgba(200, 255, 0, 0.08);
}

.nav-ofteco .nav-lang {
  background: #222;
  border: 1px solid #333;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-ofteco .nav-lang:hover {
  border-color: var(--neon-primary);
  color: var(--neon-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.3);
  color: var(--neon-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-label .dot {
  width: 7px;
  height: 7px;
  background: var(--neon-primary);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--neon-primary);
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .neon-text {
  color: var(--neon-primary);
  text-shadow: 0 0 20px rgba(200, 255, 0, 0.4), 0 0 40px rgba(200, 255, 0, 0.2);
  animation: neonPulse 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   NEON ANIMATIONS
   ============================================ */
@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(200, 255, 0, 0.4), 0 0 20px rgba(200, 255, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(200, 255, 0, 0.8), 0 0 40px rgba(200, 255, 0, 0.4), 0 0 60px rgba(200, 255, 0, 0.2);
  }
}

@keyframes neonPulseCyan {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4), 0 0 20px rgba(0, 255, 204, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 40px rgba(0, 255, 204, 0.4);
  }
}

@keyframes cardGlowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(200, 255, 0, 0.2), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 30px rgba(200, 255, 0, 0.4), 0 4px 30px rgba(0,0,0,0.5); }
}

@keyframes depinGlowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 204, 0.2), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 204, 0.5), 0 4px 30px rgba(0,0,0,0.5); }
}

@keyframes faucetGlowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 180, 0, 0.2), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 180, 0, 0.5), 0 4px 30px rgba(0,0,0,0.5); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-primary) 0%, #a8d400 100%);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200, 255, 0, 0.3);
  white-space: nowrap;
}

.btn-neon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 255, 0, 0.5);
  background: linear-gradient(135deg, #d4ff1a 0%, var(--neon-primary) 100%);
}

.btn-neon-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--neon-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--neon-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-neon-outline:hover {
  background: rgba(200, 255, 0, 0.1);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.3);
  transform: translateY(-2px);
}

.btn-neon-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #00ccaa 100%);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 255, 204, 0.3);
}

.btn-neon-cyan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.5);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title .accent {
  color: var(--neon-primary);
}

.section-title .accent-cyan {
  color: var(--neon-cyan);
}

.section-desc {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.neon-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-card);
  padding: 28px 24px 24px;
  position: relative;
  transition: var(--transition);
  overflow: visible;
}

.neon-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-primary);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.2), 0 12px 40px rgba(0,0,0,0.5);
}

.neon-card.card-recommended {
  border-color: rgba(200, 255, 0, 0.3);
  animation: cardGlowPulse 3s ease-in-out infinite;
}

.neon-card.card-new {
  border-color: rgba(0, 191, 255, 0.3);
}

.neon-card.card-depin {
  border-color: rgba(0, 255, 204, 0.4);
  animation: depinGlowPulse 3s ease-in-out infinite;
}

.neon-card.card-faucet {
  border-color: rgba(255, 180, 0, 0.35);
  animation: faucetGlowPulse 3s ease-in-out infinite;
}

/* Rank number */
.card-rank {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Badge */
.card-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 10;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-new {
  background: linear-gradient(135deg, #00bfff, #0080ff);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 191, 255, 0.5);
}

.badge-recommended {
  background: linear-gradient(135deg, var(--neon-primary), #a8d400);
  color: #000;
  box-shadow: 0 4px 14px rgba(200, 255, 0, 0.4);
}

.badge-depin {
  background: linear-gradient(135deg, var(--neon-cyan), #00aaaa);
  color: #000;
  box-shadow: 0 4px 14px rgba(0, 255, 204, 0.5);
}

.badge-faucet {
  background: linear-gradient(135deg, #ffb400, #ff8c00);
  color: #000;
  box-shadow: 0 4px 14px rgba(255, 180, 0, 0.5);
}

.badge-top {
  background: linear-gradient(135deg, var(--neon-orange), #cc4400);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.5);
}

/* Card logo */
.card-logo {
  display: flex;
  justify-content: center;
  margin: 20px 0 16px;
}

.card-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
}

/* Card title */
.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

/* Bonus pill */
.bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  color: var(--neon-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: flex;
  width: fit-content;
}

/* Card features */
.card-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-features li .check-icon {
  color: var(--neon-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.card-features li .check-icon-cyan {
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

.card-features li .check-icon-amber {
  color: #ffb400;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Card CTA button */
.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--neon-primary) 0%, #a8d400 100%);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(200, 255, 0, 0.25);
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 255, 0, 0.45);
}

.card-cta-cyan {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #00aaaa 100%);
  box-shadow: 0 4px 14px rgba(0, 255, 204, 0.25);
}

.card-cta-cyan:hover {
  box-shadow: 0 8px 22px rgba(0, 255, 204, 0.45);
}

.card-cta-amber {
  background: linear-gradient(135deg, #ffb400 0%, #ff8c00 100%);
  box-shadow: 0 4px 14px rgba(255, 180, 0, 0.25);
}

.card-cta-amber:hover {
  box-shadow: 0 8px 22px rgba(255, 180, 0, 0.45);
}

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
  background: linear-gradient(135deg, #111100 0%, #0a0a0a 100%);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 40px 24px;
  text-align: center;
}

.banner-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: 8px;
  animation: neonPulseCyan 3s ease-in-out infinite;
}

.banner-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ============================================
   DARK TABLE
   ============================================ */
.dark-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  margin: 0 auto;
  max-width: 1100px;
}

.dark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dark-table thead tr {
  background: #1a1a1a;
  border-bottom: 2px solid var(--neon-primary);
}

.dark-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-primary);
}

.dark-table tbody tr {
  border-bottom: 1px solid #222;
  transition: background 0.2s ease;
}

.dark-table tbody tr:last-child {
  border-bottom: none;
}

.dark-table tbody tr:hover {
  background: rgba(200, 255, 0, 0.04);
}

.dark-table tbody td {
  padding: 14px 20px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.dark-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 700;
}

.dark-table .tps-value {
  color: var(--neon-primary);
  font-weight: 800;
  font-size: 15px;
}

.dark-table .tps-value-cyan {
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 15px;
}

.dark-table .crypto-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50%;
}

.dark-table .feature-tag {
  display: inline-block;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  color: var(--neon-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin: 2px 3px 2px 0;
}

.dark-table .feature-tag-cyan {
  background: rgba(0, 255, 204, 0.08);
  border-color: rgba(0, 255, 204, 0.2);
  color: var(--neon-cyan);
}

.dark-table .feature-tag-orange {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--neon-orange);
}

/* ============================================
   CONTENT SECTIONS (Mining, Security)
   ============================================ */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 44px 48px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
  border-color: rgba(200, 255, 0, 0.2);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.04), 0 8px 40px rgba(0,0,0,0.4);
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-primary), var(--neon-cyan), transparent);
}

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.content-block > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* 2-col image+text layout inside content-block */
.block-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}

.block-split img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px 0;
}

.step-item {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.step-item:hover {
  border-color: rgba(200, 255, 0, 0.25);
}

.step-number {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--neon-primary), #a8d400);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.features-list li:hover {
  background: rgba(200, 255, 0, 0.04);
  border-color: rgba(200, 255, 0, 0.1);
}

.features-list li .feat-icon {
  color: var(--neon-primary);
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #222;
  border: 1px solid #333;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 10px;
}

.copy-btn:hover {
  border-color: var(--neon-primary);
  color: var(--neon-primary);
}

.code-block {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--neon-cyan);
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
}

.code-block span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Invitation code */
.invite-code-box {
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.05), rgba(0, 255, 204, 0.05));
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
}

.invite-code-box .code-text {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--neon-primary);
  letter-spacing: 2px;
}

/* Threat/feature cards */
.mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.mini-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}

.mini-card .mini-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.mini-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.mini-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0a0a !important;
  border-top: 1px solid #1e1e1e !important;
  padding: 48px 24px 32px !important;
  margin-top: 80px !important;
  text-align: center !important;
}

.footer-inner {
  max-width: 860px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.footer-nav {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-bottom: 32px !important;
  list-style: none !important;
  width: 100% !important;
  padding: 0 !important;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--neon-primary);
}

.footer-divider {
  border: none !important;
  border-top: 1px solid #1e1e1e !important;
  margin: 0 0 24px 0 !important;
  width: 100% !important;
}

.footer-donations {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 860px !important;
  margin: 0 auto 28px auto !important;
}

.donation-item {
  text-align: left;
}

.donation-item h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-copyright {
  text-align: center !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.footer-copyright span {
  color: var(--neon-primary);
}

/* ============================================
   UTILITY / LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 72px 24px;
}

.divider-neon {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-primary), transparent);
  margin: 60px auto;
  max-width: 600px;
  opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-donations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --frogy-height: 110px;
    --navbar-height: 48px;
    --header-total: 158px;
  }

  body {
    padding-top: var(--header-total);
  }

  .frogy-header .frogy-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .frogy-header .frogy-left {
    flex: 1 1 100%;
    gap: 10px;
  }

  .frogy-header .frogy-logo {
    width: 90px;
  }

  .frogy-header .frogy-text {
    font-size: 12px;
    white-space: normal;
  }

  .frogy-header .frogy-cta {
    flex: 1 1 100%;
    text-align: center;
    padding: 8px 16px;
  }

  .nav-ofteco {
    top: var(--frogy-height);
    padding: 0 16px;
  }

  .nav-ofteco .nav-links {
    display: none;
  }

  .nav-ofteco .nav-inner {
    justify-content: space-between;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .content-block {
    padding: 28px 20px;
  }

  .block-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .mini-cards-grid {
    grid-template-columns: 1fr;
  }

  .dark-table thead th,
  .dark-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .banner-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-ofteco .nav-logo {
    font-size: 18px;
  }
}
