/* ============ GConfig — Thème Noir / Gris / Violet ============ */
:root {
  --bg: #0a0a0f;
  --bg-2: #101018;
  --bg-3: #16161f;
  --surface: #1a1a26;
  --surface-2: #21212e;
  --border: #2c2c3a;
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --violet-dark: #6d28d9;
  --violet-glow: rgba(139, 92, 246, 0.35);
  --text: #e8e8ef;
  --text-dim: #9a9aad;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 12px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 800px 400px at 50% -100px, rgba(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 600px 300px at 90% 30%, rgba(109, 40, 217, 0.06), transparent);
  background-attachment: fixed;
}

main { flex: 1; width: 100%; max-width: 1200px; margin: 0 auto; padding: 32px 20px 64px; }

a { color: var(--violet-2); text-decoration: none; }
a:hover { color: #c4b5fd; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }

.page-title { font-size: 2.2rem; margin-bottom: 8px; }
.page-title .accent, .accent { color: var(--violet-2); }
.page-subtitle { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }

/* ============ Bannière promo ============ */
.promo-banner {
  display: block;
  background: linear-gradient(90deg, rgba(139,92,246,0.15), rgba(109,40,217,0.25), rgba(139,92,246,0.15));
  border: 1px dashed var(--violet);
  border-left: none; border-right: none;
  text-align: center;
  padding: 22px 16px;
  color: var(--violet-2);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.promo-banner:hover { background: linear-gradient(90deg, rgba(139,92,246,0.28), rgba(109,40,217,0.4), rgba(139,92,246,0.28)); color: #fff; }
.promo-banner small { display: block; font-weight: 400; color: var(--text-dim); margin-top: 4px; font-size: 0.8rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.logo:hover { color: var(--text); }
.logo img, .logo svg { height: 38px; width: 38px; }
.logo .logo-accent { color: var(--violet-2); }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.main-nav > a, .nav-drop > button {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a:hover, .nav-drop > button:hover,
.main-nav > a.active, .nav-drop.open > button {
  color: var(--text);
  background: var(--surface);
}
.nav-drop { position: relative; }
.nav-drop .caret { font-size: 0.65rem; transition: transform 0.2s; }
.nav-drop.open .caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.08);
  animation: dropIn 0.18s ease;
}
.nav-drop.open .nav-drop-menu { display: flex; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-drop-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-drop-menu a:hover { background: var(--surface-2); color: var(--text); }
.nav-drop-menu a .game-ico { font-size: 1.1rem; }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  box-shadow: 0 4px 18px var(--violet-glow);
}
.btn-primary:hover { filter: brightness(1.15); box-shadow: 0 6px 24px var(--violet-glow); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet-2); }
.btn-danger { background: rgba(239,68,68,0.12); color: var(--danger); border-color: rgba(239,68,68,0.35); }
.btn-danger:hover { background: rgba(239,68,68,0.22); }
.btn-sm { padding: 6px 12px; font-size: 0.82rem; border-radius: 8px; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Menu burger mobile */
.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* ============ Hero ============ */
.hero { text-align: center; padding: 72px 16px 56px; }
.hero h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 18px; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { color: var(--text-dim); font-size: 1.15rem; max-width: 620px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Cartes ============ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: 0 8px 30px rgba(139,92,246,0.15); }
.card .card-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.55; }

/* Cartes d'offres */
.offer-card { position: relative; }
.offer-card.popular { border-color: var(--violet); box-shadow: 0 0 24px rgba(139,92,246,0.18); }
.offer-badge {
  position: absolute; top: -12px; right: 18px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.04em;
}
.offer-card ul { list-style: none; margin: 14px 0 18px; flex: 1; }
.offer-card ul li { color: var(--text-dim); font-size: 0.9rem; padding: 6px 0 6px 24px; position: relative; }
.offer-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--violet-2); font-weight: 700; }
.offer-price { font-size: 2.1rem; font-weight: 800; margin: 6px 0; }
.offer-price small { font-size: 0.85rem; color: var(--text-dim); font-weight: 400; }
.offer-support { color: var(--text-dim); font-size: 0.83rem; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }

