/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  overflow: hidden;
  font-family: system-ui, Arial, sans-serif;
  background: #0d1117;
  color: #e5e7eb;
}

/* ===== HEADER FIXE ===== */
.tcm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 10px 16px;
  background: #1a1f29;
  border-bottom: 2px solid #0f172a;
  z-index: 1000;
}

.tcm-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.tcm-title {
  text-align: center;
  color: #d4af37; /* doré */
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Ombre claire */
  text-shadow: 3px 3px 2px rgba(192,192,192,0.35);
}

/* ===== Icône Login ===== */
.tcm-loginBtn {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcm-loginBtn:hover {
  background: rgba(212,175,55,0.12);
}
.tcm-loginBtn svg {
  width: 36px;
  height: 36px;
}

/* ===== CONTENU QUI SCROLLE ===== */
.tcm-scroll {
  position: absolute;
  top: 130px;
  bottom: 70px;
  left: 0;
  right: 0;

  overflow-y: auto;
  padding: 18px;
}

.tcm-blabla {
  background: #1e2530;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  line-height: 1.6;
}

/* ===== FOOTER FIXE ===== */
.tcm-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
	color: #d4af37;
  background: #1a1f29;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.15);

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;

  font-size: 0.95rem;
  z-index: 1000;
}

.span_click { cursor: pointer; color: blue; background: none; border-radius: 6px; padding: 3px; }
.span_click:hover {background: yellow}