/* ==========================================================================
   UFABET WinReal — Main Styles
   Dark + Gold casino landing (inspired layout)
   ========================================================================== */

:root {
  --uwr-bg: #000000;
  --uwr-bg-elevated: #0d0d0d;
  --uwr-bg-card: #141414;
  --uwr-bg-nav: #1a1a1a;
  --uwr-gold: #d4af37;
  --uwr-gold-2: #c9a227;
  --uwr-gold-soft: #f9fba1;
  --uwr-gold-dark: #b8860b;
  --uwr-text: #ffffff;
  --uwr-text-muted: #b0b0b0;
  --uwr-border: rgba(245, 197, 24, 0.35);
  --uwr-radius: 14px;
  --uwr-radius-sm: 10px;
  --uwr-radius-pill: 999px;
  --uwr-shadow-gold: 0 0 24px rgba(245, 197, 24, 0.35);
  --uwr-font: "Prompt", system-ui, -apple-system, "Segoe UI", sans-serif;
  --uwr-topbar-h: 68px;
  --uwr-nav-h: 80px;
  --uwr-bottom-h: 64px;
  --uwr-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.uwr-theme {
  margin: 0;
  min-height: 100vh;
  background: var(--uwr-bg);
  color: var(--uwr-text);
  font-family: var(--uwr-font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uwr-app {
  min-height: 100vh;
  padding-bottom: calc(var(--uwr-bottom-h) + 12px);
  background:
    url("https://ufabetwinreal.asia/ufabetwinreal/ufabetwinreal_bg.jpg") center top / cover no-repeat fixed,
    #000000;
}

.uwr-container {
  width: min(100% - 32px, var(--uwr-max));
  margin-inline: auto;
}

/* ---------- Home: internal-scroll viewport (mirrors original) ---------- */
body.uwr-home {
  overflow: hidden;
  height: 100vh;
}

body.uwr-home .uwr-app {
  height: 100vh;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.uwr-home .uwr-topbar,
body.uwr-home .uwr-nav {
  flex-shrink: 0;
}

body.uwr-home .uwr-main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(var(--uwr-bottom-h) + 12px);
}

@media (max-width: 640px) {
  body.uwr-home,
  body.uwr-home .uwr-app {
    height: 100dvh;
  }
}

/* ---------- Top bar ---------- */
.uwr-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--uwr-topbar-h);
  background: linear-gradient(0deg, #000000, #2b2b2b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.uwr-topbar__inner {
  height: 100%;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.uwr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.uwr-logo .custom-logo-link,
.uwr-logo .custom-logo {
  display: block;
  height: 50px;
  width: auto;
}

.uwr-logo__img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.uwr-logo--fallback::after {
  content: "UFABET WINREAL";
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--uwr-gold);
  white-space: nowrap;
}

.uwr-logo .custom-logo {
  object-fit: contain;
}

.uwr-logo__badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #3a3a3a, #111 70%);
  box-shadow:
    0 0 0 2px var(--uwr-gold),
    0 0 16px rgba(245, 197, 24, 0.45),
    inset 0 0 12px rgba(245, 197, 24, 0.2);
}

.uwr-logo__ring {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 197, 24, 0.5);
  pointer-events: none;
}

.uwr-logo__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--uwr-gold);
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.6);
}

.uwr-logo__text strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.uwr-logo__text small {
  font-size: 8px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 1px;
}

.uwr-topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Buttons ---------- */
.uwr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--uwr-radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.uwr-btn:hover {
  transform: translateY(-1px);
}

.uwr-btn:active {
  transform: translateY(0);
}

.uwr-btn--outline {
  background: linear-gradient(45deg, #2b2b2b, #7e7e7e, #2b2b2b);
  color: var(--uwr-text);
  border: 1px solid var(--uwr-gold);
}

.uwr-btn--outline:hover {
  filter: brightness(1.1);
  color: #fff;
}

.uwr-btn--gold {
  background: linear-gradient(45deg, #d4af37, #f9fba1 50%, #d4af37);
  color: #000000;
  border: 1px solid #d4af37;
}

.uwr-btn--gold:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.uwr-btn--hero {
  min-height: 52px;
  min-width: 220px;
  padding: 0 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--uwr-gold);
  background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
  border: 2px solid var(--uwr-gold);
  border-radius: var(--uwr-radius-pill);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(245, 197, 24, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.4);
}

.uwr-btn--hero:hover {
  background: linear-gradient(180deg, #3a3200 0%, #1a1400 100%);
  box-shadow:
    0 0 40px rgba(245, 197, 24, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.55);
}

/* Flag */
.uwr-flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: block;
}

.uwr-flag__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Category nav ---------- */
.uwr-nav {
  position: relative;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 60px;
  background: transparent;
}

.uwr-nav__track {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}

.uwr-nav__track::-webkit-scrollbar {
  display: none;
}

.uwr-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  margin: 0 auto;
}

