/*
 * TVOTT Hillbilly Blue Line Brew – front-end styling
 *
 * User request: "font color is too light" + "add banner".
 * This stylesheet forces high-contrast text (white) and uses dark, semi-transparent
 * panels/banners behind text so it stays readable on top of the dramatic background.
 */

.tvott-blueline {
  --tvott-blueline-card: rgba(0, 0, 0, 0.55);
  --tvott-blueline-card-strong: rgba(0, 0, 0, 0.68);
  --tvott-blueline-border: rgba(255, 255, 255, 0.18);
  --tvott-blueline-text: #ffffff;
  --tvott-blueline-muted: rgba(255, 255, 255, 0.86);
  --tvott-blueline-blue: #1f6feb;
  --tvott-blueline-blue-dark: #0b3a7a;

  color: var(--tvott-blueline-text);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-image: var(--tvott-blueline-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.tvott-blueline-shell {
  position: relative;
  padding: 22px;
  /* Darken the background slightly so text pops */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.tvott-blueline-hero {
  border: 1px solid var(--tvott-blueline-border);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  padding: 18px 18px 16px;
}

.tvott-blueline-hero-overlay {
  text-align: center;
}

.tvott-blueline-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.tvott-blueline-tagline {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(11, 58, 122, 0.72); /* banner */
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 22px);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.tvott-blueline-message {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--tvott-blueline-card);
  border: 1px solid var(--tvott-blueline-border);
  color: var(--tvott-blueline-muted);
  font-size: 16px;
  line-height: 1.55;
}

.tvott-blueline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 980px) {
  .tvott-blueline-grid {
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-areas:
      "progress progress"
      "form cashapp";
    align-items: start;
  }

  .tvott-blueline-card--progress { grid-area: progress; }
  .tvott-blueline-card--form { grid-area: form; }
  .tvott-blueline-card--cashapp { grid-area: cashapp; }
}

.tvott-blueline-card {
  background: var(--tvott-blueline-card-strong);
  border: 1px solid var(--tvott-blueline-border);
  border-radius: 14px;
  padding: 16px;
  color: #ffffff;
}

.tvott-blueline-progress-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tvott-blueline-progress-kicker {
  font-weight: 900;
  letter-spacing: 0.4px;
}

.tvott-blueline-progress-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.tvott-blueline-progress-bar {
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tvott-blueline-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tvott-blueline-blue) 0%, #4ea1ff 100%);
}

.tvott-blueline-card-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.tvott-blueline-form {
  display: grid;
  gap: 12px;
}

.tvott-blueline-form label span {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.95);
}

.tvott-blueline-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .tvott-blueline-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.tvott-blueline-form input[type="text"],
.tvott-blueline-form input[type="number"],
.tvott-blueline-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  outline: none;
}

.tvott-blueline-form textarea {
  resize: vertical;
}

.tvott-blueline-money {
  display: flex;
  align-items: center;
  gap: 0;
}

.tvott-blueline-money-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 44px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-weight: 900;
  color: #fff;
}

.tvott-blueline-money input {
  border-radius: 0 10px 10px 0;
}

.tvott-blueline-actions {
  display: flex;
  justify-content: center;
}

.tvott-blueline-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #2a7cff 0%, #1657d6 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tvott-blueline-btn:hover {
  filter: brightness(1.05);
}

.tvott-blueline-card--cashapp {
  text-align: center;
  background: rgba(0, 0, 0, 0.62);
}

.tvott-blueline-cashapp-title {
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.tvott-blueline-cashapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(180deg, #20c15a 0%, #0f8f3e 100%);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tvott-blueline-cashapp-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
}

.tvott-blueline-cashapp-empty {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}
