@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');


.uk-app-loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  box-sizing: border-box;
  text-align: center;
}

.uk-card.uk-app-loader-card {
  width: min(760px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.uk-app-loader {
  width: 100px;
  height: 100px;
  border: 8px solid #ffcc00;
  border-radius: 50%;
  border-top-color: transparent;
  position: relative;
  animation: uk-loader-rotate 1.5s linear infinite;
}

.uk-app-loader::before,
.uk-app-loader::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  background-color: #ffcc00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.uk-app-loader::before {
  animation: uk-loader-before 1s linear infinite;
}

.uk-app-loader::after {
  animation: uk-loader-after 1s linear infinite;
}

.uk-app-loader-card h3 {
  margin: 0;
}

.uk-app-loader-note {
  max-width: 340px;
  margin: 0;
}

@keyframes uk-loader-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }

}

@keyframes uk-loader-before {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes uk-loader-after {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

.uk-sidebar,
.uk-rail {
  position: sticky;
  top: 18px;
  overflow: hidden;
}

.uk-side-brand {
  margin: 0 0 10px;
  padding: 0 4px;
}

.uk-side-brand-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.uk-side-brand-text {
  color: var(--uk-gold);
  font-weight: 800;
  font-size: 28px;
}

.uk-side-brand-text small {
  color: var(--uk-muted);
  font-size: 12px;
  margin-left: 6px;
}

.uk-side-section,
.uk-rail-card {
  border: 1px solid var(--uk-border);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  border-radius: var(--uk-radius-card);
  box-shadow: var(--uk-shadow-card);
  padding: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.uk-side-title {
  color: #7f90b0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.uk-label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.uk-inline-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.uk-inline-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask-image: var(--uk-icon-url);
  mask-image: var(--uk-icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.uk-label-text {
  min-width: 0;
}

.uk-side-link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  background: transparent;
  color: #dbe5f7;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uk-side-link:hover {
  border-color: #2d3b58;
  background: #182236;
}

.uk-side-link.is-active {
  background: #2a2613;
  border-color: #4b3f16;
  color: var(--uk-gold);
  font-weight: 700;
}

.uk-side-link-draw {
  color: #b9c8e4;
}

.uk-side-submenu {
  padding-left: 8px;
  margin: 2px 0 8px;
  border-left: 1px solid #26334d;
  overflow: hidden;
}

.uk-side-submenu-link {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 13px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.uk-side-link .uk-label-with-icon,
.uk-menu-link .uk-label-with-icon {
  width: 100%;
}

.uk-side-submenu-link .uk-label-with-icon {
  align-items: flex-start;
}

.uk-side-submenu-link .uk-label-text {
  line-height: 1.3;
}

.uk-rail-card {
  text-align: center;
  color: #8fa0be;
  min-height: 150px;
}

.uk-rail-card-tall {
  width: 220px;
  max-width: 100%;
  height: 419px;
  min-height: 419px;
  margin: 0 auto;
}

.uk-nav {
  margin: 0 auto 36px;
  width: min(1240px, calc(100vw - 12px));
  border: 1px solid var(--uk-border);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  border-radius: var(--uk-radius-card);
  box-shadow: var(--uk-shadow-card);
  padding: 14px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: static;
  top: auto;
  z-index: 120;
  backdrop-filter: blur(8px);
}

.admin-bar .uk-nav {
  top: auto;
}

.uk-brand {
  color: var(--uk-gold);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 34px;
  display: flex;
  align-items: center;
}

.uk-brand small {
  color: var(--uk-muted);
  font-size: 14px;
  margin-left: 8px;
  font-weight: 500;
}

.uk-brand-logo {
  display: block;
  height: 84px;
  width: auto;
  max-width: min(340px, 52vw);
  object-fit: contain;
}

.uk-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.uk-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #2c364b;
  border-radius: 10px;
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
}

.uk-menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #dce6fa;
  margin: 5px 0;
}

.uk-menu button {
  background: transparent;
  border: 1px solid #2c364b;
  color: var(--uk-text);
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  min-height: 44px;
  min-width: 72px;
  font-size: 14px;
}

.uk-menu button.is-active {
  background: linear-gradient(120deg, var(--uk-gold), var(--uk-gold-2));
  color: #1a1a1a;
  font-weight: 700;
}

.uk-menu-section {
  border: 1px solid #2c364b;
  border-radius: 12px;
  padding: 10px;
}

.uk-menu-title {
  color: #8ea0c1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}

.uk-menu-link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 1px solid #2c364b;
  color: var(--uk-text);
  padding: 10px 14px;
  border-radius: 12px;
  min-height: 44px;
  font-size: 14px;
  margin: 0 0 8px;
  cursor: pointer;
}

.uk-menu-link:last-child {
  margin-bottom: 0;
}

.uk-menu-link.is-active {
  background: linear-gradient(120deg, var(--uk-gold), var(--uk-gold-2));
  color: #1a1a1a;
  font-weight: 700;
}

.uk-menu-submenu {
  padding-left: 10px;
}

.uk-menu-submenu .uk-menu-link {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 13px;
}

.uk-header {
  text-align: center;
  margin-bottom: 20px;
}

.uk-header h1 {
  margin: 0;
  color: var(--uk-gold);
  font-size: clamp(36px, 4vw, 52px);
}

.uk-header p {
  color: var(--uk-muted);
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.uk-home-hc-wrap {
  width: min(760px, 100%);
  margin: 4px auto 10px;
  padding-top: 12px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
}

.uk-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.uk-home-hc-card {
  width: min(160px, 44vw);
  border-radius: 10px;
  overflow: hidden;
  background: #f3f6fc;
  border: 1px solid #d1d9e8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.uk-home-hc-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #ffffff;
  padding: 8px 10px;
}

.uk-home-hc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.uk-home-hc-head strong {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.uk-home-hc-icon {
  font-size: 14px;
  line-height: 1;
}

.uk-home-hc-head span {
  font-size: 11px;
  opacity: 0.9;
}

.uk-home-hc-head.is-hot {
  background: linear-gradient(120deg, #f04b3d, #d9362c);
}

.uk-home-hc-head.is-cold {
  background: linear-gradient(120deg, #3d63d8, #3154c6);
}

.uk-home-hc-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 8px;
}

.uk-home-hc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.uk-home-hc-count {
  font-size: 11px;
  color: #111a2b;
  text-align: center;
  line-height: 1.2;
}

.uk-filters {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
  align-items: center;
}

.uk-filters-end {
  justify-content: flex-end;
}

.uk-filters-center {
  justify-content: center;
}

.uk-filters-between {
  justify-content: space-between;
}

.uk-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--uk-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  min-height: 26px;
  padding: 0;
  cursor: pointer;
}

.uk-order-switch {
  color: #9fb3d8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}

.uk-order-label {
  font-size: 14px;
  line-height: 1.2;
  color: #9fb3d8;
  min-width: 0;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uk-order-switch .uk-order-native {
  position: static;
  opacity: 1;
  appearance: none;
  -webkit-appearance: none;
  width: 46px;
  min-width: 46px;
  height: 26px;
  min-height: 26px;
  flex: 0 0 46px;
  border-radius: 999px;
  border: 1px solid #6a7b9d;
  background: #4f5d79;
  padding: 2px;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.uk-order-switch .uk-order-native::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #edf2ff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  transform: translateX(0);
  transition: transform 0.2s ease, background 0.2s ease;
}

.uk-order-switch.is-numerical .uk-order-label {
  color: #9fb3d8;
}

.uk-order-switch.is-drawn .uk-order-label {
  color: #9fb3d8;
}

.uk-switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.uk-slider {
  display: inline-block;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #2a3348;
  border: 1px solid #2f3a52;
  position: relative;
  transition: background 0.2s ease;
}

.uk-slider::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0e1320;
  border: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}

.uk-switch input:checked + .uk-slider {
  background: #f4c022;
  border-color: #f4c022;
}

.uk-switch input:checked + .uk-slider::after {
  transform: translateX(20px);
  background: #121722;
  border-color: transparent;
}

.uk-switch input:focus + .uk-slider {
  box-shadow: 0 0 0 2px rgba(244, 192, 34, 0.25);
}

.uk-switch-state {
  min-width: 28px;
  color: #9eb0cf;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  opacity: 0.75;
}

.uk-switch input:checked + .uk-slider + .uk-switch-state {
  color: #6be18b;
  opacity: 1;
}

.uk-order-switch.is-drawn .uk-order-native:checked {
  background: #f4c022;
  border-color: #f4c022;
}

.uk-order-switch.is-drawn .uk-order-native:checked::before {
  transform: translateX(20px);
  background: #121722;
}

.uk-order-switch.is-numerical .uk-order-native:not(:checked) {
  background: #4f5d79;
  border-color: #6a7b9d;
}

.uk-order-switch.is-numerical .uk-order-native:not(:checked)::before {
  transform: translateX(0);
  background: #edf2ff;
}

.uk-date-pill-row {
  width: min(760px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 12px 0 2px;
}

.uk-date-pill-row .uk-date-pill {
  width: auto;
  max-width: 100%;
  margin: 0;
}

.uk-date-pill-row .uk-order-switch {
  justify-self: end;
}


.uk-date-content .uk-card {
  width: 100%;
}

.uk-date-content .uk-draw-row {
  width: 100%;
}

.uk-date-pill {
  width: min(760px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  color: #d8e3fb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 12px 0 2px;
}

.uk-date-block {
  width: min(760px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--uk-border);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  border-radius: var(--uk-radius-card);
  box-shadow: var(--uk-shadow-card);
  padding: 12px;
}

.uk-date-block.is-open {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.uk-date-block summary {
  list-style: none;
  cursor: pointer;
  display: block;
  border-radius: 10px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.uk-date-block summary::-webkit-details-marker {
  display: none;
}

.uk-date-block:not(.is-open):not([open]) summary {
  border: 1px solid transparent;
  padding: 8px 10px;
}

.uk-date-block:not(.is-open):not([open]) summary:hover,
.uk-date-block:not(.is-open):not([open]) summary:focus-visible {
  background: rgba(20, 33, 56, 0.72);
  border-color: rgba(78, 104, 148, 0.45);
  box-shadow: inset 0 0 0 1px rgba(34, 56, 92, 0.35);
}

.uk-date-block:not(.is-open):not([open]) summary:hover .uk-date,
.uk-date-block:not(.is-open):not([open]) summary:focus-visible .uk-date {
  color: #e3ebfb;
}

.uk-date-block:not(.is-open):not([open]) summary:hover .uk-date-count,
.uk-date-block:not(.is-open):not([open]) summary:focus-visible .uk-date-count {
  color: #c3d3ef;
}

.uk-date-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 15px;
}

.uk-date-count {
  color: var(--uk-muted);
  font-size: 12px;
  white-space: nowrap;
  position: relative;
  top: -2px;
}

.uk-date-content {
  margin-top: 6px;
}

.uk-select,
.uk-input,
.uk-textarea {
  background: #262d3f;
  color: var(--uk-text);
  border: 1px solid #313b54;
  border-radius: 10px;
  padding: 12px;
}


.uk-date {
  font-size: clamp(17px, 2.6vw, 20px);
  margin: 0;
  color: #f5f7fb;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  text-align: left;
}

.uk-date-title {
  display: block;
}

.uk-event {
  margin-bottom: 0;
  color: #90e2ff;
  font-weight: 700;
  font-size: 15px;
}

.uk-event .uk-label-with-icon {
  gap: 6px;
}

.uk-event .uk-inline-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.uk-event-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}

.uk-event-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
}

.uk-time {
  color: #a6bad6;
  font-size: 11px;

  border-radius: 999px;
  background: rgba(16, 27, 46, 0.5);
  padding: 2px 7px;
  white-space: nowrap;
}

.uk-draw-row {
  border: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-bottom: 10px;
}

.uk-date-content .uk-draw-row + .uk-draw-row {
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid rgba(41, 60, 92, 0.6);
}

.uk-balls-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.uk-draw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
  color: #d5e1f7;
  font-size: 12px;
  line-height: 1.4;
}

.uk-draw-comments {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #99abc8;
  font-size: 12px;
  line-height: 1;
  margin-left: 6px;
}

.uk-draw-comments-icon {
  font-size: 12px;
  opacity: 0.9;
}

.uk-draw-comments-count {
  font-weight: 500;
}

.uk-draw-insights {
  margin-top: 10px;
}

.uk-draw-insights summary {
  list-style: none;
  cursor: pointer;
}

.uk-draw-insights summary::-webkit-details-marker {
  display: none;
}

.uk-draw-insights-toggle {
  width: 100%;
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(44, 59, 90, 0.5);
  background: rgba(22, 31, 49, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #a9b7d2;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.uk-draw-insights-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uk-draw-insights-label i {
  font-style: normal;
  color: #9db0d3;
  font-size: 12px;
}

.uk-draw-insights-caret {
  font-size: 11px;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}



.uk-draw-insights-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(41, 60, 92, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uk-draw-insight-empty {
  margin: 0;
  color: #8ea2c6;
  font-size: 12px;
}




.uk-draw-insight-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.uk-draw-insight-stat {
  border: 1px solid rgba(42, 57, 86, 0.65);
  border-radius: 10px;
  background: rgba(14, 22, 38, 0.72);
  padding: 8px 10px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.uk-draw-insight-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #90a6c8;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.uk-draw-insight-stat-label i {
  font-style: normal;
  color: #7f97bf;
}

.uk-draw-insight-stat strong {
  color: #e2ecff;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}

.uk-draw-insight-block {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.uk-draw-insight-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.uk-draw-insight-block h4 {
  margin: 0;
  color: #cad9ef;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.uk-draw-insight-date {
  color: #8ca2c6;
  font-size: 11px;
}

.uk-draw-insight-balls .uk-ball {
  transform: scale(0.94);
}



.uk-draw-insight-week-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uk-draw-insight-week-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.uk-draw-insight-week-date {
  color: #89a0c4;
  font-size: 11px;
}

.uk-draw-insight-week-balls {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.uk-draw-insight-week-balls .uk-balls {
  display: inline-flex;
  gap: 4px;
  flex-wrap: wrap;
}

.uk-draw-insight-week-balls .uk-ball {
  width: 20px;
  height: 20px;
  min-width: 20px;
  font-size: 10px;
  border-width: 2px;
  box-shadow: none;
}

.uk-draw-insight-week-balls .uk-bonus-wrap .uk-ball {
  box-shadow: 0 0 7px rgba(255, 198, 26, 0.45);
}

.uk-draw-insight-pairs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uk-draw-insight-pair {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 10px;
  background: rgba(22, 31, 49, 0.82);
  border: 1px solid rgba(45, 62, 94, 0.55);
}

.uk-draw-insight-pair .uk-ball {
  width: 28px;
  height: 28px;
  min-width: 28px;
  font-size: 12px;
  border-width: 3px;
  box-shadow: none;
}

.uk-draw-insight-pair-count {
  color: #9cb3d6;
  font-size: 11px;
  font-weight: 600;
}

.uk-draw-insight-hc-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-draw-insight-hc h4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.uk-draw-insight-hc.is-hot h4 {
  color: #ffb267;
}

.uk-draw-insight-hc.is-cold h4 {
  color: #8fc9ff;
}

.uk-draw-insight-hc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.uk-draw-insight-hc-ball {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.uk-draw-insight-hc-ball em {
  font-style: normal;
  color: #8ea2c6;
  font-size: 11px;
  line-height: 1;
}

.uk-draw-insight-premium-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.uk-draw-insight-prem-meta {
  margin: 0;
  color: #9ab0d4;
  font-size: 12px;
}

.uk-draw-insight-prem-meta span {
  margin-left: 8px;
}

.uk-draw-insight-prem-note {
  margin: 6px 0 0;
  color: #8ea2c6;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .uk-draw-insight-hc-wrap {
    grid-template-columns: 1fr;
  }

  .uk-draw-insight-stats-grid {
    grid-template-columns: 1fr;
  }

  .uk-draw-insight-week-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .uk-draw-insights-toggle {
    font-size: 12px;
  }
}
.uk-draw-pulse {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.45;
  color: #9fb6d8;
  max-width: 760px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.uk-draw-pulse strong {
  color: #d7e6ff;
  font-weight: 700;
}

.uk-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px;
  letter-spacing: 0.3px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 9.5px;
  line-height: 1.2;
  border: 1px solid #31496e;
  background: rgba(18, 30, 51, 0.78);
  color: #c9d7ef;
  box-shadow: none;
  opacity: 1;
}

.uk-meta-sum {
  border-left: 2px solid #8d6bd5;
}

.uk-meta-odd {
  border-left: 2px solid #56a4ff;
}

.uk-meta-even {
  border-left: 2px solid #f4a9b5;
}

/* Keep Dashboard/Historical balls crisp without heavy glow. */
.uk-date-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 10px;
}

.uk-date-toolbar-left {
  min-width: 0;
}

.uk-date-toolbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.uk-pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #41557a;
  border-radius: 999px;
  color: #d8e6ff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(35, 50, 78, 0.45);
}

.uk-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}

.uk-countdown-clock {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 181, 22, 0.12);
  border: 0;
  box-shadow: none;
  flex: 0 0 30px;
}

.uk-countdown-clock-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: var(--uk-gold);
  -webkit-mask-image: var(--uk-clock-url);
  mask-image: var(--uk-clock-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.uk-countdown-clock-fallback {
  color: var(--uk-gold);
  font-size: 13px;
  line-height: 1;
}

.uk-countdown-boxes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.uk-countdown-box {
  min-width: 30px;
  height: 26px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a3142;
  color: #e6edfb;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.uk-countdown-sep {
  color: #a7b4cc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 640px) {
  .uk-draw-insight-hc-wrap {
    grid-template-columns: 1fr;
  }

  .uk-draw-insight-stats-grid {
    grid-template-columns: 1fr;
  }

  .uk-draw-insight-week-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .uk-draw-insights-toggle {
    font-size: 12px;
  }
}


.uk-launch-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 22%, #0f1830 0%, #070c16 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

.uk-launch-screen.is-active {
  opacity: 1;
}

.uk-launch-screen.is-leaving {
  opacity: 0;
}

.uk-launch-screen__inner {
  width: min(72vw, 320px);
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-launch-screen__logo {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.14);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  animation: uk-launch-zoom-out 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.uk-launch-screen__title {
  color: #f4b516;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes uk-launch-zoom-out {
  0% {
    opacity: 0;
    transform: scale(1.14);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uk-launch-screen {
    transition: none;
  }

  .uk-launch-screen__logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.uk-picks-grid {
  align-items: stretch;
}

.uk-pick-card h3 {
  margin: 0 0 10px;
  color: #f1c44b;
}

.uk-muted-copy {
  color: #9db0d1;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.uk-pick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.uk-smart-picks-wrap {
  gap: 12px;
}

.uk-smart-tabs {
  justify-content: flex-start;
  margin: 0 0 8px;
}

.uk-smart-spinner-card h3,
.uk-smart-score-card h3,
.uk-smart-history-card h3 {
  margin: 0 0 10px;
}

.uk-smart-spinner-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.uk-smart-bucket-grid {
  gap: 6px;
}

.uk-smart-score-block-head {
  margin: 2px 0 0;
}

.uk-smart-score-block-head h3 {
  margin: 0;
  color: #f1c44b;
  font-size: 16px;
}

.uk-smart-bucket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uk-smart-video-ad {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-style: dashed;
  border-color: #2f456a;
}

.uk-smart-picker-caption {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.uk-smart-divider {
  height: 1px;
  width: 100%;
  background: #2d3e5f;
  margin: 4px 0 2px;
  border-radius: 999px;
}

.uk-smart-spin-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border: 1px solid #2d3b59;
  border-radius: 10px;
  background: rgba(12, 24, 48, 0.6);
}

.uk-smart-spin-slot.is-bonus {
  border-color: #a97f20;
  background: rgba(43, 30, 5, 0.5);
}

.uk-smart-spin-label {
  color: #9ab0d5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uk-smart-spinner-lane.is-spinning .uk-ball {
  animation: uk-smart-spin-pulse 0.45s linear infinite;
}

@keyframes uk-smart-spin-pulse {
  0% { transform: translateY(0); }
  25% { transform: translateY(-2px); }
  50% { transform: translateY(1px); }
  100% { transform: translateY(0); }
}

.uk-smart-score-card {
  border-color: #2e3f61;
}

.uk-smart-five-day-intro h3,
.uk-smart-five-day-card h3 {
  margin: 0;
}

.uk-smart-five-day-intro .uk-muted-copy {
  margin-top: 8px;
}

.uk-smart-five-day-card {
  border-color: #2e3f61;
}

.uk-smart-five-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.uk-smart-five-day-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-smart-five-day-row {
  border: 1px solid #2a3b5a;
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(13, 24, 48, 0.58);
}

.uk-smart-five-day-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.uk-smart-five-day-row-top strong {
  font-size: 14px;
}

.uk-smart-five-day-row-meta {
  margin-top: 6px;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.4;
}

.uk-smart-score-card .uk-ball {
  transition: opacity 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

.uk-smart-score-card .uk-ball.uk-smart-hit-ball {
  opacity: 1;
  filter: none;
}

.uk-smart-score-card .uk-ball.uk-smart-miss-ball {
  opacity: 0.35;
  filter: blur(1px) saturate(0.55);
}

.uk-smart-score-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.uk-smart-score-right {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.uk-smart-accuracy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uk-smart-accuracy-badge.is-high {
  background: #113521;
  color: #73e9a6;
  border: 1px solid #1f5d37;
}

.uk-smart-accuracy-badge.is-mid {
  background: #3b3110;
  color: #f4d479;
  border: 1px solid #6f5621;
}

.uk-smart-accuracy-badge.is-low {
  background: #401a1f;
  color: #ff9ea8;
  border: 1px solid #6e2a33;
}

.uk-smart-accuracy-badge.is-pending {
  background: #15213a;
  color: #94a8cb;
  border: 1px solid #324567;
}

.uk-smart-match-line {
  margin-top: 8px;
  color: #a7bad8;
  font-size: 12px;
  line-height: 1.4;
}

.uk-smart-match-line span {
  color: #dce7fa;
  margin-left: 8px;
}

.uk-smart-overall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: #dbe7fb;
  font-size: 13px;
  font-weight: 700;
}

.uk-comments-card {
  border-color: #2e3f61;
}

.uk-comments-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.uk-comments-head h3 {
  margin: 0;
  color: #dfe9fb;
}

.uk-comments-icon {
  color: var(--uk-gold);
  font-size: 16px;
  line-height: 1;
}

.uk-comments-intro {
  margin: 0 0 6px;
  color: #c6d4ee;
  font-size: 13px;
  line-height: 1.45;
}

.uk-comments-caution {
  margin: 0 0 10px;
  color: #f2cb79;
  font-size: 12px;
  line-height: 1.4;
}

.uk-comments-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-comments-form .uk-input,
.uk-comments-form .uk-textarea {
  background: rgba(12, 20, 36, 0.9);
  border: 1px solid #2f4061;
  color: #e3ecfd;
}

.uk-comments-textarea {
  min-height: 88px;
  resize: vertical;
}

.uk-comments-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uk-comments-count {
  color: #8fa4c9;
  font-size: 12px;
}


.uk-comments-submit-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
}

.uk-comments-feedback {
  min-height: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: #8fa4c9;
}

.uk-comments-feedback.is-success {
  color: #7fe0aa;
}

.uk-comments-feedback.is-error {
  color: #ff9ea8;
}

.uk-comments-list {
  margin-top: 12px;
  padding: 2px 0 4px;
  gap: 10px;
}

.uk-comment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #2a3b5a;
  border-radius: 12px;
  background: rgba(13, 24, 48, 0.58);
  padding: 5px;
}


.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-comment-body {
  min-width: 0;
  flex: 1 1 auto;
}

.uk-comment-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.uk-comment-name {
  color: #000000;
}

.uk-comment-time {
  color: #000000;
}

.uk-comment-message {
  color: #000000;
}

.uk-bonus-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.uk-bonus-label {
  color: #f1c44b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.uk-stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.uk-hot {
  background: #3b1a0f;
  color: #ffb07a;
  border: 1px solid #5a2a18;
}

.uk-cold {
  background: #0f1f3b;
  color: #8fbfff;
  border: 1px solid #1f3a66;
}

.uk-stat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uk-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uk-stat-count {
  color: #9db0d1;
  font-size: 12px;
}

.uk-pattern-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uk-pattern-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.uk-pattern-block {
  margin: 0;
  color: #dfe7f7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-pattern-block h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1c44b;
}

.uk-pattern-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uk-stat-card {
  border: 1px solid var(--uk-border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  color: #0f1728;
}

.uk-stat-period {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dfe7f7;
}

.uk-stat-period + .uk-stat-period {
  margin-top: 30px;
}

.uk-stat-period h3 {
  margin: 0;
  font-size: 16px;
  color: #f1c44b;
}

.uk-stat-line {
  flex: 1;
  height: 1px;
  background: #2b3957;
  border-radius: 999px;
}

.uk-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-bottom: 18px;
  align-items: stretch;
}

.uk-stat-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: #ffffff;
}

.uk-stat-card-hot {
  background: #e23a36;
}

.uk-stat-card-cold {
  background: #2f56c9;
}

.uk-stat-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.uk-stat-card-text strong {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.uk-stat-card-text span {
  font-size: 12px;
  opacity: 0.9;
}

.uk-stat-card-icon {
  font-size: 18px;
}

.uk-stat-card-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 14px;
  background: #f5f7fb;
}

.uk-stat-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.uk-stat-card-count {
  font-size: 12px;
  color: #1a1a1a;
  text-align: center;
}

.uk-stats-weekback {
  margin-bottom: 12px;
}

.uk-stats-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0 16px;
}

.uk-vip-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.uk-vip-formula-badge {
  display: inline-flex;
  align-items: center;
}

.uk-vip-cycle-badge {
  transform: scale(1.02);
}

.uk-vip-day-formula {
  margin-bottom: 10px;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.uk-vip-day-formula .uk-premium-signal-badge {
  flex: 0 0 auto;
}

.uk-vip-hit-wrap {
  position: relative;
  padding-top: 4px;
}

.uk-vip-hit-stars {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 1px;
  z-index: 2;
}

.uk-vip-hit-star {
  position: relative;
  top: auto;
  right: auto;
  width: 10px;
  height: 10px;
  animation: none;
}

.uk-vip-hit-star::before {
  background: radial-gradient(circle, #ffffff 0%, var(--uk-hit-color) 36%, transparent 100%);
  box-shadow: 0 0 3px var(--uk-hit-color), 0 0 6px var(--uk-hit-color);
}

.uk-vip-hit-star.is-bonus-hit::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid var(--uk-gold);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(244, 181, 22, 0.55);
}

.uk-vip-hit-star span::before,
.uk-vip-hit-star span::after,
.uk-vip-hit-star i::before,
.uk-vip-hit-star b::before {
  background: linear-gradient(to bottom, transparent, var(--uk-hit-color), transparent);
}

.uk-vip-event-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.uk-vip-combo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.uk-vip-combo-card {
  display: grid;
  gap: 10px;
}

.uk-vip-combo-note {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-vip-combo-block {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(63, 88, 125, 0.58);
  border-radius: 16px;
  background: rgba(10, 23, 44, 0.42);
}

.uk-vip-combo-block.is-brunchtime {
  border-color: rgba(241, 196, 75, 0.34);
  background: rgba(46, 34, 8, 0.22);
}

.uk-vip-combo-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uk-vip-combo-block-head strong {
  color: #e5eefc;
  font-size: 13px;
}

.uk-vip-combo-block-head span {
  color: #9db0d1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.uk-vip-combo-hit-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.uk-vip-combo-hit-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(63, 88, 125, 0.58);
  border-radius: 16px;
  background: rgba(10, 23, 44, 0.42);
}

.uk-vip-combo-hit-card.is-pressure {
  border-color: rgba(148, 211, 255, 0.32);
  background: linear-gradient(180deg, rgba(127, 196, 255, 0.16), rgba(10, 23, 44, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.uk-vip-combo-hit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.uk-vip-combo-hit-card-head strong {
  color: #e5eefc;
  font-size: 13px;
}

.uk-vip-combo-hit-card-head span {
  color: #f1c44b;
  font-size: 11px;
  font-weight: 700;
}

.uk-vip-combo-hit-card-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.uk-stats-tab-btn {
  border: 1px solid #324362;
  border-radius: 999px;
  background: #0e1c3a;
  color: #dce8fb;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.uk-stats-tab-btn.is-active {
  background: linear-gradient(120deg, #f2be2f, #dba51f);
  color: #15213c;
  border-color: transparent;
}

.uk-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uk-recency-grid,
.uk-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.uk-recency-card,
.uk-context-card {
  border: 1px solid #2c3a58;
  border-radius: 12px;
  background: rgba(9, 21, 46, 0.65);
  padding: 12px;
}

.uk-recency-card h3,
.uk-context-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #f1c44b;
}

.uk-recency-head,
.uk-recency-row {
  display: grid;
  grid-template-columns: 58px 1fr 110px;
  align-items: center;
  gap: 8px;
}

.uk-recency-head {
  color: #8da3c8;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.uk-recency-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-recency-mid {
  color: #dce8fb;
  font-size: 12px;
}

.uk-recency-right {
  justify-self: end;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.uk-trend-rising {
  color: #58df90;
}

.uk-trend-falling {
  color: #ff8e8e;
}

.uk-trend-flat {
  color: #95a8cb;
}

.uk-context-kv {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #dce8fb;
}

.uk-context-kv strong {
  font-size: 18px;
  color: #ffffff;
}

.uk-context-line {
  margin: 0 0 8px;
  color: #b9c9e7;
  font-size: 12px;
  line-height: 1.45;
}

.uk-context-pattern-row {
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid #2d3b58;
  border-radius: 10px;
  background: rgba(8, 18, 39, 0.7);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-context-pattern-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9fb3d6;
  font-weight: 700;
}

.uk-context-pattern-meta {
  font-size: 12px;
  color: #b9c9e7;
}

.uk-context-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.uk-context-chip {
  border: 1px solid #34476e;
  border-radius: 999px;
  color: #dce8fb;
  padding: 4px 8px;
  font-size: 11px;
}

.uk-context-chip .uk-label-with-icon {
  gap: 6px;
}

.uk-context-chip .uk-inline-icon {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}


.uk-premium-wrap {
  gap: 12px;
}

.uk-premium-tabs {
  justify-content: flex-start;
  margin: 0 0 8px;
}

.uk-premium-card {
  border-color: #2e3f61;
}

.uk-premium-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.uk-premium-head h3 {
  margin: 0;
  color: #f1c44b;
}

.uk-premium-meta {
  color: #9db0d1;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.uk-premium-caption {
  margin: 0 0 10px;
  color: #c5d4ee;
  font-size: 13px;
  line-height: 1.5;
}

.uk-premium-signal {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #4b5f82;
  background: rgba(14, 26, 48, 0.75);
}

.uk-premium-signal::before,
.uk-premium-signal::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #f1c44b;
}

.uk-premium-signal::before {
  width: 7px;
  height: 7px;
  top: 4px;
  left: 4px;
}

.uk-premium-signal::after {
  width: 5px;
  height: 5px;
  bottom: 5px;
  right: 5px;
}

.uk-premium-signal.is-a.is-day-2::after {
  width: 7px;
  height: 7px;
}

.uk-premium-signal.is-b::before {
  background: #7ec7ff;
}

.uk-premium-signal.is-b::after {
  background: #37e09c;
}

.uk-premium-signal.is-b.is-day-2::after {
  width: 7px;
  height: 7px;
}
.uk-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-premium-cell {
  border: 1px solid #2a3b5a;
  border-radius: 10px;
  padding: 10px;
  background: rgba(13, 24, 48, 0.58);
}

.uk-premium-cell h4 {
  margin: 0 0 8px;
  color: #dbe7fb;
  font-size: 13px;
}

.uk-premium-note {
  margin: 0 0 8px;
  font-size: 12px;
  color: #9db0d1;
}

.uk-premium-cell-span {
  grid-column: 1 / -1;
}

.uk-premium-bucket-grid {
  gap: 6px;
}

.uk-ball-hit-wrap {
  position: relative;
  display: inline-flex;
}

.uk-ball-hit-star {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 2;
  animation: uk-premium-star-float 2.2s infinite ease-in-out;
}

.uk-ball-hit-star::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--uk-gold) 35%, #c89a16 68%, transparent 100%);
  box-shadow: 0 0 4px var(--uk-gold), 0 0 8px rgba(245, 195, 73, 0.55);
}

.uk-ball-hit-star span,
.uk-ball-hit-star i,
.uk-ball-hit-star b {
  position: absolute;
  inset: 0;
}

.uk-ball-hit-star span::before,
.uk-ball-hit-star span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, transparent, var(--uk-gold), transparent);
  transform: translate(-50%, -50%);
}

.uk-ball-hit-star span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.uk-ball-hit-star i::before,
.uk-ball-hit-star b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, transparent, #f2be3a, transparent);
  transform: translate(-50%, -50%) rotate(45deg);
}

.uk-ball-hit-star b::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes uk-premium-star-float {
  0%, 100% {
    transform: scale(0.88) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08) translateY(-1px);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .uk-stat-row {
    grid-template-columns: 1fr;
  }
  .uk-stat-card-body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .uk-recency-grid,
  .uk-context-grid {
    grid-template-columns: 1fr;
  }
  .uk-recency-head,
  .uk-recency-row {
    grid-template-columns: 52px 1fr 88px;
  }
}

.uk-about,
.uk-contact,
.uk-policy,
.uk-terms,
.uk-how-to-play,
.uk-draw-types,
.uk-frequency-view,
.uk-responsible-view {
  width: min(760px, 94vw);
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.uk-about h3,
.uk-contact h3,
.uk-policy h3,
.uk-terms h3 {
  margin-top: 0;
}

.uk-grid-49 {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.uk-btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  background: linear-gradient(120deg, var(--uk-gold), var(--uk-gold-2));
  color: #151515;
  font-weight: 700;
  cursor: pointer;
}

.uk-btn-secondary {
  background: transparent;
  border: 1px solid #324362;
  color: #dce8fb;
}

.uk-btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.uk-btn-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
}

.uk-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.uk-btn-generate {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(231, 155, 0, 0.18);
}

.uk-btn-generate[disabled] {
  opacity: 0.45;
  box-shadow: none;
}


.uk-contact form {
  width: min(560px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.uk-contact p {
  margin: 0 0 18px;
}

.uk-contact label {
  display: block;
  text-align: left;
}

.uk-contact .uk-input,
.uk-contact .uk-textarea {
  width: 100%;
  box-sizing: border-box;
}

.uk-legal-card {
  padding: 18px 20px;
}

.uk-legal-body {
  width: min(72ch, 100%);
  margin: 0 auto;
  padding-inline: clamp(16px, 3.6vw, 34px);
  box-sizing: border-box;
}

.uk-legal-body h2,
.uk-legal-body h3 {
  color: #f4c84d;
}

.uk-legal-card p,
.uk-legal-card li {
  color: #c9d6ea;
  line-height: 1.7;
}

.uk-legal-card ul {
  margin: 0 0 18px 18px;
  padding: 0;
}

.uk-legal-card li + li {
  margin-top: 8px;
}

.uk-legal-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  padding-top: 12px;
  color: #f4c84d;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(96, 118, 156, 0.22);
}

.uk-legal-card h3:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.uk-legal-note {
  margin-top: 18px;
  color: #9db1d1;
  font-size: 13px;
}

.uk-legal-card a {
  color: #f4c84d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.uk-info-header {
  width: min(760px, 94vw);
  margin: 0 auto 10px;
}

.uk-info-header .uk-premium-title-text {
  margin-bottom: 6px;
}

.uk-info-card {
  padding: 18px 20px;
}

.uk-info-body {
  width: min(72ch, 100%);
  margin: 0 auto;
  padding-inline: clamp(16px, 3.6vw, 34px);
  box-sizing: border-box;
}

.uk-info-card .uk-info-body h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  padding-top: 12px;
  color: #f4c84d;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(96, 118, 156, 0.22);
}

.uk-info-card .uk-info-body h3:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.uk-info-card .uk-info-body h4 {
  margin: 18px 0 8px;
  color: #e3ebf8;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
}

.uk-info-muted {
  color: #9db0cf;
  font-size: 13px;
  line-height: 1.55;
}

.uk-info-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 10px;
}

.uk-info-mini-card {
  border: 1px solid rgba(71, 92, 132, 0.45);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  box-shadow: var(--uk-shadow-card);
  padding: 14px 16px;
  display: grid;
  gap: 5px;
  min-height: 72px;
  align-content: center;
}

.uk-info-mini-card > strong {
  color: var(--uk-text);
  font-size: 1rem;
  line-height: 1.3;
}

.uk-info-mini-card > span {
  color: var(--uk-muted);
  font-size: 12px;
  line-height: 1.35;
}

.uk-info-mini-card > strong,
.uk-info-mini-card > span {
  padding-left: 2px;
}

.uk-info-mini-event {
  margin: 0;
}

.uk-info-mini-event .uk-label-text {
  padding-left: 2px;
}

.uk-info-mini-time {
  display: block;
  color: var(--uk-muted);
  font-size: 12px;
  line-height: 1.35;
  padding-left: 10px;
}
.uk-info-ball-example {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}

.uk-info-ball-example .uk-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.uk-info-alert {
  margin-top: 18px;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid rgba(94, 117, 157, 0.42);
  background: rgba(24, 33, 55, 0.8);
}

.uk-info-alert.is-warning {
  border-color: rgba(110, 44, 44, 0.45);
  background: rgba(36, 17, 17, 0.5);
}

.uk-info-alert.is-danger {
  border-color: rgba(178, 68, 68, 0.6);
  background: rgba(60, 27, 34, 0.7);
}

.uk-info-alert p,
.uk-info-alert li {
  color: #d8e2f3;
}

.uk-info-support-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.uk-info-support-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #f4c84d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.uk-info-draw-grid {
  display: grid;
  gap: 10px;
}

.uk-info-draw-grid > article {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 2px 10px 10px;
}

.uk-info-draw-grid > article + article {
  border-top: 1px solid rgba(41, 60, 92, 0.6);
  padding-top: 10px;
}

.uk-info-draw-event-row {
  margin-bottom: 8px;
}

.uk-info-draw-grid > article .uk-event {
  margin-bottom: 0;
  padding-left: 2px;
}

.uk-info-draw-grid > article .uk-event .uk-inline-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.uk-info-draw-grid > article p {
  margin: 0;
  padding-left: 2px;
}

.uk-info-table-wrap {
  overflow-x: auto;
  margin: 10px 0 4px;
}

.uk-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  border: 1px solid rgba(71, 92, 132, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.uk-info-table th,
.uk-info-table td {
  text-align: left;
  border-bottom: 1px solid rgba(71, 92, 132, 0.42);
  padding: 10px 12px;
  color: #ccd8ed;
}

.uk-info-table thead th {
  color: #e8eefc;
  background: rgba(28, 40, 64, 0.92);
  font-weight: 700;
}

.uk-frequency-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.uk-frequency-row {
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.uk-frequency-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(44, 56, 84, 0.75);
  overflow: hidden;
}

.uk-frequency-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--uk-gold), #f0c73e);
}

.uk-frequency-meta {
  min-width: 58px;
  text-align: right;
  display: grid;
  gap: 1px;
}

.uk-frequency-meta strong {
  color: #dfe8f8;
  font-size: 12px;
  line-height: 1;
}

.uk-frequency-meta em {
  font-style: normal;
  font-size: 11px;
  line-height: 1;
}

.uk-frequency-meta em.is-up {
  color: #46d989;
}

.uk-frequency-meta em.is-down {
  color: #ff6f7d;
}

.uk-inline-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #f4c84d;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.uk-info-support-cards {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.uk-info-support-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(71, 92, 132, 0.48);
  border-radius: 10px;
  background: rgba(22, 30, 49, 0.74);
  padding: 12px 13px;
  text-decoration: none;
}

.uk-info-support-card strong {
  color: #e8eefc;
  font-size: 14px;
}

.uk-info-support-card span {
  color: #9eb1d1;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .uk-info-mini-grid {
    grid-template-columns: 1fr;
  }

  .uk-info-draw-grid > article .uk-event {
    font-size: 1.02rem;
  }

  .uk-frequency-row {
    grid-template-columns: auto minmax(92px, 1fr) auto;
    gap: 8px;
  }
}

.uk-footer {
  margin-top: 34px;
  text-align: center;
  color: #c7cfdb;
  font-size: 14px;
  line-height: 1.6;
}

.uk-footer::before {
  display: none;
}

.uk-footer-topline-wrap {
  width: min(760px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.uk-footer-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(110, 44, 44, 0.45);
  border-radius: 0.5rem;
  background: rgba(36, 17, 17, 0.5);
  font-size: 13px;
}

.uk-footer-toplink {
  color: #f4b516;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.uk-footer-topsep {
  color: rgba(244, 181, 22, 0.65);
}

.uk-footer-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px 16px 18px;
  box-sizing: border-box;
}

.uk-footer-brand {
  display: block;
  margin-bottom: 14px;
  color: #f4b516;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.uk-footer-links,
.uk-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.uk-footer-links {
  margin-bottom: 14px;
}

.uk-footer-link {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: #aebbd4;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}

.uk-footer-link:hover,
.uk-footer-link:focus-visible,
.uk-footer-toplink:hover,
.uk-footer-toplink:focus-visible {
  color: #f4b516;
}

.uk-footer-social {
  margin-bottom: 14px;
  gap: 18px;
}

.uk-footer-social-btn {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  position: relative;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.uk-footer-social-surface {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
  color: #f2f5fb;
}

.uk-footer-social-surface svg {
  width: 19px;
  height: 19px;
  max-width: 19px;
  max-height: 19px;
  flex: 0 0 19px;
}

/* Defensive fallback: keep social icons/buttons stable even if stale cached markup is served. */
.uk-footer-social .uk-footer-social-btn,
.uk-footer-social .Btntwit,
.uk-footer-social .Btninsta {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px;
  min-height: 45px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.uk-footer-social .uk-footer-social-btn svg,
.uk-footer-social .svgContainertwit svg,
.uk-footer-social .svgContainerinsta svg {
  width: 19px !important;
  height: 19px !important;
  max-width: 19px !important;
  max-height: 19px !important;
  flex: 0 0 19px;
}

/* Legacy class fallback (older cached footer markup). */
.Btntwit,
.Btninsta,
.Btn {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  text-decoration: none;
}

.svgContainertwit,
.svgContainerinsta {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Btntwit svg,
.Btninsta svg,
.Btn svg,
.svgContainertwit svg,
.svgContainerinsta svg {
  width: 19px !important;
  height: 19px !important;
  max-width: 19px !important;
  max-height: 19px !important;
}

.uk-footer-social-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.uk-footer-social-btn-x .uk-footer-social-bg {
  background: #181818;
}

.uk-footer-social-btn-instagram .uk-footer-social-bg {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.uk-footer-social-btn:hover .uk-footer-social-bg,
.uk-footer-social-btn:focus-visible .uk-footer-social-bg {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.uk-footer-social-btn:hover .uk-footer-social-surface,
.uk-footer-social-btn:focus-visible .uk-footer-social-surface {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}

.uk-footer-social-btn-x:hover .uk-footer-social-surface,
.uk-footer-social-btn-x:focus-visible .uk-footer-social-surface {
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(4px);
}

.uk-footer-social-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(10, 16, 28, 0.96);
  border: 1px solid var(--uk-border);
  color: #e7edf8;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.uk-footer-social-btn:hover::after,
.uk-footer-social-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.uk-footer-copy {
  margin: 0 0 16px;
  color: #c7cfdb;
  font-size: 13px;
}

.uk-footer-disclaimer {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  width: min(560px, 100%);
  font-size: 12px;
  line-height: 1.7;
  color: #8f9bb2;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.uk-footer-disclaimer p {
  margin: 0 0 6px;
}

.uk-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.uk-footer-disclaimer a {
  color: #c7cfdb;
  text-decoration: underline;
}

.uk-footer-warning {
  color: #ff8f68;
  font-weight: 600;
}
.uk-msg {
  margin-top: 10px;
  font-size: 14px;
}

.uk-utility {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--uk-muted);
  font-size: 13px;
  margin: 8px auto 2px;
  width: min(760px, 100%);
}

.uk-btn-check {
  padding: 8px 12px;
  min-height: 36px;
  font-size: 13px;
}

.uk-faq h3 {
  margin: 0 0 8px;
  color: #f1c44b;
}

.uk-faq details {
  border-top: 1px solid #293650;
  padding-top: 8px;
  margin-top: 8px;
}

.uk-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.uk-faq p {
  margin: 8px 0 0;
  color: var(--uk-muted);
}

.uk-sticky-ad {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
  z-index: 140;
  border: 1px solid #2b3650;
  border-radius: 10px;
  background: rgba(11, 18, 33, 0.96);
  color: #9fb1d0;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  pointer-events: auto;
}

body.uk-modal-open .uk-sticky-ad {
  display: none;
}

.uk-sticky-ad.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.uk-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}

.uk-modal.is-open {
  display: block;
}

.uk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 19, 0.72);
}

.uk-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 20px));
  border: 1px solid #2e3b58;
  border-radius: 14px;
  background: #0f1728;
  padding: 16px;
  box-sizing: border-box;
}

.uk-modal-panel h3 {
  margin: 0 0 6px;
  color: #f1c44b;
}

.uk-modal-panel p {
  margin: 0 0 12px;
  color: var(--uk-muted);
}

.uk-modal-panel form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.uk-modal-panel .uk-input {
  flex: 1 1 280px;
  min-width: 220px;
}

.uk-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid #3a4868;
  background: transparent;
  color: #d8e4fa;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

body.uk-modal-open {
  overflow: hidden;
}



@media (max-width: 768px) {
  .uk49s-app {
    padding-top: 10px;
  }

  .uk-shell {
    display: block;
  }

  .uk-main {
    padding-bottom: calc(var(--uk-mobile-sticky-ad-offset, 0px) + env(safe-area-inset-bottom, 0px));
  }

  .uk-sidebar,
  .uk-rail {
    display: none;
  }

  .uk-nav {
    display: flex;
  }

  .uk-nav {
    position: static;
    top: auto;
    width: calc(100vw - 8px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .admin-bar .uk-nav {
    top: auto;
  }

  .uk-brand {
    font-size: 28px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .uk-brand-logo {
    height: 68px;
    max-width: min(84vw, 320px);
    width: auto;
    object-position: left center;
  }

  .uk-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .uk-menu {
    width: 100%;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .uk-nav.is-menu-open .uk-menu {
    display: flex;
  }

  .uk-menu button {
    flex: 1 1 auto;
    width: 100%;
    text-align: left;
  }

  .uk-grid-49 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .uk-home-hc-wrap {
    justify-content: center;
    gap: 10px;
    margin: 2px auto 8px;
  }

  .uk-home-hc-card {
    width: min(156px, 46vw);
  }

  .uk-filters-end {
    justify-content: flex-end;
  }

  .uk-filters-center {
    justify-content: flex-start;
  }

  .uk-filters-between {
    justify-content: space-between;
    width: 100%;
  }

  .uk-date-toolbar {
    margin: 0 0 8px;
    gap: 8px;
  }

  .uk-date-toolbar-right {
    gap: 8px;
  }

  .uk-date-toolbar .uk-switch {
    font-size: 13px;
    gap: 8px;
    min-height: 26px;
  }

  .uk-cards-wrap {
    width: min(420px, 100%);
    padding-left: 6px;
    padding-right: 6px;
  }

  .uk-date-block {
    padding: 10px;
  }


  .uk-balls-wrap {
    gap: 4px;
    flex-wrap: wrap;
  }

  .uk-balls {
    gap: 4px;
    flex-wrap: wrap;
  }

  .uk-premium-grid {
    grid-template-columns: 1fr;
  }

  .uk-premium-head {
    flex-direction: column;
    gap: 6px;
  }


  /* Keep Dashboard/Historical draw balls on one row for mobile readability. */
  .uk-date-content .uk-balls-wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .uk-date-content .uk-balls-wrap::-webkit-scrollbar {
    display: none;
  }

  .uk-date-content .uk-balls {
    flex-wrap: nowrap;
  }

  /* Smart Picker bucket and score cards should wrap into view on mobile. */
  .uk-date-content .uk-smart-bucket-grid,
  .uk-date-content .uk-smart-score-card .uk-balls {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .uk-comments-form-meta {
    flex-wrap: wrap;
  }

  
.uk-comments-submit-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
}

  .uk-card {
    padding: 12px;
    width: 100%;
  }

  .uk-card.uk-ad {
    width: 100%;
  }

  .uk-date {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    align-self: flex-start;
  }

  .uk-utility {
    font-size: 12px;
  }

  .uk-btn-check {
    width: 100%;
  }

  .uk-modal-panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 14px 14px 0 0;
    padding: 16px 14px 20px;
  }

  .uk-modal-panel form {
    flex-direction: column;
    align-items: stretch;
  }

  .uk-modal-panel .uk-input {
    min-width: 0;
    width: 100%;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .uk49s-app {
    padding-top: 12px;
  }

  .uk-nav {
    display: none;
  }

  .admin-bar .uk-nav {
    top: auto;
  }

  .uk-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .uk-rail {
    display: none;
  }
}

@media (min-width: 769px) {
  .uk-nav {
    display: none;
  }

  .uk-sticky-ad {
    display: none;
  }
}

@media (min-width: 1025px) {
  .uk-nav {
    position: sticky;
    top: 0;
  }

  .admin-bar .uk-nav {
    top: 0;
  }
}

/* Mobile-first refinements */
@media (max-width: 768px) {
.uk49s-app {
  padding-top: 10px;
  padding-left: 8px;
  padding-right: 8px;
}

.uk-wrap {
  width: min(100%, 1360px);
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.uk-shell {
  display: block;
}

.uk-sidebar,
.uk-rail {
  display: none;
}

.uk-nav {
  display: flex;
  position: static;
  top: auto;
  width: calc(100vw - 8px);
  margin: 0 auto 16px;
  padding: 10px 12px;
  border-radius: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.uk-brand {
  font-size: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

.uk-brand-logo {
  height: 58px;
  max-width: min(82vw, 280px);
  width: auto;
}

.uk-menu-toggle {
  display: inline-block;
  margin-left: auto;
}

.uk-menu {
  width: 100%;
  display: none;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
}

.uk-nav.is-menu-open .uk-menu {
  display: flex;
}

.uk-menu button {
  width: 100%;
  text-align: left;
}

.uk-header {
  margin-bottom: 14px;
}

.uk-header h1 {
  font-size: clamp(30px, 8vw, 44px);
}

.uk-header p {
  font-size: 14px;
}

.uk-main .uk-cards-wrap,
.uk-cards-wrap {
  width: min(420px, 100%);
  padding-left: 6px;
  padding-right: 6px;
}

.uk-card {
  width: 100%;
  padding: 12px;
}

.uk-main .uk-card.uk-about,
.uk-main .uk-card.uk-contact,
.uk-main .uk-card.uk-policy,
.uk-main .uk-card.uk-terms {
  width: min(760px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.uk-card.uk-ad {
  width: 100%;
  color: #7f91b1;
}

.uk-filters-between {
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}

.uk-filters-between .uk-switch {
  margin-left: auto;
}

.uk-btn-check {
  min-height: 42px;
}


}
@media (min-width: 769px) {
  .uk49s-app {
    padding-left: 12px;
    padding-right: 12px;
  }

  .uk-nav {
    display: none;
  }

  .uk-shell {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .uk-sidebar {
    display: block;
    position: sticky;
    top: 16px;
  }

  .uk-main .uk-cards-wrap,
  .uk-cards-wrap {
    width: min(760px, 100%);
    padding-left: 10px;
    padding-right: 10px;
  }

  .uk-filters-between {
    justify-content: flex-start;
    gap: 12px;
  }

  .uk-filters-between .uk-switch {
    margin-left: 0;
  }

  .uk-vip-event-grid {
    grid-template-columns: 1fr;
  }

  .uk-smart-spinner-lane {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .uk-shell {
    display: block;
    position: relative;
  }

  .uk-sidebar,
  .uk-rail {
    display: block;
    position: fixed;
    top: 14px;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 30;
  }

  .uk-rail {
    display: none;
  }

  .uk-sidebar::-webkit-scrollbar,
  .uk-rail::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .uk-sidebar {
    left: calc((100vw - min(1360px, 100vw)) / 2 + 10px);
    width: 220px;
  }

  .uk-rail {
    right: calc((100vw - min(1360px, 100vw)) / 2 + 16px);
    width: 220px;
  }

  .uk-main {
    margin-left: calc(220px + 18px);
    margin-right: 0;
    min-width: 0;
  }

  .uk-main .uk-cards-wrap,
  .uk-cards-wrap {
    width: min(740px, 100%);
  }

  .uk-rail-card {
    min-height: 120px;
    color: #7e90b2;
    border-color: #23304a;
    background: rgba(15, 23, 36, 0.72);
  }

  .uk-rail-card.uk-rail-card-tall {
    min-height: 419px;
    height: 419px;
  }

}

/* PWA-only behavior: native-app feel without affecting browser mode. */
html.uk-pwa-standalone,
html.uk-pwa-standalone body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior-y: none;
}

html.uk-pwa-standalone::-webkit-scrollbar,
html.uk-pwa-standalone body::-webkit-scrollbar,
html.uk-pwa-standalone .uk-main::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.uk-pwa-install-prompt {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1600;
  border: 1px solid #314365;
  border-radius: 12px;
  background: rgba(8, 19, 42, 0.97);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uk-pwa-install-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.uk-pwa-install-copy strong {
  display: block;
  color: #f4b516;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.uk-pwa-install-copy p {
  margin: 3px 0 0;
  color: #cfddf6;
  font-size: 12px;
  line-height: 1.35;
}

.uk-pwa-install-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.uk-pwa-install-btn {
  border: 1px solid #42557a;
  background: transparent;
  color: #d9e6ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  min-height: 34px;
  cursor: pointer;
}

.uk-pwa-install-btn.is-primary {
  border-color: transparent;
  background: linear-gradient(120deg, #f4b516, #de9f11);
  color: #12203e;
}

html.uk-pwa-standalone .uk-pwa-install-prompt,
body.uk-pwa-standalone .uk-pwa-install-prompt {
  display: none !important;
}

@media (min-width: 1025px) {
  .uk-pwa-install-prompt {
    display: none;
  }
}

@media (display-mode: standalone), (display-mode: fullscreen) {
  html,
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .uk49s-app {
    min-height: 100dvh;
  }
}

.uk-draw-heat {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.uk-draw-heat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  border: 1px solid rgba(53, 78, 118, 0.78);
  background: rgba(14, 26, 46, 0.62);
  color: #c2d4ef;
}

.uk-draw-heat-chip.is-hot {
  border-color: rgba(186, 96, 45, 0.9);
  color: #ffd9ba;
  background: rgba(72, 34, 18, 0.45);
}

.uk-draw-heat-chip.is-cold {
  border-color: rgba(63, 111, 180, 0.9);
  color: #cfe8ff;
  background: rgba(20, 41, 74, 0.45);
}

.uk-draw-heat-icon {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 768px) {
  .uk-draw-heat {
    gap: 5px;
  }

  .uk-draw-heat-chip {
    font-size: 10.5px;
    padding: 3px 7px;
  }
}

.uk-premium-bucket-grid {
  gap: 6px;
}

.uk-prem-gen-card,
.uk-prem-my-numbers {
  border-color: #2e3f61;
}

.uk-prem-gen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.uk-prem-gen-head h3 {
  margin: 0;
}

.uk-prem-gen-limit {
  font-size: 12px;
  color: #9db0d1;
}

.uk-prem-gen-note {
  margin: 0 0 10px;
}

.uk-prem-gen-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.uk-prem-gen-mode-btn {
  border: 1px solid #314b76;
  background: rgba(13, 23, 42, 0.6);
  color: #d4e2f8;
  border-radius: 10px;
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
  text-align: left;
}

.uk-prem-gen-mode-btn .uk-btn-icon,
.uk-prem-clear-btn .uk-btn-icon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}

.uk-prem-gen-mode-btn.is-active {
  border-color: rgba(244, 180, 22, 0.75);
  background: rgba(91, 69, 17, 0.35);
  color: #ffe4a3;
}

.uk-prem-gen-count-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #b8c9e7;
}

.uk-prem-gen-output-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #b8c9e7;
}

.uk-prem-gen-output-btn {
  min-width: 34px;
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid #355079;
  background: rgba(12, 22, 40, 0.65);
  color: #d7e6ff;
  font-weight: 600;
}

.uk-prem-gen-output-btn.is-active {
  border-color: rgba(244, 180, 22, 0.78);
  color: #ffd76b;
}

.uk-prem-gen-count-btn {
  min-width: 34px;
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid #355079;
  background: rgba(12, 22, 40, 0.65);
  color: #d7e6ff;
  font-weight: 600;
}

.uk-prem-gen-count-btn.is-active {
  border-color: rgba(244, 180, 22, 0.78);
  color: #ffd76b;
}

.uk-prem-gen-count-btn:disabled {
  opacity: 0.4;
}

.uk-prem-gen-bucket {
  margin-top: 8px;
}

.uk-prem-gen-bucket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.uk-prem-gen-bucket-head h4 {
  margin: 0;
  font-size: 13px;
}

.uk-prem-gen-bucket-head span {
  font-size: 12px;
  color: #9db0d1;
}

.uk-prem-gen-grid {
  flex-wrap: wrap;
}

.uk-prem-gen-pick {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
}

.uk-prem-gen-pick .uk-ball {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.uk-prem-gen-pick.is-selected .uk-ball {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 0 2px rgba(244, 180, 22, 0.45), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.uk-prem-gen-bonus {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #c8d8f4;
}

.uk-prem-gen-bonus-picker {
  margin-top: 8px;
}

.uk-prem-gen-bonus-picker > span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #9db0d1;
}

.uk-prem-gen-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uk-prem-gen-actions .uk-btn {
  flex: 1 1 180px;
}

.uk-prem-gen-actions .uk-btn[disabled] {
  opacity: 0.45;
}

.uk-prem-gen-feedback {
  margin-top: 8px;
  min-height: 18px;
  font-size: 12px;
  color: #93a9cc;
}

.uk-prem-gen-feedback.is-success {
  color: #7fe0aa;
}

.uk-prem-gen-feedback.is-error {
  color: #ff9ea8;
}

.uk-prem-spinner-intro p {
  margin: 4px 0 0;
}

.uk-prem-gen-modes-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.uk-prem-gen-modes-inline .uk-prem-gen-mode-btn {
  flex: 0 0 auto;
  min-width: 104px;
  text-align: center;
  font-weight: 700;
}

.uk-prem-gen-panel {
  border: 1px solid var(--uk-border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.86) 0%, rgba(15, 22, 36, 0.88) 100%);
  padding: 14px;
}

.uk-prem-gen-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.uk-prem-clear-btn.is-danger {
  color: #ff8b8b;
  border-color: rgba(191, 88, 88, 0.55);
}

.uk-prem-clear-btn.is-danger[disabled] {
  color: #8c6b6b;
}

.uk-prem-pot-grid {
  gap: 8px;
}

.uk-prem-pot-ball {
  cursor: pointer;
}

.uk-prem-pot-ball .uk-ball {
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.uk-prem-pot-ball:hover .uk-ball,
.uk-prem-pot-ball:focus-visible .uk-ball {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(244, 180, 22, 0.22), 0 6px 14px rgba(0, 0, 0, 0.28);
}

.uk-prem-pot-empty {
  margin: 0;
  padding: 6px 0 2px;
}

.uk-prem-gen-settings-card .uk-prem-gen-head {
  margin-bottom: 12px;
}

.uk-prem-gen-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.uk-prem-gen-select-wrap {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.uk-prem-gen-select-wrap span {
  font-size: 12px;
  color: #a9bbd8;
  font-weight: 600;
}

.uk-prem-gen-select-wrap .uk-select {
  min-height: 44px;
}

.uk-prem-gen-settings-grid .uk-prem-gen-actions {
  margin-top: 0;
  min-width: 160px;
}

.uk-prem-gen-settings-grid .uk-prem-gen-actions .uk-btn {
  min-height: 44px;
}

.uk-prem-generator-help h3 {
  margin: 0 0 12px;
}

.uk-prem-generator-help-list {
  margin: 0;
  padding-left: 18px;
  color: #c8d6ee;
}

.uk-prem-generator-help-list li + li {
  margin-top: 8px;
}

.uk-prem-generator-help-divider {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--uk-border);
}

.uk-prem-generator-disclaimer {
  margin: 0;
  font-size: 12px;
  color: #9aa8c2;
}

.uk-prem-clear-btn,
.uk-prem-my-actions button {
  border: 1px solid #355079;
  background: rgba(12, 22, 40, 0.64);
  color: #d9e7fd;
  border-radius: 8px;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.uk-prem-clear-btn[disabled] {
  opacity: 0.4;
}

.uk-prem-my-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-prem-my-item {
  border: 1px solid #2c3f63;
  border-radius: 10px;
  padding: 9px;
  background: rgba(13, 24, 48, 0.58);
}

.uk-prem-my-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.uk-prem-my-top strong {
  color: #dfeaff;
  font-size: 13px;
}

.uk-prem-my-top span {
  color: #93a9cc;
  font-size: 12px;
}

.uk-prem-my-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .uk-prem-gen-modes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.uk-prem-gen-hint {
  margin: 0 0 6px;
  font-size: 12px;
}

/* Comments polish: clearer spacing and white posted comment cards */
.uk-comments-card {
  padding: 14px;
}

.uk-comments-list {
  margin-top: 12px;
  padding: 2px 0 4px;
  gap: 10px;
}

.uk-comment-item {
  padding: 5px;
  border: 1px solid #d7deea;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 12, 22, 0.12);
}


.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-comment-name {
  color: #000000;
}

.uk-comment-time {
  color: #000000;
}

.uk-comment-message {
  color: #000000;
}

.uk-comments-feedback {
  margin-top: 10px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .uk-comments-card {
    padding: 12px;
  }

  .uk-comment-item {
    padding: 5px;
  }
}

/* Lightweight comment threading */
.uk-comment-actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-start;
}

.uk-comment-reply-btn {
  border: 1px solid #355079;
  background: rgba(12, 22, 40, 0.64);
  color: #d9e7fd;
  border-radius: 8px;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.uk-comment-reply-form {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-comment-reply-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.uk-comment-replies {
  margin-top: 8px;
  padding-left: 16px;
  border-left: 2px solid #dbe4f2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-comment-item.is-reply {
  background: #f7f9ff;
}

@media (max-width: 768px) {
  .uk-comment-replies {
    padding-left: 12px;
  }
}

/* Threaded reply visual refinement */
.uk-comment-item {
  align-items: stretch;
}

.uk-comment-body {
  padding: 6px 8px 6px 2px;
}

.uk-comment-actions {
  margin-top: 8px;
}

.uk-comment-reply-btn {
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #b8c7de;
  background: #eef3fb;
  color: #29466f;
  font-weight: 600;
  line-height: 24px;
}

.uk-comment-reply-btn:hover {
  background: #e6edf9;
  border-color: #9fb3d2;
}

.uk-comment-reply-form {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d8e1ef;
  border-radius: 12px;
  background: #f7faff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.uk-comment-reply-form .uk-input,
.uk-comment-reply-form .uk-textarea {
  background: #ffffff;
  border: 1px solid #c7d4e9;
  color: #1a2f4d;
}

.uk-comment-reply-form .uk-input::placeholder,
.uk-comment-reply-form .uk-textarea::placeholder {
  color: #6f84a5;
}

.uk-comment-reply-form .uk-comments-textarea {
  min-height: 90px;
}

.uk-comment-reply-actions {
  margin-left: auto;
}

.uk-comment-reply-actions .uk-btn {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
}

.uk-comment-reply-actions .uk-btn-secondary {
  border: 1px solid #b9c9e2;
  background: #eef3fb;
  color: #29466f;
}

.uk-comment-replies {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 2px solid #c8d7ec;
}

.uk-comment-item.is-reply {
  background: #fcfdff;
  border-color: #dfe7f4;
}

@media (max-width: 768px) {
  .uk-comment-body {
    padding: 4px 4px 4px 0;
  }

  .uk-comment-reply-form {
    padding: 8px;
  }

  .uk-comment-reply-form .uk-comments-textarea {
    min-height: 80px;
  }
}

/* Comments Experience Pass: unified tokens + interaction polish + mobile-first tightening */
.uk-comments-card {
  --cmt-surface: #ffffff;
  --cmt-surface-soft: #f7faff;
  --cmt-border: #d8e2f0;
  --cmt-text: #10233f;
  --cmt-text-muted: #5e7392;
  --cmt-accent: #2b4f7f;
  --cmt-accent-soft: #edf3fd;
  --cmt-focus: rgba(43, 79, 127, 0.22);
  padding: 12px;
  border-color: #2e3f61;
}

.uk-comments-list {
  margin-top: 10px;
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uk-comment-item {
  align-items: stretch;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--cmt-border);
  border-radius: 12px;
  background: var(--cmt-surface);
  box-shadow: 0 4px 14px rgba(9, 18, 34, 0.1);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.uk-comment-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(9, 18, 34, 0.14);
  border-color: #c8d6ea;
}


.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-comment-body {
  padding: 2px 2px 2px 0;
}

.uk-comment-name {
  color: var(--cmt-text);
  font-weight: 700;
}

.uk-comment-time {
  color: var(--cmt-text-muted);
}

.uk-comment-message {
  margin-top: 5px;
  color: var(--cmt-text);
  line-height: 1.5;
}

.uk-comment-actions {
  margin-top: 8px;
}

.uk-comment-reply-btn {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #c0d0e6;
  background: var(--cmt-accent-soft);
  color: var(--cmt-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.uk-comment-reply-btn:hover {
  background: #e4eefc;
  border-color: #a8bddc;
  transform: translateY(-1px);
}

.uk-comment-reply-btn[aria-expanded="true"] {
  background: #2b4f7f;
  border-color: #2b4f7f;
  color: #ffffff;
}

.uk-comments-form .uk-input,
.uk-comments-form .uk-textarea,
.uk-comment-reply-form .uk-input,
.uk-comment-reply-form .uk-textarea {
  border-radius: 10px;
  border: 1px solid #c5d3e8;
  background: #ffffff;
  color: #162c49;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.uk-comments-form .uk-input::placeholder,
.uk-comments-form .uk-textarea::placeholder,
.uk-comment-reply-form .uk-input::placeholder,
.uk-comment-reply-form .uk-textarea::placeholder {
  color: #6e83a3;
}

.uk-comments-form .uk-input:focus,
.uk-comments-form .uk-textarea:focus,
.uk-comment-reply-form .uk-input:focus,
.uk-comment-reply-form .uk-textarea:focus,
.uk-comment-reply-btn:focus-visible,
.uk-comment-reply-actions .uk-btn:focus-visible {
  outline: none;
  border-color: #89a7d0;
  box-shadow: 0 0 0 3px var(--cmt-focus);
}

.uk-comment-reply-form {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d6e1f0;
  border-radius: 12px;
  background: var(--cmt-surface-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  animation: uk-comment-reply-enter .2s ease;
}

.uk-comment-reply-actions {
  margin-left: auto;
  display: inline-flex;
  gap: 8px;
}

.uk-comment-reply-actions .uk-btn {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
}

.uk-comment-replies {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid #c9d8ec;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-comment-item.is-reply {
  background: #fcfdff;
  border-color: #dbe6f4;
}

.uk-comments-feedback {
  margin-top: 10px;
  min-height: 18px;
  transition: color .15s ease;
}

@keyframes uk-comment-reply-enter {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .uk-comments-card {
    padding: 10px;
  }

  .uk-comments-list {
    gap: 8px;
  }

  .uk-comment-item {
    padding: 6px;
    border-radius: 10px;
  }

  
.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: block;
}

  .uk-comment-reply-form {
    padding: 8px;
    border-radius: 10px;
  }

  .uk-comment-reply-form .uk-comments-textarea {
    min-height: 78px;
  }

  .uk-comment-replies {
    padding-left: 10px;
  }

  .uk-comment-reply-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

body.uk-pwa-standalone .uk-comments-card {
  padding: 9px;
}

body.uk-pwa-standalone .uk-comment-item {
  padding: 6px;
}

/* Premium My Numbers: visual refinement */
.uk-prem-my-numbers {
  border-color: #334868;
  background: linear-gradient(180deg, rgba(16, 29, 52, 0.92) 0%, rgba(12, 23, 43, 0.9) 100%);
  padding: 14px;
}

.uk-prem-my-numbers .uk-prem-gen-head {
  margin-bottom: 10px;
}

.uk-prem-my-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uk-prem-my-item {
  border: 1px solid rgba(63, 90, 132, 0.74);
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(19, 33, 58, 0.88) 0%, rgba(15, 28, 50, 0.82) 100%);
  box-shadow: 0 8px 18px rgba(5, 10, 20, 0.26);
}

.uk-prem-my-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.uk-prem-my-title strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e7f0ff;
  border: 1px solid rgba(83, 113, 158, 0.78);
  background: rgba(16, 31, 57, 0.7);
}

.uk-prem-my-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.uk-prem-my-mode,
.uk-prem-my-total {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.uk-prem-my-mode {
  color: #9fb6d9;
  border: 1px solid rgba(71, 97, 140, 0.7);
  background: rgba(13, 24, 44, 0.58);
}

.uk-prem-my-total {
  color: #ffe39a;
  border: 1px solid rgba(212, 156, 34, 0.45);
  background: rgba(86, 66, 15, 0.42);
  font-weight: 700;
}

.uk-prem-remove-btn {
  border: 1px solid rgba(89, 113, 150, 0.78);
  background: rgba(16, 31, 57, 0.62);
  color: #d7e6ff;
  border-radius: 9px;
  min-height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
}

.uk-prem-remove-btn:hover {
  border-color: rgba(122, 145, 182, 0.95);
  background: rgba(24, 40, 69, 0.78);
}

.uk-prem-remove-btn-icon {
  min-width: 32px;
  width: 32px;
  padding: 0;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.uk-prem-remove-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 140, 198, 0.25);
}

.uk-prem-my-balls {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.uk-prem-my-balls .uk-ball {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 13px;
}

.uk-prem-my-balls .uk-bonus-wrap {
  margin-left: 1px;
}

@media (max-width: 768px) {
  .uk-prem-my-numbers {
    padding: 11px;
  }

  .uk-prem-gen-modes-inline .uk-prem-gen-mode-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .uk-prem-gen-panel {
    padding: 12px;
  }

  .uk-prem-gen-settings-grid {
    grid-template-columns: 1fr;
  }

  .uk-prem-gen-settings-grid .uk-prem-gen-actions {
    min-width: 0;
  }

  .uk-prem-gen-inline-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .uk-prem-my-item {
    padding: 9px;
    border-radius: 11px;
  }

  .uk-prem-my-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .uk-prem-my-right {
    width: 100%;
    justify-content: flex-start;
  }

  .uk-prem-my-balls {
    margin-top: 8px;
    gap: 6px;
  }
}
/* Premium My Numbers: compact grid tune */
.uk-prem-my-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.uk-prem-my-item {
  border: 0;
  border-bottom: 1px solid rgba(72, 103, 149, 0.78);
  border-radius: 0;
  padding: 0 0 7px;
  background: transparent;
  box-shadow: none;
}

.uk-prem-my-top {
  padding: 5px 5px 0;
}

.uk-prem-my-title strong,
.uk-prem-my-mode,
.uk-prem-my-total {
  border: 0;
}

.uk-prem-my-title strong {
  background: transparent;
  padding: 0;
  min-height: 20px;
}

.uk-prem-my-mode {
  background: transparent;
}

.uk-prem-my-total {
  background: rgba(86, 66, 15, 0.34);
}

.uk-prem-my-balls {
  padding: 0 0 7px 7px;
  margin-top: 6px;
  min-height: 40px;
  flex-wrap: nowrap;
}

.uk-prem-my-balls .uk-ball {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  border-width: 4px;
}

.uk-prem-my-balls .uk-bonus-wrap .uk-ball {
  width: 32px;
  height: 32px;
}

.uk-prem-remove-btn {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 768px) {
  .uk-prem-my-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .uk-prem-my-item {
    padding: 0 0 6px;
  }

  .uk-prem-my-top {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 5px 5px 0;
  }

  .uk-prem-my-right {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
    gap: 5px;
  }

  .uk-prem-my-title strong {
    font-size: 12px;
  }

  .uk-prem-my-mode,
  .uk-prem-my-total {
    font-size: 10.5px;
    min-height: 20px;
    padding: 0 7px;
  }

  .uk-prem-my-balls {
    padding: 0 0 7px 7px;
    min-height: 36px;
    gap: 5px;
  }

  .uk-prem-my-balls .uk-ball {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 16px;
    border-width: 4px;
  }
}
\n
/* Premium view IA refresh: Lounge / Stats / Spinner */
.uk-header .is-premium-title .uk-inline-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.uk-premium-hub-card {
  border-color: #2e3f61;
  padding: 12px;
}

.uk-premium-hub-layout {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.uk-prem-main-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 8px;
}

.uk-prem-main-tab {
  border: 1px solid #314b76;
  background: rgba(13, 23, 42, 0.62);
  color: #cad9f3;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.uk-prem-main-tab:hover {
  border-color: #3f5b8a;
  background: rgba(20, 35, 62, 0.78);
}

.uk-prem-main-tab.is-active {
  border-color: rgba(244, 180, 22, 0.82);
  background: rgba(91, 69, 17, 0.36);
  color: #ffe4a3;
}

.uk-premium-hub-content {
  min-width: 0;
}

.uk-premium-day-tabs {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.uk-prem-stats-card {
  border-color: #2f4267;
  background: linear-gradient(180deg, rgba(16, 30, 54, 0.9) 0%, rgba(12, 24, 44, 0.88) 100%);
}

.uk-prem-stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.uk-prem-stats-head h3 {
  margin: 0;
  color: #f4b516;
  font-size: 18px;
}

.uk-prem-stats-head span {
  font-size: 12px;
  color: #9db0d1;
}

.uk-prem-exclusive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.uk-prem-exclusive-item {
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 10px;
  background: rgba(11, 22, 40, 0.56);
}

.uk-prem-exclusive-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
}

.uk-prem-exclusive-top strong {
  color: #dde8fb;
  font-size: 14px;
}

.uk-prem-match-pill {
  border: 1px solid rgba(244, 180, 22, 0.62);
  background: rgba(87, 66, 14, 0.44);
  color: #ffd56a;
  border-radius: 999px;
  min-height: 24px;
  padding: 0 10px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.uk-prem-hotcold-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-prem-stat-ball-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.uk-prem-stat-ball-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.uk-prem-stat-ball-item span {
  font-size: 11px;
  color: #9db0d1;
}

.uk-prem-pair-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-prem-pair-row {
  display: grid;
  grid-template-columns: 20px auto 1fr 38px;
  align-items: center;
  gap: 8px;
}

.uk-prem-pair-rank {
  color: #99abc9;
  font-size: 12px;
}

.uk-prem-pair-balls {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.uk-prem-pair-bar,
.uk-prem-freq-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 61, 91, 0.72);
  overflow: hidden;
}

.uk-prem-pair-bar span,
.uk-prem-freq-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f3bf26 0%, #ffdd72 100%);
}

.uk-prem-pair-score,
.uk-prem-freq-val {
  text-align: right;
  color: #a8bbd9;
  font-size: 12px;
}

.uk-prem-freq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.uk-prem-freq-grid h4 {
  margin: 0 0 8px;
  color: #dce7fb;
  font-size: 13px;
}

.uk-prem-freq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uk-prem-freq-row {
  display: grid;
  grid-template-columns: auto 1fr 40px;
  align-items: center;
  gap: 8px;
}

.uk-prem-spinner-intro h3 {
  margin: 0 0 6px;
  color: #f4b516;
}

@media (max-width: 1024px) {
  .uk-premium-hub-layout {
    grid-template-columns: 1fr;
  }

  .uk-prem-main-tabs {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .uk-prem-main-tab {
    flex: 1 1 120px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .uk-premium-hub-card {
    padding: 10px;
  }

  .uk-prem-hotcold-grid,
  .uk-prem-freq-grid {
    grid-template-columns: 1fr;
  }

  .uk-prem-stat-ball-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .uk-prem-exclusive-item,
  .uk-prem-stats-card {
    padding: 9px;
  }

  .uk-prem-exclusive-top strong {
    font-size: 13px;
  }

  .uk-prem-match-pill {
    font-size: 11px;
    min-height: 22px;
    padding: 0 8px;
  }

  .uk-prem-pair-row {
    grid-template-columns: 16px auto 1fr 34px;
    gap: 6px;
  }

  .uk-prem-stat-ball-item .uk-ball,
  .uk-prem-pair-balls .uk-ball,
  .uk-prem-freq-ball .uk-ball {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-width: 2px;
  }
}
/* Premium exclusive card refinements */
.uk-prem-exclusive-top strong {
  font-weight: 400;
}

.uk-prem-exclusive-item {
  margin: 6px 0;
}

.uk-prem-match-pill {
  border: 0;
  background: transparent;
  color: #a8bbd9;
  padding: 0;
  border-radius: 0;
  min-height: 0;
  font-weight: 500;
}
/* Premium Stats UI polish pass */
.uk-prem-stats-head {
  margin-bottom: 10px;
}

.uk-prem-stats-head h3 {
  color: #f1c24a;
  font-size: 17px;
  line-height: 1.2;
}

.uk-prem-stats-head span {
  color: #bccce6;
  font-size: 12px;
  font-weight: 500;
}

.uk-prem-stats-head.is-hot h3 {
  color: #f5c246;
}

.uk-prem-stats-head.is-cold h3 {
  color: #8bc0ff;
}

.uk-prem-stats-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 12px;
  margin: 0 0 8px;
  color: #b5c6e2;
  font-size: 12px;
}

.uk-prem-stats-note {
  margin: 0 0 6px;
  color: #9fb2d2;
  font-size: 12px;
  line-height: 1.45;
}

.uk-prem-legend {
  margin: 0 0 12px;
  color: #b7c8e3;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uk-prem-legend span {
  color: #f4bf2d;
  font-weight: 700;
}

.uk-prem-exclusive-list {
  gap: 0;
  border-top: 1px solid #2f4267;
}

.uk-prem-exclusive-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #2f4267;
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
}

.uk-prem-exclusive-item:last-child {
  border-bottom: 0;
}

.uk-prem-exclusive-top {
  margin-bottom: 9px;
  align-items: baseline;
}

.uk-prem-exclusive-top strong {
  color: #e6efff;
  letter-spacing: 0.1px;
}

.uk-prem-match-pill {
  color: #c8d7ee;
  font-size: 12px;
  font-weight: 500;
}

.uk-prem-stat-ball-item {
  gap: 5px;
}

.uk-prem-stat-ball-item span {
  color: #c0d0e8;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}

.uk-prem-hotcold-grid {
  margin-top: 12px;
}
.uk-stats-premium-feed .uk-prem-hotcold-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.uk-prem-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.uk-prem-pattern-grid .uk-vip-potential-proof {
  margin-top: 12px;
}

.uk-stats-recurring-tabs {
  margin-bottom: 10px;
}

.uk-prem-recurring-stack {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.uk-prem-recurring-stack::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.uk-prem-recurring-stack::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(127, 146, 176, 0.75);
}

.uk-prem-recurring-subcard {
  flex: 0 0 min(100%, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 12px;
}

.uk-prem-recurring-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #9db0d1;
  padding: 5px 10px;
}

.uk-prem-recurring-subhead strong {
  color: #dce7fb;
  font-weight: 600;
}

.uk-prem-recurring-list-scroll {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 6px 4px 2px;
}

.uk-prem-recurring-list-scroll::-webkit-scrollbar {
  width: 8px;
}

.uk-prem-recurring-list-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(127, 146, 176, 0.75);
}

.uk-prem-recurring-row {
  grid-template-columns: 20px auto 72px;
}

.uk-prem-recurring-row .uk-prem-pair-bar {
  display: none;
}

.uk-prem-recurring-list-scroll .uk-prem-pair-row {
  padding: 2px 6px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .uk-prem-recurring-subcard {
    flex-basis: 100%;
  }

  .uk-prem-recurring-list-scroll {
    max-height: 320px;
    padding-right: 4px;
  }

  .uk-prem-recurring-row {
    grid-template-columns: 16px auto 62px;
  }
}

.uk-prem-pair-list,
.uk-prem-freq-list {
  gap: 10px;
}

@media (max-width: 768px) {
  .uk-prem-stats-head {
    align-items: flex-start;
  }

  .uk-prem-stats-head h3 {
    font-size: 16px;
  }

  .uk-prem-stats-meta {
    flex-direction: column;
    gap: 4px;
  }

  .uk-prem-stats-note,
  .uk-prem-legend {
    font-size: 11px;
  }

  .uk-prem-exclusive-item {
    padding: 10px 0;
  }
}
/* Premium fine-tune adjustments (requested) */
.uk-balls.uk-premium-bucket-grid {
  padding-bottom: 5px;
}

.uk-prem-exclusive-top {
  padding-top: 5px;
}

.uk-prem-stats-meta {
  justify-content: flex-start;
}

.uk-prem-hotcold-grid .uk-prem-stats-head h3 {
  color: #dce7fb;
}

.uk-prem-hotcold-grid .uk-prem-stats-head span,
.uk-prem-hotcold-grid .uk-prem-stat-ball-item span {
  color: #9db0d1;
}

.uk-prem-stats-head span {
  line-height: 1.35;
}

.uk-prem-pair-row {
  grid-template-columns: 20px auto minmax(90px, 180px) 72px;
}

.uk-prem-pair-bar {
  max-width: 180px;
}

.uk-prem-pair-score {
  min-width: 72px;
  white-space: nowrap;
}

.uk-header-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.uk-header-premium p {
  width: min(760px, 100%);
  max-width: 100%;
  margin: 6px auto 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.uk-premium-title-icon {
  padding-top: 6px;
  margin-bottom: 8px;
}

.uk-premium-title-icon .uk-inline-icon-wrap {
  display: inline-flex;
}

.uk-premium-title-icon .uk-inline-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.uk-premium-title-text {
  margin: 0;
  background: linear-gradient(135deg, #fc3, #ff9500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .uk-prem-pair-row {
    grid-template-columns: 16px auto minmax(72px, 120px) 62px;
  }

  .uk-prem-pair-bar {
    max-width: 120px;
  }

  .uk-prem-pair-score {
    min-width: 62px;
  }
}
/* KillCritic completion: hot/cold card clarity and rhythm */
.uk-prem-hotcold-grid {
  gap: 12px;
}

.uk-prem-hotcold-card {
  border-color: rgba(83, 111, 149, 0.5);
  background: linear-gradient(180deg, rgba(14, 26, 46, 0.78) 0%, rgba(11, 21, 39, 0.76) 100%);
  box-shadow: none;
}

.uk-prem-hotcold-card .uk-prem-stats-head {
  margin-bottom: 10px;
}

.uk-prem-hotcold-card .uk-prem-stats-head.is-hot h3 {
  color: #f2c24b;
}

.uk-prem-hotcold-card .uk-prem-stats-head.is-cold h3 {
  color: #86bfff;
}

.uk-prem-hotcold-card .uk-prem-stats-head span {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.uk-prem-hotcold-card .uk-prem-stats-head.is-hot span {
  color: #e7c888;
}

.uk-prem-hotcold-card .uk-prem-stats-head.is-cold span {
  color: #a7c8ee;
}

.uk-prem-hotcold-card .uk-prem-stat-ball-grid {
  gap: 10px 8px;
}

.uk-prem-hotcold-card .uk-prem-stat-ball-item {
  gap: 4px;
}

.uk-prem-hotcold-card .uk-prem-stat-ball-item span {
  min-height: 14px;
  color: #a9bedf;
  font-size: 10.5px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .uk-stats-panel {
    gap: 12px;
  }

  .uk-prem-hotcold-grid,
  .uk-stats-premium-feed .uk-prem-hotcold-grid,
  .uk-prem-pattern-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .uk-prem-hotcold-card,
  .uk-prem-pattern-grid > .uk-card,
  .uk-prem-pattern-grid > .uk-prem-combo-proof,
  .uk-prem-pattern-grid > .uk-vip-potential-proof {
    width: 100%;
  }

  .uk-prem-hotcold-card .uk-prem-stats-head {
    margin-bottom: 8px;
  }

  .uk-prem-hotcold-card .uk-prem-stat-ball-grid {
    gap: 8px 6px;
  }

  .uk-prem-hotcold-card .uk-prem-stat-ball-item span {
    font-size: 10px;
  }
}
/* Draw Card System polish: dashboard + historical + event views */
.uk-date-summary {
  align-items: flex-start;
}

.uk-date-count {
  top: 0;
  opacity: 0.88;
}

.uk-date-content .uk-draw-row + .uk-draw-row {
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px solid rgba(41, 60, 92, 0.35);
}

.uk-event-row {
  gap: 6px;
  margin-bottom: 8px;
}

.uk-event-actions {
  margin-left: 4px;
}

.uk-meta-pill {
  opacity: 0.78;
  border-color: rgba(49, 73, 110, 0.72);
  background: rgba(18, 30, 51, 0.56);
}

.uk-ball.is-bonus {
  box-shadow: 0 0 8px #ffc61a66, 0 2px 6px #0000004d;
}

.uk-draw-pulse {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 11.5px;
  line-height: 1.3;
  color: #a8bddf;
  max-width: 760px;
}

.uk-draw-pulse strong {
  display: none;
}

.uk-draw-pulse-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(60, 86, 126, 0.72);
  background: rgba(13, 23, 43, 0.58);
  color: #c6d8f2;
  white-space: nowrap;
}

.uk-draw-pulse.is-pending .uk-draw-pulse-chip {
  border-color: rgba(80, 101, 137, 0.68);
  background: rgba(18, 29, 51, 0.52);
  color: #b5c7e4;
}

.uk-draw-pulse.is-pending .uk-draw-pulse-chip.is-status {
  border-color: rgba(125, 152, 195, 0.7);
  color: #dbe8fb;
}

.uk-draw-heat {
  margin-top: 7px;
  gap: 6px;
}

.uk-draw-heat-chip {
  font-size: 10.8px;
}

@media (max-width: 768px) {
  .uk-date-content .uk-draw-row + .uk-draw-row {
    margin-top: 10px;
    padding-top: 11px;
  }

  .uk-draw-pulse {
    gap: 5px;
    font-size: 10.8px;
  }

  .uk-draw-pulse-chip {
    padding: 3px 7px;
  }

  .uk-order-label {
    font-size: 13px;
    max-width: 132px;
  }
}

/* Draw Pulse redesign: cleaner hierarchy with less pill noise */
.uk-draw-signal {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 760px;
}

.uk-draw-signal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.uk-draw-signal-title {
  color: #d7e6ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.uk-draw-signal-status {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid rgba(109, 138, 181, 0.55);
  background: rgba(18, 29, 51, 0.45);
  color: #c8d9f2;
  font-size: 10.8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.uk-draw-signal-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: #a8bddf;
  font-size: 12.2px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.uk-draw-signal-key {
  color: #d1def3;
  font-weight: 600;
}

.uk-draw-signal-value {
  color: #9fb5d9;
  font-weight: 500;
  margin-right: 4px;
}

.uk-draw-signal-sep,
.uk-draw-heat-sep {
  color: rgba(134, 162, 205, 0.65);
  margin: 0 2px;
}

.uk-draw-heat-inline {
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: #98b0d8;
  font-size: 11.4px;
  line-height: 1.3;
}

.uk-draw-heat-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.uk-draw-heat-item.is-hot {
  color: #ffb067;
}

.uk-draw-heat-item.is-cold {
  color: #9ac5ff;
}

.uk-draw-heat-icon {
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 768px) {
  .uk-draw-signal-title {
    font-size: 12.5px;
  }

  .uk-draw-signal-line {
    font-size: 11.4px;
  }

  .uk-draw-heat-inline {
    font-size: 10.8px;
  }

  .uk-draw-signal-status {
    font-size: 10.2px;
  }
}

/* Premium cycle sigil: A/B icon + day indicator */
.uk-premium-meta-signal {
  display: inline-flex;
  align-items: center;
}

.uk-premium-signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 8px 3px 5px;
  border-radius: 999px;
  border: 1px solid rgba(78, 105, 145, 0.55);
  background: linear-gradient(180deg, rgba(15, 27, 48, 0.82) 0%, rgba(11, 20, 37, 0.78) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.uk-premium-signal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(89, 118, 160, 0.72);
  overflow: hidden;
}

.uk-premium-signal-core,
.uk-premium-signal-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.uk-premium-signal-core {
  width: 6px;
  height: 6px;
}

.uk-premium-signal-orbit {
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
}

/* Formula A: warm core + soft orbit */
.uk-premium-signal.is-a {
  background: radial-gradient(circle at 30% 30%, rgba(55, 45, 18, 0.88) 0%, rgba(25, 18, 7, 0.94) 74%);
  border-color: rgba(191, 145, 49, 0.7);
}

.uk-premium-signal.is-a .uk-premium-signal-core {
  background: #ffcb4a;
  box-shadow: 0 0 7px rgba(255, 203, 74, 0.48);
}

.uk-premium-signal.is-a .uk-premium-signal-orbit {
  border-color: rgba(255, 203, 74, 0.6);
}

/* Formula B: cool core + diagonal slash motif */
.uk-premium-signal.is-b {
  background: radial-gradient(circle at 30% 30%, rgba(19, 47, 64, 0.9) 0%, rgba(8, 22, 31, 0.95) 74%);
  border-color: rgba(86, 163, 212, 0.72);
}

.uk-premium-signal.is-b .uk-premium-signal-core {
  background: #66c7ff;
  box-shadow: 0 0 7px rgba(102, 199, 255, 0.5);
}

.uk-premium-signal.is-b .uk-premium-signal-orbit {
  width: 13px;
  height: 2px;
  border: 0;
  border-radius: 1px;
  background: rgba(102, 199, 255, 0.72);
  transform: rotate(-28deg);
}

.uk-premium-day-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 12px;
}

.uk-premium-day-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(163, 186, 220, 0.95);
  box-shadow: 0 0 5px rgba(163, 186, 220, 0.35);
}

.uk-premium-signal.is-a.is-day-3 + .uk-premium-day-indicator .uk-premium-day-dot,
.uk-premium-signal.is-a.is-day-2 + .uk-premium-day-indicator .uk-premium-day-dot,
.uk-premium-signal.is-a.is-day-1 + .uk-premium-day-indicator .uk-premium-day-dot {
  background: rgba(255, 203, 74, 0.95);
  box-shadow: 0 0 5px rgba(255, 203, 74, 0.35);
}

.uk-premium-signal.is-b.is-day-3 + .uk-premium-day-indicator .uk-premium-day-dot,
.uk-premium-signal.is-b.is-day-2 + .uk-premium-day-indicator .uk-premium-day-dot,
.uk-premium-signal.is-b.is-day-1 + .uk-premium-day-indicator .uk-premium-day-dot {
  background: rgba(102, 199, 255, 0.95);
  box-shadow: 0 0 5px rgba(102, 199, 255, 0.35);
}

@media (max-width: 768px) {
  .uk-premium-signal-badge {
    gap: 6px;
    padding: 2px 7px 2px 5px;
  }

  .uk-premium-signal {
    width: 18px;
    height: 18px;
  }

  .uk-premium-signal-core {
    width: 5px;
    height: 5px;
  }

  .uk-premium-signal-orbit {
    width: 10px;
    height: 10px;
  }

  .uk-premium-signal.is-b .uk-premium-signal-orbit {
    width: 11px;
  }

  .uk-premium-day-dot {
    width: 3.5px;
    height: 3.5px;
  }
}

/* Premium My Numbers: remove button pinned top-right */
.uk-prem-my-right {
  display: none !important;
}

.uk-prem-my-item {
  position: relative;
}

.uk-prem-my-top {
  align-items: center;
  padding: 5px 34px 0 5px;
}

.uk-prem-remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  margin: 0;
}

@media (max-width: 768px) {
  .uk-prem-my-top {
    padding: 5px 34px 0 5px;
  }

  .uk-prem-remove-btn {
    top: 5px;
    right: 5px;
  }
}
/* Premium exclusive core ladders */
.uk-prem-core-grid {
  margin-top: 7px;
  display: grid;
  gap: 6px;
}

.uk-prem-core-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 8px;
}

.uk-prem-core-line > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9cb1d2;
}

.uk-prem-core-line .uk-balls.uk-premium-bucket-grid {
  gap: 5px;
}

.uk-prem-core-line .uk-ball {
  width: 26px;
  height: 26px;
  font-size: 11px;
  border-width: 2px;
}
.uk-premium-picks-stack {
  display: grid;
  gap: 10px;
}

.uk-prem-picks-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.uk-prem-picks-summary-main {
  min-width: 0;
}

.uk-prem-picks-benefits {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #dde8fb;
}

.uk-prem-picks-benefits li {
  color: #dfe9fb;
  font-size: 13px;
  line-height: 1.45;
}

.uk-prem-picks-benefits li::marker {
  color: #f4b516;
}

.uk-prem-picks-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.uk-prem-picks-proof-pill {
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(11, 22, 40, 0.56);
  min-width: 0;
}

.uk-prem-picks-proof-pill span {
  display: block;
  color: #91a6c8;
  font-size: 10px;
  margin-bottom: 3px;
  line-height: 1.2;
}

.uk-prem-picks-proof-pill strong {
  display: block;
  color: #e5eefc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}


.uk-prem-picks-combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-prem-picks-card .uk-balls.uk-premium-bucket-grid {
  margin-bottom: 10px;
}


.uk-prem-picks-events .uk-prem-exclusive-list {
  margin-top: 2px;
}

.uk-prem-event-card {
  display: grid;
  gap: 9px;
}

.uk-prem-event-main,
.uk-prem-event-bonus {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 8px;
}

.uk-prem-event-main > span,
.uk-prem-event-bonus > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9cb1d2;
}

.uk-prem-event-bonus .uk-bonus-wrap {
  justify-self: start;
}

.uk-prem-event-note {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-prem-combo-proof {
  margin-bottom: 10px;
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 10px;
  background: rgba(11, 22, 40, 0.56);
}

.uk-prem-combo-proof.is-hit {
  border-color: rgba(244, 180, 22, 0.68);
  background: rgba(87, 66, 14, 0.28);
}

.uk-prem-combo-proof.is-partial {
  border-color: rgba(86, 163, 212, 0.62);
  background: rgba(16, 39, 58, 0.44);
}

.uk-prem-combo-proof.is-live {
  border-color: rgba(121, 142, 176, 0.64);
  background: rgba(20, 31, 49, 0.58);
}

.uk-prem-combo-proof-head strong {
  display: block;
  color: #e5eefc;
  font-size: 13px;
  margin-bottom: 3px;
}

.uk-prem-combo-proof-head p {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-prem-combo-proof-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.uk-prem-combo-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #bfd0ea;
}

.uk-prem-combo-proof-row span {
  color: #bfd0ea;
}

.uk-prem-combo-proof-row strong {
  font-size: 11px;
  font-weight: 700;
}

.uk-prem-combo-proof-row.is-hit strong {
  color: #ffd56a;
}

.uk-prem-combo-proof-row.is-partial strong {
  color: #8fd3ff;
}

.uk-prem-combo-proof-row.is-bonus strong,
.uk-prem-combo-proof-row.is-pending strong {
  color: #a9bbd7;
}

.uk-vip-potential-combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-vip-potential-card {
  display: grid;
  gap: 10px;
}

.uk-vip-potential-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.uk-vip-potential-head-copy {
  display: grid;
  gap: 6px;
}

.uk-vip-potential-head h3 {
  margin: 0;
  color: #e5eefc;
  font-size: 17px;
}

.uk-vip-potential-cycle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(63, 88, 125, 0.88);
  background: rgba(10, 23, 44, 0.7);
}

.uk-vip-potential-cycle-badge strong {
  color: #dfe9fb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.uk-vip-potential-cycle-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.uk-vip-potential-cycle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(143, 165, 201, 0.35);
}

.uk-vip-potential-cycle-dot.is-active {
  background: #f1c44b;
  box-shadow: 0 0 0 3px rgba(241, 196, 75, 0.16);
}

.uk-vip-potential-target-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63, 88, 125, 0.88);
  background: rgba(10, 23, 44, 0.78);
  color: #f1c44b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.uk-vip-potential-ball-grid {
  margin-bottom: 0;
}

.uk-vip-potential-proof {
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 10px;
  background: rgba(11, 22, 40, 0.56);
}

.uk-vip-potential-proof.is-hit {
  border-color: rgba(244, 180, 22, 0.68);
  background: rgba(87, 66, 14, 0.28);
}

.uk-vip-potential-proof.is-partial {
  border-color: rgba(86, 163, 212, 0.62);
  background: rgba(16, 39, 58, 0.44);
}

.uk-vip-potential-proof.is-live {
  border-color: rgba(121, 142, 176, 0.64);
  background: rgba(20, 31, 49, 0.58);
}

.uk-vip-potential-proof-head strong {
  display: block;
  color: #e5eefc;
  font-size: 13px;
  margin-bottom: 3px;
}

.uk-vip-potential-proof-head p {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-vip-potential-hit-block {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.uk-vip-potential-hit-label {
  color: #9db0d1;
  font-size: 11px;
  font-weight: 600;
}

.uk-vip-potential-hit-balls {
  margin-bottom: 0;
}

.uk-vip-potential-hit-empty {
  margin: 8px 0 0;
  color: #b8c7df;
  font-size: 12px;
  line-height: 1.45;
}

.uk-vip-potential-proof-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.uk-vip-potential-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(58, 78, 112, 0.7);
  padding-top: 6px;
  font-size: 12px;
  color: #cbd8ee;
}

.uk-vip-potential-proof-row strong {
  color: #e5eefc;
}

.uk-vip-potential-proof-row.is-hit strong,
.uk-vip-potential-proof-row.is-rear strong {
  color: #f7d46c;
}

.uk-vip-potential-proof-row.is-pending strong {
  color: #9fc2ec;
}

.uk-vip-potential-proof-row.is-muted strong {
  color: #b8c7df;
}

.uk-vip-potential-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.uk-vip-potential-pill {
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(11, 22, 40, 0.56);
  min-width: 0;
}

.uk-vip-potential-pill span {
  display: block;
  color: #91a6c8;
  font-size: 10px;
  margin-bottom: 3px;
  line-height: 1.2;
}

.uk-vip-potential-pill strong {
  display: block;
  color: #e5eefc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.uk-vip-potential-note {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-prem-pair-watch-details {
  display: block;
}

.uk-prem-pair-watch-details summary {
  list-style: none;
}

.uk-prem-pair-watch-details summary::-webkit-details-marker {
  display: none;
}

.uk-prem-pair-watch-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.uk-prem-pair-watch-summary .uk-prem-stats-head {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.uk-prem-pair-watch-caret {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-right: 2px solid #9db0d1;
  border-bottom: 2px solid #9db0d1;
  transform: rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.uk-prem-pair-watch-details[open] .uk-prem-pair-watch-caret {
  transform: rotate(225deg);
  border-color: #dfe9fb;
}

.uk-prem-pair-watch-panel {
  margin-top: 10px;
  padding-top: 2px;
}

.uk-prem-pair-watch-note {
  margin-bottom: 10px;
}

.uk-prem-pair-watch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uk-prem-pair-watch-item {
  border: 1px solid #304667;
  border-radius: 10px;
  padding: 12px;
  background: rgba(11, 22, 40, 0.56);
  min-width: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}

.uk-prem-pair-watch-item.is-hit {
  border-color: rgba(244, 180, 22, 0.68);
  background: rgba(87, 66, 14, 0.24);
}

.uk-prem-pair-watch-item.is-partial {
  border-color: rgba(86, 163, 212, 0.62);
  background: rgba(16, 39, 58, 0.4);
}

.uk-prem-pair-watch-item.is-live {
  border-color: rgba(121, 142, 176, 0.64);
}

.uk-prem-pair-watch-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}

.uk-prem-pair-watch-balls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uk-prem-pair-watch-copy {
  display: grid;
  gap: 4px;
  padding-left: 10px;
}

.uk-prem-pair-watch-copy strong {
  display: block;
  color: #e5eefc;
  font-size: 13px;
}

.uk-prem-pair-watch-copy p {
  margin: 0;
  color: #9db0d1;
  font-size: 12px;
  line-height: 1.45;
}

.uk-prem-pair-watch-proof {
  display: grid;
  gap: 6px;
  margin-top: 2px;
  padding-top: 2px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.uk-prem-pair-watch-proof-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #bfd0ea;
}

.uk-prem-pair-watch-proof-row span {
  color: #bfd0ea;
}

.uk-prem-pair-watch-proof-row strong {
  color: #dfe9fb;
  font-size: 11px;
  font-weight: 700;
}


@media (max-width: 768px) {
  .uk-prem-pair-watch-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .uk-prem-pair-watch-top,
  .uk-prem-pair-watch-proof-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .uk-prem-pair-watch-proof-row strong {
    text-align: left;
  }

  .uk-prem-pair-watch-balls {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  /* Smart Picks pool cards: keep each set on its own row on mobile. */
  .uk-vip-event-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Ensure balls flow left-to-right with wrapping, not vertical columns. */
  .uk-vip-event-grid .uk-smart-bucket-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .uk-prem-core-line {
    grid-template-columns: 48px 1fr;
    gap: 6px;
  }

  .uk-prem-core-line > span {
    font-size: 10px;
  }

  .uk-prem-core-line .uk-ball {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .uk-prem-picks-summary-grid,
  .uk-prem-picks-combo-grid,
  .uk-prem-picks-proof-grid,
  .uk-vip-potential-combo-grid,
  .uk-vip-combo-grid,
  .uk-vip-combo-hit-card-grid,
  .uk-vip-potential-pill-grid {
    grid-template-columns: 1fr;
  }


  .uk-prem-event-main,
  .uk-prem-event-bonus {
    grid-template-columns: 48px 1fr;
    gap: 6px;
  }
}

/* Dashboard comments restore: interactive + dark card treatment */
.uk-draw-comments {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #99abc8;
  font-size: 12px;
  line-height: 1;
  margin-left: 6px;
}

.uk-draw-comments:hover,
.uk-draw-comments[aria-expanded="true"] {
  color: #d6e3fa;
}

.uk-draw-comments:focus-visible {
  outline: 2px solid rgba(244, 181, 22, 0.6);
  outline-offset: 2px;
  border-radius: 6px;
}

.uk-draw-comments-panel {
  margin-top: 12px;
}

.uk-comments-card {
  --cmt-surface: rgba(13, 21, 39, 0.94);
  --cmt-surface-soft: rgba(18, 28, 49, 0.92);
  --cmt-border: #2c3f60;
  --cmt-text: #d7e4fa;
  --cmt-text-muted: #91a6cb;
  --cmt-accent: #f4b516;
  --cmt-focus: rgba(244, 181, 22, 0.24);
  padding: 12px;
  border: 1px solid var(--cmt-border);
  border-radius: 14px;
  background: var(--cmt-surface);
}

.uk-comments-head {
  margin-bottom: 10px;
}

.uk-comments-head h3 {
  margin: 0;
  color: var(--cmt-text);
  font-size: 28px;
}

.uk-comments-icon {
  color: var(--cmt-accent);
  font-size: 16px;
}

.uk-comments-form {
  gap: 10px;
}

.uk-comments-form .uk-input,
.uk-comments-form .uk-textarea,
.uk-comment-reply-form .uk-input,
.uk-comment-reply-form .uk-textarea {
  border-radius: 12px;
  border: 1px solid #31486d;
  background: rgba(26, 38, 64, 0.92);
  color: #dbe7ff;
}

.uk-comments-form .uk-input::placeholder,
.uk-comments-form .uk-textarea::placeholder,
.uk-comment-reply-form .uk-input::placeholder,
.uk-comment-reply-form .uk-textarea::placeholder {
  color: #8ea3c7;
}

.uk-comments-form .uk-input:focus,
.uk-comments-form .uk-textarea:focus,
.uk-comment-reply-form .uk-input:focus,
.uk-comment-reply-form .uk-textarea:focus {
  border-color: #6b86b4;
  box-shadow: 0 0 0 3px var(--cmt-focus);
}

.uk-comments-textarea {
  min-height: 78px;
}

.uk-comments-form-meta {
  align-items: center;
}

.uk-comments-count {
  color: #8ea3c7;
}

.uk-comments-submit {
  border-radius: 12px;
  min-height: 36px;
  padding: 0 14px;
  background: #f4b516;
  border: 1px solid #f4b516;
  color: #07142e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uk-comments-submit-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
}

.uk-comments-submit:hover:not(:disabled) {
  background: #ffca38;
  border-color: #ffca38;
}

.uk-comments-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.uk-comments-feedback {
  color: #8ea3c7;
}

.uk-comments-feedback.is-success {
  color: #7fe0aa;
}

.uk-comments-feedback.is-error {
  color: #ff9ea8;
}

.uk-comments-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uk-comment-item {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(22, 33, 57, 0.92) 0%, rgba(17, 27, 48, 0.88) 100%);
  box-shadow: none;
  padding: 12px 10px 10px 14px;
  transform: none;
}

.uk-comment-item:hover {
  transform: none;
  box-shadow: none;
}

.uk-comment-avatar {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 53, 18, 0.16);
  border: 0;
  border-radius: 50%;
}

.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-comment-name {
  color: #e8f0ff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
}

.uk-comment-time {
  color: #8ea3c7;
  font-size: 11px;
  line-height: 1.35;
}

.uk-comment-message {
  color: #b9cae8;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .uk-comments-card {
    padding: 10px;
  }

  .uk-comments-head h3 {
    font-size: 24px;
  }

  .uk-comments-submit {
    min-height: 34px;
    padding: 0 12px;
  }
}

/* Comment UX tune: icon tint + spacing */
.uk-comments-list {
  margin-top: 14px;
  gap: 12px;
}

.uk-comment-item {
  border: 0;
  padding: 14px 12px 10px 16px;
}

.uk-comment-body {
  padding-top: 3px;
  padding-left: 4px;
}

.uk-comment-top {
  gap: 6px;
  margin-bottom: 4px;
}

.uk-comment-name {
  font-size: 11px;
}

.uk-comment-time {
  font-size: 10px;
}

.uk-comment-message {
  font-size: 11px;
}

.uk-comments-submit-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 14px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uk-comment-avatar-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  color: #ff8c00;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Final comments article override: background + spacing */
.uk-draw-comments-panel .uk-comments-list .uk-comment-item {
  background: rgba(15, 23, 36, 0.72);
  padding: 16px 14px 14px 18px !important;
}

.uk-draw-comments-panel .uk-comments-list .uk-comment-item .uk-comment-body {
  padding-top: 6px;
  padding-left: 8px;
}

.uk-draw-comments-panel .uk-comments-list .uk-comment-item .uk-comment-top {
  margin-bottom: 6px;
}

/* Insights toggle alignment fix (strictly scoped) */
.uk-draw-insights > .uk-draw-insights-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 8px;
  padding: 0 10px;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-label {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-text {
  line-height: 1;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-icon,
.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  line-height: 0;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-icon svg,
.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret svg {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-icon {
  color: #9db0d3;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  color: #9db0d3;
  transform: none;
  transition: transform 0.2s ease;
}

.uk-draw-insights[open] > .uk-draw-insights-toggle .uk-draw-insights-caret {
  transform: rotate(180deg);
}

/* Insights toggle final polish: overflow-safe + true centering (scoped only) */
.uk-draw-insights > .uk-draw-insights-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 2px;
  padding: 0 34px 0 12px;
  overflow: hidden;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-label {
  justify-self: auto;
  max-width: 100%;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-icon,
.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  line-height: 0;
}

/* Insights panel refinement: header shade, tighter date, uniform ball sizing */
.uk-draw-insights-panel .uk-draw-insight-head {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(26, 37, 57, 0.48);
}

.uk-draw-insights-panel .uk-draw-insight-date {
  margin-left: 2px;
}

.uk-draw-insights-panel .uk-draw-insight-week-row {
  grid-template-columns: minmax(0, 1fr);
}

.uk-draw-insights-panel {
  --uk-insight-ball-size: 32px;
}

.uk-draw-insights-panel .uk-ball {
  width: var(--uk-insight-ball-size);
  height: var(--uk-insight-ball-size);
  min-width: var(--uk-insight-ball-size);
  font-size: 16px;
  border-width: 4px;
  transform: none;
}

@media (max-width: 640px) {
  .uk-draw-insights-panel .uk-draw-insight-week-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Dashboard comments header sizing */
.uk-draw-comments-panel .uk-comments-head h3 {
  font-size: 20px;
}


/* Shared card surface token across all major card surfaces */
.uk-side-section,
.uk-rail-card,
.uk-nav,
.uk-date-block,
.uk-card,
.uk-smart-score-card,
.uk-smart-five-day-card,
.uk-smart-five-day-row,
.uk-vip-pool-card,
.uk-vip-combo-card,
.uk-vip-combo-block,
.uk-vip-combo-hit-card,
.uk-premium-card,
.uk-premium-cell,
.uk-prem-gen-card,
.uk-prem-my-numbers,
.uk-prem-gen-panel,
.uk-prem-my-item,
.uk-premium-hub-card,
.uk-prem-stats-card,
.uk-prem-exclusive-item,
.uk-prem-picks-card,
.uk-prem-event-card,
.uk-prem-pair-watch-item,
.uk-prem-core-line,
.uk-prem-picks-proof-pill,
.uk-prem-combo-proof,
.uk-vip-potential-card,
.uk-vip-potential-pill,
.uk-modal-panel,
.uk-sticky-ad {
  border-color: var(--uk-border);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  box-shadow: var(--uk-shadow-card);
}

.uk-premium-card,
.uk-premium-cell,
.uk-prem-gen-card,
.uk-prem-my-numbers,
.uk-prem-gen-panel,
.uk-prem-my-item,
.uk-premium-hub-card,
.uk-prem-stats-card,
.uk-prem-exclusive-item,
.uk-prem-picks-card,
.uk-prem-event-card,
.uk-prem-pair-watch-item,
.uk-prem-core-line,
.uk-prem-picks-proof-pill,
.uk-prem-combo-proof {
  border-radius: var(--uk-radius-card);
}

@media (max-width: 768px) {
  .uk-footer-topline-wrap {
    padding: 0 14px;
  }

  .uk-legal-card {
    padding: 14px 12px;
  }

  .uk-legal-body {
    padding-inline: clamp(12px, 4vw, 18px);
  }
}

/* Anti-bot honeypot inputs stay invisible and non-interactive for humans. */
.uk-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.uk-prem-trio-seq-card {
  display: grid;
  gap: 10px;
}

.uk-prem-trio-seq-note {
  margin: 0;
}

.uk-prem-trio-seq-list {
  display: grid;
  gap: 8px;
  max-height: 460px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.uk-prem-trio-seq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(63, 88, 125, 0.58);
  border-radius: 12px;
  background: rgba(10, 23, 44, 0.42);
}

.uk-prem-trio-seq-balls {
  flex-wrap: nowrap;
}

.uk-prem-trio-seq-meta {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .uk-prem-trio-seq-row {
    flex-direction: column;
    align-items: flex-start;
  }
}




.uk-editorial-lead {
  margin: 0 0 16px;
  color: #d7e4fa;
  line-height: 1.75;
  font-size: 14px;
}

.uk-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0;
}

.uk-historical-guide .uk-editorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.uk-editorial-block {
  border: 1px solid rgba(79, 102, 140, 0.35);
  border-radius: 12px;
  background: rgba(12, 21, 37, 0.58);
  padding: 14px;
}

.uk-editorial-block h3 {
  margin: 0 0 8px;
  color: #e7eefb;
  font-size: 15px;
}

.uk-editorial-block ul,
.uk-editorial-block ol {
  margin: 0;
  padding-left: 18px;
  color: #bdd0eb;
  line-height: 1.6;
}

.uk-editorial-block li + li {
  margin-top: 6px;
}

.uk-editorial-conclusion {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(88, 111, 149, 0.3);
  color: #c3d4ee;
  line-height: 1.75;
  font-size: 13px;
}

.uk-inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.uk-inline-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(118, 144, 186, 0.45);
  background: rgba(13, 23, 40, 0.7);
  color: #ceddf3;
  font-size: 12px;
}

.uk-historical-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.uk-toolbar-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border: 1px solid rgba(111, 134, 170, 0.42);
  border-radius: 999px;
  color: #d7e4fa;
  font-size: 12px;
  background: rgba(11, 19, 34, 0.62);
}

.uk-toolbar-note {
  color: #9fb2d1;
  font-size: 12px;
}

/* Navigation interstitial ad modal */
.uk-nav-ad-panel {
  width: min(640px, calc(100vw - 20px));
  display: grid;
  gap: 12px;
}

.uk-nav-ad-panel h3,
.uk-nav-ad-panel p {
  margin: 0;
}

.uk-nav-ad-slot {
  border: 1px solid rgba(104, 126, 162, 0.38);
  border-radius: 12px;
  padding: 10px;
  background: rgba(9, 16, 29, 0.64);
}

.uk-nav-ad-slot .uk-card.uk-ad,
.uk-nav-ad-slot .uk-nav-ad-static {
  min-height: 120px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-nav-ad-target {
  color: #a5b9da;
  font-size: 12px;
  line-height: 1.5;
}

.uk-nav-ad-actions {
  display: flex;
  justify-content: flex-end;
}

.uk-nav-ad-static .uk-muted-copy {
  margin: 0;
}

@media (max-width: 768px) {
  .uk-editorial-grid,
  .uk-historical-guide .uk-editorial-grid {
    grid-template-columns: 1fr;
  }

  .uk-historical-toolbar {
    align-items: flex-start;
  }

  .uk-nav-ad-actions {
    justify-content: stretch;
  }

  .uk-nav-ad-actions .uk-btn {
    width: 100%;
  }
}

.uk-home-cards-wrap,
.uk-historical-cards-wrap {
  display: grid;
  gap: 12px;
}

.uk-home-intro,
.uk-historical-guide {
  width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  .uk-editorial-grid,
  .uk-historical-guide .uk-editorial-grid {
    grid-template-columns: 1fr;
  }
}
/* Home visual alignment with reference: title + quick guide + per-event cards */
.uk-home-header {
  width: min(760px, 100%);
  margin: 10px auto 12px;
  padding: 8px 10px 0;
  box-sizing: border-box;
  text-align: center;
}

.uk-home-header h1 {
  margin: 0;
  color: var(--uk-gold);
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.08;
}

.uk-home-header p {
  margin: 6px auto 0;
  color: var(--uk-muted);
  font-size: 14px;
}

.uk-home-cards-wrap {
  display: grid;
  gap: 12px;
}

.uk-home-intro {
  width: 100%;
  margin: 0;
  padding: 18px 20px;
}

.uk-about h2,
.uk-faq h2,
.uk-historical-guide h2 {
  margin: 0 0 12px;
  color: #f4c84d;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
}
.uk-home-intro h2 {
  margin: 0;
  color: #e8eefc;
  font-size: clamp(24px, 3.1vw, 30px);
  line-height: 1.12;
}

.uk-home-intro .uk-editorial-lead {
  margin: 12px 0 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(85, 108, 145, 0.35);
  color: #c7d4eb;
  line-height: 1.65;
  font-size: 14px;
}

.uk-home-intro h3 {
  margin: 0 0 8px;
  color: var(--uk-gold);
  font-size: 34px;
  line-height: 1.2;
}

.uk-home-guide-list {
  margin: 0;
  padding-left: 20px;
  color: #c3d3ee;
  line-height: 1.65;
}

.uk-home-guide-list li + li {
  margin-top: 4px;
}

.uk-home-cards-wrap .uk-date-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.uk-home-cards-wrap .uk-date-summary {
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(56, 78, 116, 0.35);
}

.uk-home-cards-wrap .uk-date-content {
  display: grid;
  gap: 10px;
}

.uk-home-cards-wrap .uk-date-content .uk-draw-row + .uk-draw-row {
  margin-top: 0;
  border-top: 0;
}

.uk-home-cards-wrap .uk-draw-row {
  border: 1px solid var(--uk-border);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  border-radius: 14px;
  box-shadow: var(--uk-shadow-card);
  padding: 14px 14px 12px;
}

.uk-home-cards-wrap .uk-event-row {
  justify-content: space-between;
  gap: 8px;
  padding-top: 2px;
  margin-bottom: 8px;
}

.uk-home-cards-wrap .uk-event-actions {
  margin-left: auto;
  gap: 8px;
}

.uk-home-cards-wrap .uk-time {
  font-size: 10px;
  padding: 2px 6px;
}

.uk-home-cards-wrap .uk-balls-wrap {
  gap: 7px;
}

.uk-home-cards-wrap .uk-draw-comments {
  margin-left: 0;
  color: #a6b8d8;
}

.uk-home-cards-wrap .uk-draw-insights {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(44, 63, 95, 0.45);
}

.uk-home-cards-wrap .uk-draw-insights-toggle {
  min-height: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #9db0d1;
}

.uk-home-cards-wrap .uk-draw-insights-toggle:hover,
.uk-home-cards-wrap .uk-draw-insights-toggle:focus-visible {
  background: transparent;
  color: #c8d6ef;
}

@media (max-width: 768px) {
  .uk-home-header h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .uk-home-intro {
    padding: 14px 14px;
  }

  .uk-home-intro h2 {
    font-size: clamp(21px, 6.4vw, 26px);
  }

  .uk-home-intro h3 {
    font-size: 28px;
  }

  .uk-home-cards-wrap .uk-draw-row {
    padding: 10px 12px;
  }
}

/* Final insights toggle UX patch: icon, hover intent, and caret proximity */
.uk-draw-insights > .uk-draw-insights-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 26px;
  box-sizing: border-box;
  padding: 0 10px;
  gap: 0;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-inline-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-inline-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-icon,
.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret {
  position: static !important;
  margin: 0 0 0 2px;
  transform: translateY(0);
  transition: transform 0.2s ease, color 0.2s ease;
}

.uk-draw-insights > .uk-draw-insights-toggle .uk-draw-insights-caret svg {
  width: 14px;
  height: 14px;
  display: block;
}

.uk-draw-insights > .uk-draw-insights-toggle:hover,
.uk-draw-insights > .uk-draw-insights-toggle:focus-visible {
  color: var(--uk-gold, #f4b516);
  border-color: rgba(244, 181, 22, 0.6);
  background: rgba(244, 181, 22, 0.09);
  box-shadow: 0 0 0 1px rgba(244, 181, 22, 0.2) inset;
}

.uk-draw-insights[open] > .uk-draw-insights-toggle {
  color: var(--uk-gold, #f4b516);
}

.uk-draw-insights[open] > .uk-draw-insights-toggle .uk-draw-insights-caret {
  transform: rotate(180deg);
}

/* Global hover/focus accent consistency */
#uk49s-results-hub-app {
  --uk-hover-accent: var(--uk-gold, #f4b516);
  --uk-hover-accent-soft: rgba(244, 181, 22, 0.1);
  --uk-hover-accent-border: rgba(244, 181, 22, 0.58);
}

#uk49s-results-hub-app a:hover,
#uk49s-results-hub-app a:focus-visible {
  color: var(--uk-hover-accent);
}

#uk49s-results-hub-app .uk-side-link:not(.is-active):hover,
#uk49s-results-hub-app .uk-side-link:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-menu button:not(.is-active):hover,
#uk49s-results-hub-app .uk-menu button:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-menu-link:not(.is-active):hover,
#uk49s-results-hub-app .uk-menu-link:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-stats-tab-btn:not(.is-active):hover,
#uk49s-results-hub-app .uk-stats-tab-btn:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-prem-main-tab:not(.is-active):hover,
#uk49s-results-hub-app .uk-prem-main-tab:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-prem-gen-mode-btn:not(.is-active):hover,
#uk49s-results-hub-app .uk-prem-gen-mode-btn:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-prem-gen-output-btn:not(.is-active):hover,
#uk49s-results-hub-app .uk-prem-gen-output-btn:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-prem-gen-count-btn:not(.is-active):hover,
#uk49s-results-hub-app .uk-prem-gen-count-btn:not(.is-active):focus-visible,
#uk49s-results-hub-app .uk-prem-remove-btn:hover,
#uk49s-results-hub-app .uk-prem-remove-btn:focus-visible {
  color: var(--uk-hover-accent);
  border-color: var(--uk-hover-accent-border);
  background: var(--uk-hover-accent-soft);
}

#uk49s-results-hub-app .uk-draw-comments:hover,
#uk49s-results-hub-app .uk-draw-comments:focus-visible {
  color: var(--uk-hover-accent);
}

#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:hover,
#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:focus-visible {
  border-color: var(--uk-hover-accent-border);
  background: var(--uk-hover-accent-soft);
  box-shadow: inset 0 0 0 1px rgba(244, 181, 22, 0.18);
}

#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:hover .uk-date,
#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:focus-visible .uk-date,
#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:hover .uk-date-count,
#uk49s-results-hub-app .uk-date-block:not(.is-open):not([open]) summary:focus-visible .uk-date-count {
  color: var(--uk-hover-accent);
}

#uk49s-results-hub-app .uk-home-cards-wrap .uk-draw-insights-toggle:hover,
#uk49s-results-hub-app .uk-home-cards-wrap .uk-draw-insights-toggle:focus-visible {
  color: var(--uk-hover-accent);
}

/* Dashboard Comment Card - authoritative chat style (source of truth) */
#uk49s-results-hub-app .uk-draw-comments {
  min-height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  transition: color .18s ease, background-color .18s ease;
}

#uk49s-results-hub-app .uk-draw-comments-panel.uk-comments-card {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--uk-border);
  border-radius: var(--uk-radius-card);
  background: linear-gradient(180deg, var(--uk-surface-2), var(--uk-surface));
  box-shadow: var(--uk-shadow-card);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-head.uk-comments-head-chat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-head-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-head h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #e6efff;
  font-weight: 700;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-icon {
  color: var(--uk-gold, #f4b516);
  font-size: 14px;
  line-height: 1;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-head-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #95a9ce;
  font-size: 11px;
  white-space: nowrap;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--uk-gold, #f4b516);
  box-shadow: 0 0 0 2px rgba(244, 181, 22, 0.18);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form {
  display: grid;
  gap: 8px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-input,
#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-textarea {
  border-radius: 10px;
  border: 1px solid rgba(63, 87, 126, 0.75);
  background: rgba(19, 30, 50, 0.84);
  color: #dbe8ff;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-input::placeholder,
#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-textarea::placeholder {
  color: #8ca3ca;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-input:focus,
#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form .uk-textarea:focus {
  border-color: rgba(244, 181, 22, 0.58);
  box-shadow: 0 0 0 3px rgba(244, 181, 22, 0.14);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-textarea {
  min-height: 82px;
  resize: vertical;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-count {
  color: #93a7c9;
  font-size: 11px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-submit {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 13px;
  background: linear-gradient(120deg, var(--uk-gold, #f4b516), var(--uk-gold-2, #df9f22));
  border: 1px solid rgba(244, 181, 22, 0.76);
  color: #101827;
  font-weight: 700;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-submit:hover:not(:disabled) {
  filter: brightness(1.04);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-feedback {
  min-height: 16px;
  margin-top: 6px;
  font-size: 11px;
  color: #9bb0d3;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-feed {
  margin-top: 8px;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(118, 138, 172, 0.7) transparent;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-feed::-webkit-scrollbar {
  width: 6px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-feed::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(118, 138, 172, 0.7);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-list .uk-comment-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(51, 72, 108, 0.65);
  border-radius: 10px;
  background: rgba(14, 24, 40, 0.72);
  box-shadow: none;
  transform: none;
  padding: 10px 12px !important;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-list .uk-comment-item:hover {
  border-color: rgba(73, 96, 136, 0.75);
  box-shadow: none;
  transform: none;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(244, 181, 22, 0.45), rgba(244, 181, 22, 0.12));
  border: 1px solid rgba(244, 181, 22, 0.35);
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-avatar-initials {
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: #fef6de;
  letter-spacing: 0.02em;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-body {
  min-width: 0;
  padding: 0;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-top {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-name {
  font-size: 12px;
  line-height: 1.2;
  color: #eaf1ff;
  font-weight: 700;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-time {
  font-size: 10px;
  color: #7f95bc;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comment-message {
  font-size: 12px;
  line-height: 1.4;
  color: #b6c9e8;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-state {
  margin: 0;
  padding: 10px 12px;
  border: 1px dashed rgba(71, 95, 136, 0.55);
  border-radius: 10px;
  color: #93a9cc;
  font-size: 12px;
}

#uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-state.is-error {
  color: #ff9ea8;
  border-color: rgba(255, 147, 164, 0.45);
}

@media (max-width: 768px) {
  #uk49s-results-hub-app .uk-draw-comments-panel.uk-comments-card {
    padding: 10px;
  }

  #uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-feed {
    max-height: 220px;
  }

  #uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-head h3 {
    font-size: 15px;
  }

  #uk49s-results-hub-app .uk-draw-comments-panel .uk-comments-submit {
    min-height: 32px;
    padding: 0 12px;
  }
}