.uwr-nav__item {
  flex: 0 0 auto;
  margin-right: 8px;
  border-radius: 12px;
  transition: transform 0.15s ease;
}

.uwr-nav__item:hover {
  transform: translateY(-2px);
}

.uwr-nav__item.is-active,
.uwr-nav__item.current-menu-item {
  background: linear-gradient(45deg, #d4af37, #f9fba1 50%, #d4af37);
  border: 1px solid #d4af37;
  padding: 2px;
}

.uwr-nav__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 144px;
  height: 58px;
  padding: 0 8px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.uwr-nav__item.is-active .uwr-nav__link,
.uwr-nav__item.current-menu-item .uwr-nav__link {
  color: #000000;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.uwr-nav__icon {
  width: auto;
  height: 30px;
  margin-right: 4px;
  flex-shrink: 0;
}

.uwr-nav__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  text-align: left;
}

.uwr-nav__label b {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.uwr-nav__label small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.uwr-nav__item.is-active .uwr-nav__label small,
.uwr-nav__item.current-menu-item .uwr-nav__label small {
  opacity: 0.7;
}

.uwr-nav__arrow {
  flex: 0 0 36px;
  width: 36px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--uwr-gold);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.uwr-nav__arrow:hover {
  background: rgba(245, 197, 24, 0.15);
}

@media (max-width: 900px) {
  .uwr-nav {
    padding-inline: 8px;
  }
  .uwr-nav__link {
    width: 124px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .uwr-nav__arrow {
    display: none;
  }
  .uwr-nav {
    padding-inline: 4px;
  }
  .uwr-nav__link {
    width: auto;
    min-width: 96px;
    height: 52px;
    padding: 0 10px;
  }
  .uwr-nav__icon {
    height: 24px;
  }
  .uwr-nav__label b {
    font-size: 13px;
  }
}
/* ---------- Hero banner ---------- */
.uwr-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 350px;
  overflow: hidden;
  background: #0a0a0a;
}

.uwr-banner__img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.uwr-banner__cta {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 270px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 2px solid #f9fba1;
  background: url('https://ufabetwinreal.asia/ufabetwinreal/lobby/bg_register.jpg') no-repeat center center / cover, linear-gradient(180deg, #3a3a3a, #111);
  font-size: 19.2px;
  font-weight: 600;
  color: #f5eec0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 16px rgba(249, 251, 161, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.uwr-banner__cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6), 0 0 18px rgba(249, 251, 161, 0.35);
}

@media (max-width: 640px) {
  .uwr-banner,
  .uwr-banner__img {
    min-height: 220px;
    height: 220px;
  }
  .uwr-banner__cta {
    width: 200px;
    height: 48px;
    font-size: 16px;
  }
}
/* ---------- Sections ---------- */
.uwr-section {
  padding: 36px 0 20px;
}

.uwr-section__head {
  text-align: center;
  margin-bottom: 22px;
}

.uwr-section__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--uwr-text);
  letter-spacing: 0.5px;
}

.uwr-section__desc {
  margin: 0 auto;
  max-width: 640px;
  font-size: 14px;
  color: var(--uwr-text-muted);
  line-height: 1.7;
}

.uwr-slots {
  padding: 12px 0 20px;
}

.uwr-slots__topic {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
}

.uwr-slots__desc {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
}

/* ---------- Games grid (providers) ---------- */
.uwr-games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 12px 20px 0;
  margin-bottom: 16px;
}

.uwr-game {
  display: block;
  text-align: center;
}

.uwr-game__img {
  position: relative;
  display: block;
  width: 100%;
  height: 155px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b2b2b, #151721);
}

.uwr-game__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.uwr-game:hover .uwr-game__img img {
  transform: scale(1.04);
}

.uwr-game.is-fallback .uwr-game__img::after {
  content: "เกมยอดนิยม";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.uwr-game__name {
  display: block;
  height: 24px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .uwr-games {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .uwr-games {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .uwr-games {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 8px;
  }
  .uwr-game__img {
    height: 120px;
  }
  .uwr-game__name {
    font-size: 14px;
  }
}
/* ---------- Features ---------- */
.uwr-features {
  padding-top: 12px;
  padding-bottom: 40px;
}

.uwr-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .uwr-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.uwr-feature {
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--uwr-radius);
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(245, 197, 24, 0.15);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.uwr-feature:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.1);
}

.uwr-feature__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--uwr-gold);
}

