/* ═══════════════════════════════════════════════════════════
   BELLOVA WEB3 — Feuille de style spécifique
   Palette : Dark #050510 | Purple #8b5cf6 | Cyan #06b6d4
   Esthétique : décentralisé, blockchain, futuriste
═══════════════════════════════════════════════════════════ */

/* ─── Variables Web3 ─── */
:root {
  --w3-dark:      #050510;
  --w3-surface:   #0d0d2b;
  --w3-card:      #0f0f2e;
  --w3-border:    rgba(139, 92, 246, .18);
  --w3-border-c:  rgba(6, 182, 212, .15);

  --purple:       #8b5cf6;
  --purple-dark:  #7c3aed;
  --purple-light: #a78bfa;
  --electric:     #3b82f6;
  --electric-dk:  #2563eb;
  --cyan:         #06b6d4;
  --cyan-dark:    #0891b2;
  --cyan-light:   #22d3ee;
  --green-w3:     #10b981;
  --pink-w3:      #ec4899;

  --w3-text:      rgba(255, 255, 255, .9);
  --w3-muted:     rgba(255, 255, 255, .5);
  --w3-dim:       rgba(255, 255, 255, .28);

  --w3-glow-p:    0 0 40px rgba(139, 92, 246, .35);
  --w3-glow-c:    0 0 40px rgba(6, 182, 212, .3);
  --w3-shadow:    0 8px 32px rgba(0, 0, 0, .6);
}

/* ─── Reset corps Web3 ─── */
.w3-body {
  background: var(--w3-dark);
  color: var(--w3-text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Grille hex en arrière-plan ─── */
.w3-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(139, 92, 246, .12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(6, 182, 212, .1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59, 130, 246, .06) 0%, transparent 60%);
}

.w3-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 246, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ─── Floating orbs ─── */
.w3-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .4;
  animation: w3-float 8s ease-in-out infinite;
}
.w3-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, .6), transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.w3-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, .5), transparent 70%);
  bottom: 100px; right: -80px;
  animation-delay: -3s;
}
.w3-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, .4), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

@keyframes w3-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ─── Wrapper contenu ─── */
.w3-wrapper {
  position: relative;
  z-index: 1;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.w3-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 5, 16, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--w3-border);
  transition: box-shadow .25s ease;
}
.w3-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
  border-bottom-color: rgba(139, 92, 246, .25);
}
.w3-nav .nav-container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.w3-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.w3-logo-bellova { color: var(--white, #fff); }
.w3-logo-w3      { color: rgba(255,255,255,.6); }

.w3-nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0; padding: 0;
}
.w3-nav-link {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s ease;
}
.w3-nav-link:hover {
  background: rgba(139, 92, 246, .12);
  color: var(--purple-light);
}
.w3-nav-corp {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  padding: .4rem .8rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s ease;
}
.w3-nav-corp:hover {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
}

/* ─── Badge "Bientôt" dans nav ─── */
.w3-badge-nav {
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .55rem;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 999px;
  color: white;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: .25rem;
  vertical-align: middle;
}

/* ═══════════════════ HERO ═══════════════════ */
.w3-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
  position: relative;
}

/* Chaîne animée en arrière-plan */
.w3-chain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.w3-chain-node {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  opacity: 0;
  animation: w3-pulse-node 3s ease-in-out infinite;
}
.w3-chain-node:nth-child(1)  { top: 15%; left: 10%;  animation-delay: 0s;    background: var(--purple-light); }
.w3-chain-node:nth-child(2)  { top: 25%; left: 30%;  animation-delay: .4s;   background: var(--cyan-light); }
.w3-chain-node:nth-child(3)  { top: 20%; right: 25%; animation-delay: .8s;   background: var(--purple-light); }
.w3-chain-node:nth-child(4)  { top: 10%; right: 15%; animation-delay: 1.2s;  background: var(--electric); }
.w3-chain-node:nth-child(5)  { bottom: 20%; left: 15%;  animation-delay: .6s;   background: var(--cyan-light); }
.w3-chain-node:nth-child(6)  { bottom: 30%; right: 20%; animation-delay: 1.6s;  background: var(--purple-light); }
.w3-chain-node:nth-child(7)  { top: 60%; left: 5%;   animation-delay: 2s;    background: var(--green-w3); }
.w3-chain-node:nth-child(8)  { top: 70%; right: 8%;  animation-delay: 1s;    background: var(--cyan-light); }

@keyframes w3-pulse-node {
  0%, 100% { opacity: 0; transform: scale(.5); }
  50%       { opacity: .8; transform: scale(1.4); box-shadow: 0 0 12px currentColor; }
}

