.page_game_panier {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 50px);
}

.gp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(135deg, #094579 0%, #3EBCD6 100%);
  border-bottom: 2px solid #EC672C;
}
.gp-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gp-title h1 {
  margin: 0;
  font-size: 15pt;
  font-weight: 700;
  color: #fff;
}
.gp-title-icon {
  font-size: 14pt;
  color: #EC672C;
}
.gp-btn-fullscreen {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11pt;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}
.gp-btn-fullscreen:hover {
  background: rgba(255,255,255,0.25);
}

.gp-frame-wrapper {
  flex: 1;
  width: 100%;
  background: #f4f6f8;
  overflow: hidden;
}
.gp-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