.uwr-feature__icon .uwr-icon {
  width: 24px;
  height: 24px;
}

.uwr-feature h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--uwr-gold);
}

.uwr-feature p {
  margin: 0;
  font-size: 12px;
  color: var(--uwr-text-muted);
  line-height: 1.5;
}

/* ---------- CMS / Page content ---------- */
.uwr-page {
  padding: 28px 0 48px;
}

.uwr-article {
  background: var(--uwr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--uwr-radius);
  padding: 28px 24px;
}

.uwr-article__title {
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--uwr-gold);
}

.uwr-article__content,
.uwr-cms__content {
  color: var(--uwr-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.uwr-article__content h2,
.uwr-article__content h3,
.uwr-cms__content h2,
.uwr-cms__content h3 {
  color: var(--uwr-text);
}

.uwr-article__content a,
.uwr-cms__content a {
  color: var(--uwr-gold);
  text-decoration: underline;
}

.uwr-cms {
  padding-bottom: 40px;
}

.uwr-cms__content {
  background: var(--uwr-bg-card);
  border-radius: var(--uwr-radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.uwr-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--uwr-text-muted);
}

/* ---------- Footer ---------- */
.uwr-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 16px 20px;
  margin-bottom: 8px;
  text-align: center;
}

.uwr-footer__copy {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--uwr-text-muted);
}

.uwr-footer__note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Mobile bottom bar ---------- */
.uwr-bottombar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 200;
  width: min(100%, 480px);
  height: var(--uwr-bottom-h);
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: stretch;
  background: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.55), 0 0 20px rgba(245, 197, 24, 0.08);
  overflow: hidden;
}

.uwr-bottombar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--uwr-text-muted);
  transition: color 0.15s, background 0.15s;
}

.uwr-bottombar__item .uwr-icon {
  width: 22px;
  height: 22px;
  color: var(--uwr-gold);
}

.uwr-bottombar__item:hover,
.uwr-bottombar__item:focus-visible {
  color: var(--uwr-gold);
  background: rgba(245, 197, 24, 0.06);
}

.uwr-bottombar__item--center {
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.12), transparent);
  color: var(--uwr-gold);
  border-left: 1px solid rgba(245, 197, 24, 0.15);
  border-right: 1px solid rgba(245, 197, 24, 0.15);
}

/* Desktop: hide mobile bottom bar (original site has no fixed bottom dock) */
@media (min-width: 961px) {
  .uwr-bottombar {
    display: none;
  }
  body.uwr-home .uwr-main {
    padding-bottom: 24px;
  }
  .uwr-app {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .uwr-bottombar {
    width: min(100%, 420px);
  }
}

/* ---------- WP admin bar offset ---------- */
.admin-bar .uwr-topbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .uwr-topbar {
    top: 46px;
  }
}

/* Custom logo image sizing inside badge-less layout */
.uwr-logo img {
  max-height: 48px;
  width: auto;
}
/* ==========================================================================
   Category article pages (บทความประจำหมวด)
   ========================================================================== */

