/* Reset defaults */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  box-sizing: border-box;
}


/* Shared Header + Layout Sections */
.app-header {
  text-align: left;
  margin: 1rem 0;
}

.header-title {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  color: #ff7a00;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.header-title:hover { opacity: 0.85; }


/* Intro */
.intro {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  text-align: left;
}

.intro strong {
  color: #ff7a00;
  font-weight: normal;
}

/* Divider */
.divider {
  height: 0.5px;
  background: #111;
  margin: 0.5rem 0 1.5rem;
  border: none;
}

/* Main wrapper */
.main-content {
  margin: 1.5rem 0;
}


/* Floating Game ID icon */
.floating-game-id {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
  z-index: 1000;
}

.floating-game-id:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.floating-game-id:focus-visible {
  outline: 2px solid #ff7a00;
  outline-offset: 4px;
}

.floating-game-id::after {
  content: '';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-game-id.copied::after {
  content: 'Copied';
  opacity: 1;
  transform: translate(-50%, -0.4rem);
}

.floating-game-id__icon {
  width: 1.2rem;
  height: auto;
}

.floating-game-id__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}

body.gameplan .floating-game-id,
body.game-finder .floating-game-id,
body.landing .floating-game-id,
body.login .floating-game-id,
body.clubhouse .floating-game-id {
  display: none !important;
}

.floating-game-id.copied {
  transform: scale(0.92);
  opacity: 0.9;
}
