body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(circle at top right, #4f7a95 0%, #1b2631 45%, #0f1419 100%);
  color: #f3f7fb;
}

.project-player-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.project-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(8, 12, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.project-player-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.project-player-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.project-player-logo-link:focus-visible {
  outline: 2px solid #7bd4ff;
  outline-offset: 3px;
}

.project-player-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.project-player-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: #99b6cb;
}

.project-player-title {
  margin: 0.15rem 0 0;
  font-size: 1.15rem;
  font-weight: 650;
  color: #ffffff;
}

.project-player-controls {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 250px;
}

.project-player-controls label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aac3d5;
}

.project-player-select {
  width: 100%;
  background: rgba(12, 20, 31, 0.85);
  color: #e9f3fb;
  border: 1px solid rgba(153, 182, 203, 0.42);
  border-radius: 8px;
  padding: 0.48rem 0.65rem;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.project-player-select:focus {
  outline: 2px solid rgba(133, 181, 214, 0.65);
  outline-offset: 1px;
}

.project-player-select option {
  color: #f3f7fb;
  background: #0f1a24;
}

.project-player-main {
  flex: 1;
  min-height: 0;
}

#project-frame {
  display: block;
  width: 100%;
  height: calc(100vh - 86px);
  border: 0;
  background: #ffffff;
}

@media (max-width: 760px) {
  .project-player-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-player-controls {
    width: 100%;
    min-width: 0;
  }

  #project-frame {
    height: calc(100vh - 146px);
  }
}