.w3-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

/* ─── Badge "Coming Soon" ─── */
.w3-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: w3-glow-badge 2.5s ease-in-out infinite;
}
.w3-soon-badge .w3-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: w3-blink 1.2s ease-in-out infinite;
}
@keyframes w3-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}
@keyframes w3-glow-badge {
  0%, 100% { box-shadow: 0 0 0px rgba(139, 92, 246, 0); }
  50%       { box-shadow: 0 0 20px rgba(139, 92, 246, .3); }
}

/* ─── Titre hero ─── */
.w3-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 0 1.5rem;
  color: var(--w3-text);
}
.w3-hero-title .w3-gradient {
  background: linear-gradient(90deg, var(--purple-light), var(--cyan-light), var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: w3-text-shimmer 4s linear infinite;
}
@keyframes w3-text-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.w3-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--w3-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ─── Bouton notify ─── */
.w3-notify-form {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.w3-notify-input {
  padding: .8rem 1.2rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: 12px;
  color: var(--w3-text);
  font-size: .95rem;
  font-family: var(--font, 'Inter', sans-serif);
  width: 280px;
  outline: none;
  transition: all .2s ease;
}
.w3-notify-input::placeholder { color: var(--w3-dim); }
.w3-notify-input:focus {
  border-color: var(--purple);
  background: rgba(139, 92, 246, .08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}
.w3-btn-notify {
  padding: .8rem 1.6rem;
  background: linear-gradient(135deg, var(--purple), var(--electric));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font, 'Inter', sans-serif);
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, .4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.w3-btn-notify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, .55);
}
.w3-notify-success {
  display: none;
  color: var(--green-w3);
  font-size: .9rem;
  font-weight: 500;
  margin-top: .5rem;
}

/* ─── Stats hero ─── */
.w3-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.w3-stat {
  text-align: center;
}
.w3-stat-val {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w3-stat-lbl {
  font-size: .78rem;
  color: var(--w3-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ─── Scroll indicator ─── */
.w3-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--w3-dim);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  animation: w3-bounce 2s ease-in-out infinite;
}
.w3-scroll-hint i { font-size: 1rem; }
@keyframes w3-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════ SECTIONS ═══════════════════ */
.w3-section {
  padding: 6rem 1.5rem;
}
.w3-container {
  max-width: 1200px;
  margin: 0 auto;
}
.w3-section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}
.w3-section-tag.cyan {
  color: var(--cyan-light);
  background: rgba(6, 182, 212, .1);
  border-color: rgba(6, 182, 212, .25);
}
.w3-section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  color: var(--w3-text);
}
.w3-section-desc {
  font-size: 1.05rem;
  color: var(--w3-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ─── Séparateur ─── */
.w3-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--w3-border), transparent);
  margin: 0;
}

/* ═══════════════════ SERVICES CARDS ═══════════════════ */
.w3-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.w3-card {
  background: var(--w3-card);
  border: 1px solid var(--w3-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.w3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity .3s ease;
}
.w3-card:hover {
  border-color: rgba(139, 92, 246, .4);
  transform: translateY(-4px);
  box-shadow: var(--w3-glow-p);
}
.w3-card:hover::before { opacity: 1; }

.w3-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.w3-card-icon.purple {
  background: rgba(139, 92, 246, .15);
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, .25);
}
.w3-card-icon.cyan {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan-light);
  border: 1px solid rgba(6, 182, 212, .2);
}
.w3-card-icon.electric {
  background: rgba(59, 130, 246, .12);
  color: var(--electric);
  border: 1px solid rgba(59, 130, 246, .2);
}
.w3-card-icon.green {
  background: rgba(16, 185, 129, .12);
  color: var(--green-w3);
  border: 1px solid rgba(16, 185, 129, .2);
}

.w3-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--w3-text);
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
}
.w3-card-text {
  font-size: .9rem;
  color: var(--w3-muted);
  line-height: 1.65;
}
.w3-card-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, .12);
  color: var(--purple-light);
  border: 1px solid rgba(139, 92, 246, .2);
}
.w3-card-tag.soon {
  background: rgba(251, 191, 36, .1);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, .2);
}

/* ═══════════════════ TECH STACK ═══════════════════ */
.w3-stack-section {
  background: rgba(13, 13, 43, .6);
  border-top: 1px solid var(--w3-border);
  border-bottom: 1px solid var(--w3-border);
}
.w3-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.w3-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--w3-border);
  border-radius: 16px;
  text-align: center;
  transition: all .25s ease;
  cursor: default;
}
.w3-tech-item:hover {
  background: rgba(139, 92, 246, .07);
  border-color: rgba(139, 92, 246, .3);
  transform: translateY(-3px);
}
.w3-tech-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}
.w3-tech-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--w3-text);
}
.w3-tech-desc {
  font-size: .75rem;
  color: var(--w3-muted);
  line-height: 1.5;
}