/* ============ Sélecteur de jeu (menu défilant) ============ */
.game-select-wrap { max-width: 520px; margin: 0 auto 40px; }
.game-select-label { display: block; margin-bottom: 10px; color: var(--text-dim); font-size: 0.95rem; }
.game-select {
  width: 100%;
  padding: 15px 18px;
  font-family: var(--font);
  font-size: 1.05rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.game-select:hover, .game-select:focus { border-color: var(--violet); outline: none; box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }

.coming-soon {
  text-align: center;
  padding: 70px 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.coming-soon .big { font-size: 3rem; margin-bottom: 14px; }

/* ============ Section titres ============ */
.section-title { font-size: 1.5rem; margin: 48px 0 20px; display: flex; align-items: center; gap: 10px; }
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ============ Formulaires ============ */
.auth-box {
  max-width: 440px;
  margin: 40px auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.auth-box h1 { font-size: 1.7rem; margin-bottom: 6px; text-align: center; }
.auth-box .sub { color: var(--text-dim); text-align: center; margin-bottom: 28px; font-size: 0.93rem; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; color: var(--text-dim); margin-bottom: 7px; font-weight: 600; }
.form-control {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font);
  font-size: 0.98rem;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { border-color: var(--violet); outline: none; box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
textarea.form-control { resize: vertical; min-height: 90px; }

.form-msg { padding: 11px 14px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 16px; display: none; }
.form-msg.error { display: block; background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.form-msg.success { display: block; background: rgba(34,197,94,0.12); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }

.auth-switch { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-dim); }

/* ============ Dashboard ============ */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-bottom: 36px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.stat-card .stat-label { color: var(--text-dim); font-size: 0.83rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.stat-card .stat-value { font-size: 1.7rem; font-weight: 800; color: var(--violet-2); }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 28px;
}
.panel h2 { font-size: 1.25rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }

/* Tables */
.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  text-align: left; padding: 11px 14px;
  color: var(--text-dim); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid rgba(44,44,58,0.5); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(139,92,246,0.04); }

.badge { display: inline-block; padding: 3px 11px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-violet { background: rgba(139,92,246,0.15); color: var(--violet-2); }
.badge-green { background: rgba(34,197,94,0.15); color: #86efac; }
.badge-red { background: rgba(239,68,68,0.15); color: #fca5a5; }
.badge-gray { background: rgba(154,154,173,0.15); color: var(--text-dim); }
.badge-orange { background: rgba(245,158,11,0.15); color: #fcd34d; }

/* Étoiles avis */
.stars { color: var(--warning); letter-spacing: 2px; }
.star-input { display: flex; gap: 6px; font-size: 1.6rem; cursor: pointer; user-select: none; }
.star-input span { color: #3a3a4a; transition: color 0.15s, transform 0.15s; }
.star-input span.on { color: var(--warning); }
.star-input span:hover { transform: scale(1.15); }

/* Onglets admin */
.tabs { display: flex; gap: 6px; margin-bottom: 26px; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 0; }
.tab-btn {
  background: none; border: none; font-family: var(--font);
  color: var(--text-dim); font-size: 0.95rem; font-weight: 600;
  padding: 12px 18px; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--violet-2); border-bottom-color: var(--violet); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ Modal ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,10,0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal h3 { font-size: 1.3rem; margin-bottom: 16px; }
.modal-close { float: right; background: none; border: none; color: var(--text-dim); font-size: 1.4rem; cursor: pointer; }
.modal-close:hover { color: var(--text); }

/* ============ FAQ ============ */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  font-family: var(--font); color: var(--text); font-size: 1.02rem; font-weight: 600;
  padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .caret { color: var(--violet-2); transition: transform 0.2s; }
.faq-item.open .faq-q .caret { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--text-dim); line-height: 1.6; font-size: 0.94rem; }
.faq-item.open .faq-a { display: block; }

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 20px 24px;
  display: flex; flex-wrap: wrap; gap: 48px;
  justify-content: space-between;
}
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-dim); font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--violet-2); }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; margin-top: 12px; }

.payment-methods { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-methods img { height: 34px; width: 52px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--border); padding: 4px; object-fit: contain; transition: border-color 0.2s, transform 0.2s; }
.payment-methods img:hover { border-color: var(--violet); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 18px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ============ Contenu légal ============ */
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--violet-2); }
.legal-content p, .legal-content li { color: var(--text-dim); line-height: 1.7; font-size: 0.95rem; }
.legal-content ul { margin: 10px 0 10px 24px; }

/* ============ Application ============ */
.app-dev {
  text-align: center;
  padding: 100px 20px;
}
.app-dev h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, var(--violet-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.app-dev .pulse-dot {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--violet); margin-right: 10px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 var(--violet-glow); } 50% { box-shadow: 0 0 0 14px transparent; } }

