/* ============================================================
   GLASS UI — Apple‑Style Frosted Components (Showtime Version)
   ============================================================ */

/* Base glass card */
.glass-card {
  background: rgba(15, 20, 30, 0.55);   /* ⭐ Dark frosted glass */
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  color: #fff;                          /* ⭐ Ensure text is visible */
}

/* Frosted input fields */
.glass-input {
  background: rgba(255, 255, 255, 0.10); /* ⭐ Slightly lighter than card */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  color: #fff;                           /* ⭐ Visible text */
  width: 100%;
  box-sizing: border-box;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Labels */
.form-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Apple‑style form row layout */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
  margin-bottom: 18px;
}

/* Buttons */
.button {
  background: rgba(153, 186, 221, 0.25); /* ⭐ Carolina Blue tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  color: #fff;                           /* ⭐ Visible text */
  cursor: pointer;
  margin: 20px auto 0;
  width: calc(100% - 40px);
  transition: background 0.2s ease, transform 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button:hover {
  background: rgba(153, 186, 221, 0.35); /* Slightly brighter */
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

/* Page container */
.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #fff;
}

/* Titles */
.page-title {
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

/* Player cards */
.player-card {
  background: rgba(15, 20, 30, 0.45);     /* ⭐ Dark frosted */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 18px;
  margin: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .glass-card {
    padding: 18px;
  }

  .form-row {
    padding: 0 14px;
  }

  .button {
    width: calc(100% - 28px);
  }
}

/* ============================================================
   INFO SHEET — Non-editable data display
   ============================================================ */

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.info-value {
  font-size: 16px;
  color: var(--showtime-white);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}