/* Couleurs tech */
.w3-tech-nodejs  { background: rgba(104, 160, 65, .15);  color: #68a041; border: 1px solid rgba(104, 160, 65, .25); }
.w3-tech-redis   { background: rgba(220, 58, 29, .12);   color: #dc3a1d; border: 1px solid rgba(220, 58, 29, .2); }
.w3-tech-mongo   { background: rgba(0, 163, 108, .12);   color: #00a36c; border: 1px solid rgba(0, 163, 108, .2); }
.w3-tech-mariadb { background: rgba(199, 132, 39, .12);  color: #c78427; border: 1px solid rgba(199, 132, 39, .2); }

/* ═══════════════════ BLOCKCHAIN VISUAL ═══════════════════ */
.w3-blockchain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 3rem 0;
  row-gap: 1rem;
}
.w3-block {
  display: flex;
  align-items: center;
}
.w3-block-box {
  padding: .6rem 1rem;
  background: var(--w3-card);
  border: 1px solid rgba(139, 92, 246, .3);
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--purple-light);
  text-align: center;
  min-width: 90px;
  position: relative;
  transition: all .25s;
}
.w3-block-box:hover {
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(139, 92, 246, .3);
}
.w3-block-box small {
  display: block;
  font-size: .62rem;
  font-weight: 400;
  color: var(--w3-dim);
  margin-top: .15rem;
}
.w3-block-link {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, .5), rgba(6, 182, 212, .5));
  position: relative;
  flex-shrink: 0;
}
.w3-block-link::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
}

/* ═══════════════════ COUNTDOWN / PROGRESS ═══════════════════ */
.w3-progress-section { text-align: center; }
.w3-progress-wrap {
  max-width: 560px;
  margin: 2.5rem auto 0;
}
.w3-progress-bar-bg {
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--w3-border);
}
.w3-progress-bar-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 999px;
  position: relative;
  animation: w3-progress-glow 2s ease-in-out infinite;
}
.w3-progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5));
  animation: w3-shimmer-bar 1.5s ease-in-out infinite;
}
@keyframes w3-shimmer-bar {
  0%   { opacity: 0; transform: translateX(-100%); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}
@keyframes w3-progress-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, .4); }
  50%       { box-shadow: 0 0 24px rgba(6, 182, 212, .5); }
}
.w3-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: .6rem;
  font-size: .75rem;
  color: var(--w3-dim);
}
.w3-progress-pct {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--purple-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.w3-footer {
  background: rgba(5, 5, 16, .9);
  border-top: 1px solid var(--w3-border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.w3-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.w3-footer-copy {
  font-size: .82rem;
  color: var(--w3-dim);
}
.w3-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.w3-footer-links a {
  font-size: .82rem;
  color: var(--w3-dim);
  text-decoration: none;
  transition: color .2s;
}
.w3-footer-links a:hover { color: var(--purple-light); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 768px) {
  .w3-nav-links { display: none; }
  .w3-hero-stats { gap: 1.75rem; }
  .w3-services-grid { grid-template-columns: 1fr; }
  .w3-services-grid .w3-card:last-child { grid-column: 1; }
  .w3-stack-grid { grid-template-columns: repeat(2, 1fr); }
  .w3-blockchain { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
  .w3-block-link { width: 2px; height: 24px; background: linear-gradient(180deg, rgba(139,92,246,.5), rgba(6,182,212,.5)); }
  .w3-block-link::after { display: none; }
  .w3-footer-inner { flex-direction: column; text-align: center; }
  .w3-footer-links { justify-content: center; }
  .w3-notify-form { flex-direction: column; align-items: center; }
  .w3-notify-input { width: 100%; max-width: 320px; }
  .w3-network-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Réseau mondial ─── */
.w3-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .65rem;
  margin-top: 1rem;
}

.w3-country-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--w3-border);
  border-radius: 10px;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}

.w3-country-item:hover {
  background: rgba(139, 92, 246, .08);
  border-color: rgba(139, 92, 246, .35);
  transform: translateY(-2px);
}

.w3-country-flag {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.w3-country-name {
  font-size: .8rem;
  color: var(--w3-text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w3-country-speed {
  font-size: .65rem;
  font-weight: 600;
  color: var(--cyan-light);
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 5px;
  padding: .15rem .35rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.w3-section-tag.electric {
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .25);
  color: #60a5fa;
}