/* CDN logo image */
.uwr-logo__img {
  max-height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Accent variants */
.uwr-cat {
  --awr-accent: #f5c518;
  --awr-accent-rgb: 245, 197, 24;
}

.uwr-cat--sport { --awr-accent: #4fc3f7; --awr-accent-rgb: 79, 195, 247; }
.uwr-cat--casino { --awr-accent: #e040fb; --awr-accent-rgb: 224, 64, 251; }
.uwr-cat--slot { --awr-accent: #ffd54f; --awr-accent-rgb: 255, 213, 79; }
.uwr-cat--lotto { --awr-accent: #ff7043; --awr-accent-rgb: 255, 112, 67; }
.uwr-cat--promotion { --awr-accent: #f5c518; --awr-accent-rgb: 245, 197, 24; }
.uwr-cat--wheel { --awr-accent: #ffd740; --awr-accent-rgb: 255, 215, 64; }
.uwr-cat--affiliate { --awr-accent: #40c4ff; --awr-accent-rgb: 64, 196, 255; }

/* Hero */
.uwr-article-hero {
  position: relative;
  padding: 56px 0 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(600px 260px at 50% -10%, rgba(var(--awr-accent-rgb), 0.18), transparent 70%),
    linear-gradient(180deg, rgba(var(--awr-accent-rgb), 0.06), transparent);
  border-bottom: 1px solid rgba(var(--awr-accent-rgb), 0.25);
}

.uwr-article-hero__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awr-accent);
  background: rgba(var(--awr-accent-rgb), 0.1);
  border: 1px solid rgba(var(--awr-accent-rgb), 0.4);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(var(--awr-accent-rgb), 0.35);
}

.uwr-article-hero__icon .uwr-icon {
  width: 38px;
  height: 38px;
}

.uwr-article-hero__title {
  margin: 0 0 6px;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 18px rgba(var(--awr-accent-rgb), 0.4);
}

.uwr-article-hero__en {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--awr-accent);
  text-transform: uppercase;
}

.uwr-article-hero__kick {
  max-width: 720px;
  margin: 0 auto;
  color: var(--uwr-text-muted);
  font-size: 15px;
}

/* Breadcrumb */
.uwr-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--uwr-text-muted);
}

.uwr-crumb a {
  color: var(--awr-accent);
}

.uwr-crumb__sep {
  opacity: 0.5;
}

.uwr-crumb__cur {
  color: var(--uwr-text);
}

/* Intro */
.uwr-article-intro {
  padding: 40px 0 8px;
}

.uwr-article-intro p {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #d8d8d8;
  font-size: 15.5px;
  line-height: 1.9;
}

/* Feature grid */
.uwr-article-features {
  padding: 24px 0 8px;
}

.uwr-a-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 820px) {
  .uwr-a-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.uwr-a-feature {
  position: relative;
  padding: 24px 18px;
  background: linear-gradient(160deg, rgba(var(--awr-accent-rgb), 0.09), rgba(255, 255, 255, 0.02) 55%);
  border: 1px solid rgba(var(--awr-accent-rgb), 0.28);
  border-radius: var(--uwr-radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.uwr-a-feature::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(var(--awr-accent-rgb), 0.22), transparent);
  pointer-events: none;
}

.uwr-a-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--awr-accent-rgb), 0.55);
}

.uwr-a-feature__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--awr-accent);
  background: rgba(var(--awr-accent-rgb), 0.12);
  border-radius: 14px;
}

.uwr-a-feature__icon .uwr-icon {
  width: 28px;
  height: 28px;
}

.uwr-a-feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.uwr-a-feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--uwr-text-muted);
}

/* Highlight list */
.uwr-article-lists {
  padding: 32px 0 8px;
}

.uwr-a-lists {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uwr-a-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--uwr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--awr-accent);
  border-radius: var(--uwr-radius-sm);
}

.uwr-a-item__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--awr-accent);
  box-shadow: 0 0 10px rgba(var(--awr-accent-rgb), 0.8);
}

.uwr-a-item h3 {
  margin: 0 0 5px;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
}

.uwr-a-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--uwr-text-muted);
}

/* FAQ */
.uwr-article-faq {
  padding: 32px 0 8px;
}

.uwr-article-faq__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.uwr-faq {
  margin-bottom: 10px;
  background: var(--uwr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--uwr-radius-sm);
  overflow: hidden;
}

.uwr-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  user-select: none;
}

.uwr-faq summary::-webkit-details-marker {
  display: none;
}

.uwr-faq__mark {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(var(--awr-accent-rgb), 0.15);
  border: 1px solid var(--awr-accent);
}

.uwr-faq__mark::before,
.uwr-faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--awr-accent);
  transform: translate(-50%, -50%);
}

.uwr-faq__mark::before {
  width: 9px;
  height: 1.5px;
}

.uwr-faq__mark::after {
  width: 1.5px;
  height: 9px;
  transition: transform 0.2s ease;
}

.uwr-faq[open] .uwr-faq__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.uwr-faq__body {
  padding: 0 18px 16px;
}

.uwr-faq__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--uwr-text-muted);
}

/* CTA */
.uwr-article-cta {
  padding: 40px 0 56px;
}

.uwr-cta {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  background:
    radial-gradient(420px 180px at 50% 0%, rgba(var(--awr-accent-rgb), 0.18), transparent 70%),
    linear-gradient(180deg, rgba(var(--awr-accent-rgb), 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(var(--awr-accent-rgb), 0.35);
  border-radius: var(--uwr-radius);
  overflow: hidden;
}

.uwr-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3.6vw, 28px);
  font-weight: 800;
  color: #fff;
}

.uwr-cta p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--uwr-text-muted);
  font-size: 14.5px;
}

.uwr-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.uwr-cta .uwr-icon {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  margin-right: 6px;
}
