
.dftg-root { width: 100%; }
.dftg {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, sans-serif;
  border: 4px solid #333;
  touch-action: none;
  user-select: none;
  box-sizing: border-box;
  border-radius: 12px;
}

.dftg__hidden { display: none !important; }
.dftg__overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  box-sizing: border-box;
  gap: 10px;
}
/* Some themes force img { width:100% } – override for the game logo */
.dftg__logo {
  max-width: 140px !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 4px;
  display: block;
}
.dftg__title { color: #d32f2f; margin: 0; font-size: 24px; font-weight: 900; letter-spacing: 0.5px; }

.dftg__panel {
  width: 100%;
  max-width: 420px;
  background: #f8f9fa;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  box-sizing: border-box;
}
.dftg__meta { font-size: 13px; color: #444; margin: 0 0 12px; }
.dftg__input {
  width: 100%;
  padding: 12px;
  margin: 0 0 10px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}
.dftg__privacy {
  font-size: 10px;
  color: #777;
  text-align: left;
  line-height: 1.4;
  padding: 10px;
  background: #fff;
  border-left: 4px solid #0044bb;
  border-radius: 10px;
  margin-top: 2px;
}
.dftg__privacy a { color: #d32f2f; font-weight: 800; text-decoration: none; }

.dftg__startbtn {
  width: 100%;
  padding: 16px;
  background: #0044bb;
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 5px 0 #002d7a;
  -webkit-tap-highlight-color: transparent;
  margin-top: 12px;
}
.dftg__startbtn:active { transform: translateY(1px); box-shadow: 0 4px 0 #002d7a; }
.dftg__startbtn--secondary { background:#333; box-shadow: 0 5px 0 #111; margin-top: 10px; }

.dftg__leaderboard { margin-top: 10px; font-size: 12px; color: #666; width: 100%; max-width: 420px; }

.dftg__game { position:absolute; inset:0; width: 100%; height: 100%; }
.dftg__canvas { position:absolute; inset:0; width: 100%; height: 100%; }

.dftg__topbar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 5000;
  pointer-events: none;
  align-items: center;
  box-sizing: border-box;
}
.dftg__hudtext { font-size: 18px; }
.dftg__timer { font-weight: 900; background: #d32f2f; padding: 5px 15px; border-radius: 8px; font-size: 20px; }

.dftg__controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  box-sizing: border-box;
  z-index: 5000;
}
.dftg__ctrlgroup { display:flex; gap:10px; }
.dftg__ctrl {
  width: 65px; height: 65px;
  font-size: 28px;
  border-radius: 12px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: 1px solid #777;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.dftg__ctrl--stop { background:#a40000; }
.dftg__ctrl--go { background:#007a2d; }

.dftg__doorbtn {
  width: 85px; height: 85px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  border: 4px solid #0044bb;
  font-weight: 900;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
}

.dftg__note {
  font-size: 11px;
  color: #666;
  max-width: 420px;
}

@media (max-width: 480px) {
  .dftg { border-radius: 10px; }
  .dftg__hudtext { font-size: 15px; }
  .dftg__ctrl { width: 58px; height: 58px; font-size: 26px; }
  .dftg__doorbtn { width: 78px; height: 78px; }
}
