.dgw-directory,
.dgw-directory * {
  box-sizing: border-box;
}

.dgw-directory {
  --dgw-text: #ffffff;
  --dgw-muted: #aab4c8;
  --dgw-border: rgba(121, 146, 190, 0.16);
  --dgw-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  color: var(--dgw-text);
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 18px;
  font: inherit;
}

.dgw-shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(121, 146, 190, 0.16);
  background:
    radial-gradient(circle at top right, rgba(47, 95, 184, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(33, 82, 160, 0.08), transparent 30%),
    linear-gradient(180deg, #07111b, #050b14 88%);
  box-shadow: var(--dgw-shadow);
  padding: 22px;
  overflow: hidden;
}

.dgw-empty {
  padding: 20px;
}

.dgw-header {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dgw-title,
.dgw-card-title {
  margin: 0;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.dgw-title::before,
.dgw-card-title::before,
.dgw-intro::before {
  content: none !important;
  display: none !important;
}

.dgw-title {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.dgw-intro {
  margin: 0;
  max-width: 900px;
  color: var(--dgw-muted);
  line-height: 1.5;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.dgw-grid {
  display: block;
}

.dgw-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  border-radius: 24px;
  background: linear-gradient(180deg, #111a27, #0d141d);
  border: 1px solid rgba(121, 146, 190, 0.16);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.dgw-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dgw-stage-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dgw-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8ca3cb;
  font-weight: 700;
  margin-bottom: 10px;
}

.dgw-card-title {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
}

.dgw-card-description {
  margin: 0 0 14px;
  color: var(--dgw-muted);
  line-height: 1.55;
  max-width: 760px;
}

.dgw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.dgw-meta span,
.dgw-countdown,
.dgw-entry-badge,
.dgw-form-note,
.dgw-winner-banner {
  border-radius: 14px;
  border: 1px solid rgba(102, 157, 255, 0.28);
  background: rgba(255,255,255,0.04);
  color: #dce6f6;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.25;
}

.dgw-countdown,
.dgw-winner-banner {
  margin-top: 0;
}

.dgw-cta,
.dgw-submit,
.dgw-task-card {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font: inherit;
}

.dgw-cta,
.dgw-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--dgw-accent, #2f5fb8);
  cursor: pointer;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--dgw-accent, #2f5fb8) 24%, transparent);
}

.dgw-stage-media {
  position: relative;
  width: 100%;
  max-width: 300px;
  min-height: 300px;
  margin-left: auto;
}

.dgw-wheel-wrap,
.dgw-image-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #0e131a, #121722);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.dgw-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.dgw-wheel-wrap.is-active,
.dgw-card.is-entered .dgw-wheel-wrap {
  opacity: 1;
  transform: scale(1);
}

.dgw-wheel-wrap.is-active + .dgw-image-card,
.dgw-card.is-entered .dgw-image-card {
  opacity: 0.12;
  transform: scale(0.98);
}

.dgw-wheel {
  width: calc(100% - 24px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 8px rgba(0,0,0,0.12), 0 16px 30px rgba(0,0,0,0.22);
  animation: dgw-spin 20s linear infinite;
}

@keyframes dgw-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dgw-pointer {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 26px solid #fff;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.26));
}

.dgw-wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(180deg, #151b26, #0f141d);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.26);
  text-align: center;
  z-index: 4;
}

.dgw-wheel-center strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.dgw-wheel-center span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--dgw-muted);
}

.dgw-image-card {
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dgw-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dgw-entry-panel {
  padding: 20px;
}

.dgw-panel-section h4 {
  margin: 0 0 6px;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.dgw-panel-section p {
  margin: 0;
  color: var(--dgw-muted);
  line-height: 1.55;
}

.dgw-entry-form {
  margin-top: 16px;
}

.dgw-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.dgw-form-row label,
.dgw-task-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dgw-form-row span {
  color: #dbe5f5;
  font-size: 0.85rem;
  font-weight: 600;
}

.dgw-form-row input {
  min-height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0f141b;
  color: #fff;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.dgw-form-row input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--dgw-accent) 55%, rgba(255,255,255,0.12));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dgw-accent) 14%, transparent);
}

.dgw-form-note {
  margin: 10px 0 14px;
}

.dgw-entry-state {
  margin-top: 14px;
}

.dgw-entry-badge {
  justify-content: space-between;
  width: 100%;
}

.dgw-task-panel {
  margin-top: 14px;
}

.dgw-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dgw-task-card {
  min-height: 118px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #173053, #112544);
  text-align: left;
  color: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.dgw-task-card.is-available:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--dgw-accent) 46%, rgba(255,255,255,0.12));
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.dgw-task-card:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.dgw-task-card.is-claimed,
.dgw-task-card.is-verified {
  border-color: color-mix(in srgb, var(--dgw-accent) 48%, rgba(255,255,255,0.12));
}

.dgw-task-label {
  font-weight: 700;
  line-height: 1.35;
}

.dgw-task-points,
.dgw-task-status {
  color: #d5e4ff;
  font-size: 0.9rem;
}

.dgw-feedback {
  min-height: 22px;
  margin-top: 14px;
  color: #cfe0ff;
}

.dgw-feedback.has-message.is-error {
  color: #ffb8b8;
}

.dgw-confetti {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dgw-confetti-piece {
  position: absolute;
  top: -16px;
  width: 10px;
  height: 16px;
  background: color-mix(in srgb, var(--dgw-accent) 65%, white 35%);
  border-radius: 3px;
  opacity: 0.95;
  animation-name: dgw-confetti-fall;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.dgw-confetti-piece:nth-child(3n) {
  background: rgba(255,255,255,0.9);
}

.dgw-confetti-piece:nth-child(4n) {
  background: rgba(255, 196, 84, 0.9);
}

@keyframes dgw-confetti-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(420px) rotate(540deg); opacity: 0; }
}

@media (max-width: 1100px) {
  .dgw-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dgw-stage-media {
    max-width: 360px;
    min-height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .dgw-directory {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
  }

  .dgw-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .dgw-stage {
    padding: 16px;
  }

  .dgw-entry-panel {
    padding: 16px;
  }

  .dgw-stage-media {
    max-width: 280px;
    min-height: 280px;
  }

  .dgw-form-row,
  .dgw-task-grid {
    grid-template-columns: 1fr;
  }
}

.dgw-meta .dgw-countdown { margin-top: 0; }
.dgw-task-card { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.dgw-task-card.is-available:hover { box-shadow: 0 12px 24px rgba(10, 24, 49, 0.28); }


.dgw-shell {
  padding: 18px;
}

.dgw-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.dgw-title {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

.dgw-intro {
  max-width: 760px;
  line-height: 1.45;
}

.dgw-card {
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--dgw-accent, #2f5fb8) 10%, transparent), transparent 38%),
    linear-gradient(180deg, #101926, #0c131c);
}

.dgw-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--dgw-accent, #2f5fb8) 78%, white 16%), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.dgw-stage {
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 16px;
  padding: 16px 18px;
}

.dgw-kicker {
  margin-bottom: 8px;
}

.dgw-card-title {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.dgw-card-description {
  margin-bottom: 10px;
  max-width: 620px;
}

.dgw-meta {
  gap: 8px;
  margin-bottom: 8px;
}

.dgw-meta span,
.dgw-countdown,
.dgw-entry-badge,
.dgw-form-note,
.dgw-winner-banner {
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.dgw-stage-media {
  max-width: 270px;
  min-height: 270px;
}

.dgw-wheel-wrap,
.dgw-image-card {
  border-radius: 22px;
}

.dgw-pointer {
  top: 8px;
}

.dgw-wheel-center {
  width: 98px;
  height: 98px;
}

.dgw-entry-panel {
  padding: 18px;
}

.dgw-entry-form {
  margin-top: 12px;
}

.dgw-form-row {
  gap: 10px;
  margin-bottom: 8px;
}

.dgw-form-row input {
  min-height: 42px;
}

.dgw-task-panel {
  margin-top: 12px;
}

.dgw-task-grid {
  gap: 10px;
  margin-top: 10px;
}

.dgw-task-card {
  position: relative;
  min-height: 104px;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #183560, #102644);
  overflow: hidden;
}

.dgw-task-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #77b7ff, #3f83ff);
  opacity: 0.95;
}

.dgw-task-label {
  font-size: 0.96rem;
}

.dgw-task-points,
.dgw-task-status {
  font-size: 0.84rem;
}

.dgw-feedback {
  margin-top: 10px;
}

.dgw-task-card.is-available:hover {
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 1100px) {
  .dgw-stage {
    grid-template-columns: 1fr;
  }

  .dgw-stage-media {
    max-width: 270px;
    min-height: 270px;
  }
}

@media (max-width: 760px) {
  .dgw-shell {
    padding: 12px;
  }

  .dgw-stage {
    padding: 14px;
  }

  .dgw-entry-panel {
    padding: 14px;
  }
}

.dgw-task-note {
  margin: 10px 0 0;
  color: var(--dgw-muted);
  line-height: 1.45;
  font-size: 0.88rem;
}

.dgw-entry-badge { flex-wrap: wrap; gap: 8px; }
.dgw-wheel { background: #6e8ed8; }

.dgw-wheel { background: transparent; overflow: hidden; }
.dgw-wheel svg { width: 100%; height: 100%; display: block; border-radius: 50%; animation: dgw-spin 20s linear infinite; transform-origin: 50% 50%; }

.dgw-wheel-wrap { overflow: hidden; }
.dgw-wheel.is-winning svg { animation: none; }
.dgw-confetti { z-index: 6; pointer-events: none; }
.dgw-wheel-center { z-index: 7; }
.dgw-wheel-center strong { font-size: 1.2rem; }
.dgw-wheel-center span[data-dgw-center-label] { max-width: 82px; line-height: 1.1; text-transform: lowercase; }


/* v109 support note */
.dgw-support-note[hidden] {
  display: none !important;
}

.dgw-support-note {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: min(320px, calc(100vw - 28px));
  padding: 16px 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(180deg, rgba(17, 23, 35, 0.96), rgba(10, 15, 24, 0.98));
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.04);
  z-index: 9999;
  color: #eff4ff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(8px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.dgw-support-note.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dgw-support-note strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ec3ff;
  padding-right: 26px;
}

.dgw-support-note span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(241, 246, 255, 0.9);
}

.dgw-support-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.dgw-support-close:hover,
.dgw-support-close:focus-visible {
  background: rgba(255,255,255,0.16);
  transform: scale(1.04);
  outline: none;
}

@media (max-width: 767px) {
  .dgw-support-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 16px 14px 14px;
    border-radius: 16px;
  }

  .dgw-support-note span {
    font-size: 13px;
  }
}


/* v110 winner center animation */
.dgw-wheel-center {
  width: 122px;
  height: 122px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.dgw-wheel-center strong {
  max-width: 88px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.02;
  text-align: center;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dgw-wheel-center span[data-dgw-center-label] {
  max-width: 84px;
  line-height: 1.14;
  text-transform: none;
}

.dgw-wheel-center.is-winner {
  width: 132px;
  height: 132px;
  background: radial-gradient(circle at 30% 30%, rgba(53, 104, 205, 0.98), rgba(18, 28, 48, 0.98) 72%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05), 0 0 26px rgba(68, 119, 230, 0.25), 0 18px 34px rgba(0,0,0,0.3);
}

.dgw-wheel-center.is-winner strong {
  max-width: 94px;
  color: #fff;
}

.dgw-wheel-center.is-winner span {
  color: rgba(236, 243, 255, 0.88);
}

.dgw-wheel-center.is-winner.is-reveal {
  animation: dgw-winner-burst 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.dgw-wheel-center.is-short-name strong { font-size: 1.15rem; }
.dgw-wheel-center.is-medium-name strong { font-size: 0.95rem; }
.dgw-wheel-center.is-long-name strong { font-size: 0.8rem; }
.dgw-wheel-center.is-very-long-name strong { font-size: 0.7rem; }

@keyframes dgw-winner-burst {
  0% { transform: translate(-50%, -50%) scale(0.76); }
  55% { transform: translate(-50%, -50%) scale(1.09); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 767px) {
  .dgw-wheel-center { width: 108px; height: 108px; }
  .dgw-wheel-center.is-winner { width: 118px; height: 118px; }
  .dgw-wheel-center strong { max-width: 76px; }
  .dgw-wheel-center.is-winner strong { max-width: 82px; }
}


/* v111 layout + daily bonus */
.dgw-list-section {
  margin-top: 26px;
}

.dgw-list-heading {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dce8ff;
}

.dgw-card {
  gap: 0;
}

.dgw-stage {
  padding-bottom: 18px;
}

.dgw-entry-panel {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.dgw-entry-panel.is-compact {
  padding-top: 18px;
}

.dgw-closed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dgw-closed-stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,24,35,0.92), rgba(11,16,25,0.98));
}

.dgw-closed-stat strong,
.dgw-daily-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ec3ff;
}

.dgw-closed-stat span,
.dgw-daily-copy span {
  display: block;
  color: #eef4ff;
  line-height: 1.45;
}

.dgw-daily-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(117, 176, 255, 0.2);
  background: linear-gradient(180deg, rgba(20, 37, 66, 0.96), rgba(15, 29, 53, 0.98));
}

.dgw-daily-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #5d8eff, #3f6fdf);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(19, 46, 96, 0.26);
}

.dgw-daily-btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.dgw-daily-status {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: #d7e7ff;
}

.dgw-card.is-closed .dgw-stage {
  padding-bottom: 16px;
}

.dgw-card.is-closed .dgw-card-description {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .dgw-closed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dgw-daily-panel {
    grid-template-columns: 1fr;
  }

  .dgw-daily-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .dgw-closed-grid {
    grid-template-columns: 1fr;
  }
}


/* v112 cleanup */
.dgw-task-note {
  margin: 12px auto 0;
  max-width: 520px;
  text-align: center;
  font-size: 0.9rem;
  color: #dbe7fb;
}

.dgw-daily-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 12px 0 14px;
  padding: 12px 13px;
  border-radius: 16px;
}

.dgw-daily-copy strong {
  margin-bottom: 4px;
  font-size: 0.72rem;
}

.dgw-daily-copy span {
  font-size: 0.9rem;
}

.dgw-daily-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.dgw-daily-status {
  font-size: 0.8rem;
}

.dgw-task-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  font-size: 1rem;
  letter-spacing: normal;
}

.dgw-task-card .dgw-task-label {
  min-height: 2.6em;
}

.dgw-panel-section h4 {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .dgw-task-note {
    max-width: 100%;
    line-height: 1.4;
  }
}


/* v113 heading center */
.dgw-list-heading {
  text-align: center;
  justify-content: center;
}


/* v114 task cleanup */
.dgw-task-card {
  justify-content: space-between;
  min-height: 108px;
}

.dgw-task-points {
  margin-top: auto;
  font-size: 0.96rem;
}

.dgw-task-status {
  align-self: flex-start;
  min-height: auto;
  font-size: 0.96rem;
  font-weight: 700;
  color: #eef4ff;
}

.dgw-task-card-daily .dgw-task-label {
  min-height: unset;
}

.dgw-task-card-daily .dgw-task-status {
  color: #eef4ff;
}


/* v115 centering + compact cards */
.dgw-header,
.dgw-header-copy {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.dgw-header-copy {
  max-width: 760px;
  margin: 0 auto;
}

.dgw-intro {
  margin-left: auto;
  margin-right: auto;
}

.dgw-task-grid {
  align-items: stretch;
}

.dgw-task-card {
  min-height: 96px;
  padding: 12px 14px;
  gap: 6px;
}

.dgw-task-label {
  font-size: 1rem;
}

.dgw-task-points,
.dgw-task-status {
  font-size: 0.92rem;
}

.dgw-task-note {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

@media (max-width: 700px) {
  .dgw-header-copy {
    max-width: 100%;
  }

  .dgw-task-card {
    min-height: 92px;
  }
}


/* v116 slimmer action cards */
.dgw-intro {
  max-width: 640px;
  line-height: 1.6;
}

.dgw-task-grid {
  gap: 10px;
}

.dgw-task-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label status"
    "points status";
  align-items: center;
  min-height: 84px;
  padding: 12px 14px;
  gap: 4px 12px;
  border-radius: 16px;
}

.dgw-task-label {
  grid-area: label;
  min-height: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.dgw-task-points {
  grid-area: points;
  margin-top: 0;
  font-size: 0.84rem;
  color: #d4e2ff;
}

.dgw-task-status {
  grid-area: status;
  justify-self: end;
  align-self: center;
  min-width: 94px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.dgw-task-card.is-available .dgw-task-status {
  background: linear-gradient(180deg, rgba(103, 150, 255, 0.24), rgba(74, 118, 228, 0.34));
  border-color: rgba(120, 167, 255, 0.24);
}

.dgw-task-card.is-claimed .dgw-task-status,
.dgw-task-card.is-verified .dgw-task-status,
.dgw-task-card:disabled .dgw-task-status {
  background: rgba(255,255,255,0.05);
}

@media (max-width: 700px) {
  .dgw-task-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "points"
      "status";
    min-height: auto;
    gap: 8px;
  }

  .dgw-task-status {
    justify-self: start;
  }
}