/* ============ Livechat ============ */
.chat-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border: none; color: #fff; font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 6px 24px var(--violet-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-bubble:hover { transform: scale(1.08); box-shadow: 0 8px 30px var(--violet-glow); }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--danger); color: #fff;
  min-width: 22px; height: 22px; border-radius: 11px;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; border: 2px solid var(--bg);
}
.chat-panel {
  position: fixed; bottom: 96px; right: 24px; z-index: 150;
  width: 350px; max-width: calc(100vw - 40px); height: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: none; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  animation: modalIn 0.22s ease;
}
.chat-panel.open { display: flex; }
.chat-head {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-head small { opacity: 0.85; }
.chat-head .modal-close { color: #fff; }
.chat-msgs {
  flex: 1; overflow-y: auto; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-2);
}
.chat-msg {
  max-width: 82%; padding: 9px 13px; border-radius: 14px;
  font-size: 0.9rem; line-height: 1.45; word-wrap: break-word;
}
.chat-msg.me {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff; border-bottom-right-radius: 4px;
}
.chat-msg.them {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-time { display: block; font-size: 0.68rem; opacity: 0.65; margin-top: 3px; text-align: right; }
.chat-input-row {
  display: flex; gap: 8px; padding: 10px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.chat-input-row .form-control { flex: 1; }

/* Livechat côté admin */
.chat-admin {
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; height: 540px; background: var(--bg-2);
}
.chat-conv-list { border-right: 1px solid var(--border); overflow-y: auto; }
.chat-conv {
  padding: 14px 16px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.chat-conv:hover { background: rgba(139,92,246,0.06); }
.chat-conv.active { background: rgba(139,92,246,0.14); border-left: 3px solid var(--violet); }
.chat-conv .conv-email { font-weight: 600; font-size: 0.9rem; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.chat-conv .conv-last { color: var(--text-dim); font-size: 0.8rem; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-thread { display: flex; flex-direction: column; min-width: 0; }
@media (max-width: 900px) {
  .chat-admin { grid-template-columns: 1fr; height: auto; }
  .chat-conv-list { max-height: 200px; border-right: none; border-bottom: 1px solid var(--border); }
  .chat-thread .chat-msgs { height: 300px; }
}

/* ============ Utilitaires ============ */
.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mb-2 { margin-bottom: 16px; }
.flex { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hidden { display: none !important; }

.empty-state { text-align: center; color: var(--text-dim); padding: 36px 16px; font-size: 0.94rem; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .burger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .nav-drop-menu { position: static; box-shadow: none; border: none; background: var(--bg-3); margin-top: 4px; }
  .hero h1 { font-size: 2.1rem; }
  .app-dev h1 { font-size: 2.2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .header-actions .btn span.btn-txt { display: none; }
}
