html,
body {
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #f2eeee;
  background: #030000;
  font-family: Rajdhani, Arial, sans-serif;
}

:root {
  --ur-hover-ease: cubic-bezier(.22, .61, .36, 1);
  --ur-hover-time: .42s;
}

.ur-home-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ur-home-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(2px);
}

.ur-home-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  border: 1px solid rgba(232, 18, 18, .5);
  background: #050000;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .8), 0 0 45px rgba(206, 0, 0, .28);
}

.ur-home-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .82);
  color: #fff;
  cursor: pointer;
  font: 700 18px/1 Arial, sans-serif;
  transition: background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-home-popup-close:hover {
  background: #e00000;
  border-color: #ff4b4b;
}

.ur-home-popup-slide {
  display: none;
}

.ur-home-popup-slide.is-active {
  display: block;
}

.ur-home-popup-slide a,
.ur-home-popup-slide img {
  display: block;
  width: 100%;
}

.ur-home-popup-slide img {
  max-height: calc(100vh - 56px);
  object-fit: contain;
  background: #000;
}

.ur-home-popup-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .68);
  color: #fff;
  cursor: pointer;
  font: 700 38px/1 Arial, sans-serif;
  transform: translateY(-50%);
  transition: background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-home-popup-nav:hover {
  background: rgba(214, 0, 0, .82);
  border-color: rgba(255, 75, 75, .8);
}

.ur-home-popup-prev {
  left: 12px;
}

.ur-home-popup-next {
  right: 12px;
}

.ur-home-popup-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ur-home-popup-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.ur-home-popup-dots button.is-active {
  background: #e00000;
  border-color: #ff4b4b;
}

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

.ur-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0, rgba(200, 0, 0, .22), transparent 34%),
    linear-gradient(180deg, #080000 0%, #030000 54%, #000 100%);
}

.ur-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.08) 45%, rgba(0,0,0,.68)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.05) 62%, #030000),
    url("../images/unitred-hero.png") top center / cover no-repeat;
}

.ur-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #030000 90%);
}

.ur-nav,
.ur-hero-copy,
.ur-main,
.ur-footer-grid,
.ur-copy {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.ur-nav {
  position: relative;
  z-index: 4;
  top: 26px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(90deg, transparent, rgba(8, 0, 0, .62) 18%, rgba(10, 0, 0, .72) 50%, rgba(8, 0, 0, .62) 82%, transparent);
  border: 0;
  box-shadow: none;
}

.ur-brand {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: radial-gradient(circle, rgba(220,0,0,.36), transparent 67%);
  text-shadow: 0 0 18px rgba(255,0,0,.65);
}

.ur-brand-mark {
  font-size: 56px;
  letter-spacing: -2px;
}

.ur-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 0 1 auto;
  margin: 0 auto;
}

.ur-menu a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: #e6e2e2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color var(--ur-hover-time) var(--ur-hover-ease), background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease), box-shadow var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-menu a:hover {
  color: #fff;
  background: linear-gradient(180deg, #ef1616, #8d0202);
  border-color: rgba(255, 80, 80, .58);
  box-shadow: 0 0 18px rgba(255, 0, 0, .34);
}

.ur-panel-link {
  min-width: 178px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f21d1d, #930303);
  border: 1px solid rgba(255,80,80,.58);
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(226,0,0,.46), inset 0 1px 0 rgba(255,255,255,.22);
  transition: color var(--ur-hover-time) var(--ur-hover-ease), background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease), box-shadow var(--ur-hover-time) var(--ur-hover-ease), transform var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-menu-state {
  display: none;
}

.ur-menu-button {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(255,0,0,.5);
}

.ur-menu-button span {
  width: 22px;
  height: 2px;
  background: #fff;
}

.ur-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

.ur-hero-king {
  position: absolute;
  z-index: 3;
  top: 228px;
  right: max(34px, calc((100% - 1180px) / 2));
  width: 330px;
  min-height: 128px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(145deg, rgba(18, 0, 0, .82), rgba(4, 0, 0, .92));
  border: 1px solid rgba(255, 0, 0, .46);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .48), inset 0 0 32px rgba(255, 0, 0, .08);
  backdrop-filter: blur(3px);
}

.ur-hero-king::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 0, 0, .42), transparent 35%, rgba(255, 120, 0, .22));
  opacity: .45;
  pointer-events: none;
}

.ur-hero-king-photo,
.ur-hero-king > div:last-child {
  position: relative;
  z-index: 1;
}

.ur-hero-king-photo {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 0, 0, .24), rgba(0, 0, 0, .82));
  border: 1px solid rgba(255, 0, 0, .5);
  border-radius: 5px;
}

.ur-hero-king-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ur-hero-king span {
  color: #ff3d3d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-hero-king strong {
  display: block;
  overflow: hidden;
  margin: 6px 0 4px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ur-hero-king small {
  color: #cfc4c4;
  font-size: 14px;
  font-weight: 700;
}

.ur-kicker {
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255,0,0,.48);
}

.ur-kicker::before,
.ur-kicker::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 1px;
  margin: 0 13px 7px 0;
  background: #d90000;
  box-shadow: 0 0 12px #f00;
}

.ur-kicker::after {
  margin: 0 0 7px 13px;
}

.ur-hero h1 {
  margin: 0;
  color: #f8f8f8;
  font-size: 88px;
  font-weight: 800;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0,0,0,.78), 0 0 28px rgba(255,0,0,.42);
}

.ur-hero h1 span,
.ur-hero h2 span,
.ur-shop h3 span,
.ur-footer-logo span {
  color: #f20e0e;
}

.ur-hero h2 {
  margin: 12px 0 0;
  color: #f6f6f6;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-hero p {
  width: 420px;
  max-width: 100%;
  margin: 22px 0 0;
  color: #d8d1d1;
  font-size: 20px;
  line-height: 1.45;
}

.ur-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.ur-btn,
.btn,
button,
input[type="submit"] {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  color: #fff !important;
  font: 800 15px Rajdhani, Arial, sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--ur-hover-time) var(--ur-hover-ease), background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease), box-shadow var(--ur-hover-time) var(--ur-hover-ease), transform var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-btn-main,
.btn-primary,
.btn-warning,
.btn-success,
button,
input[type="submit"] {
  background: linear-gradient(180deg, #f21b1b, #940303) !important;
  border: 1px solid rgba(255,70,70,.72) !important;
  box-shadow: 0 0 24px rgba(205,0,0,.42), inset 0 1px 0 rgba(255,255,255,.2);
}

.ur-btn-alt,
.btn-default {
  background: rgba(7,0,0,.64) !important;
  border: 1px solid rgba(255,0,0,.55) !important;
}

.ur-panel-link:hover,
.ur-btn-main:hover,
.btn-primary:hover,
.btn-warning:hover,
.btn-success:hover,
button:hover,
input[type="submit"]:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #090000, #000) !important;
  border-color: rgba(255, 0, 0, .72) !important;
  box-shadow: 0 0 18px rgba(255, 0, 0, .22), inset 0 0 18px rgba(255, 0, 0, .07);
  transform: translateY(-.5px);
}

.ur-btn-alt:hover,
.btn-default:hover,
.ur-card-row a:hover,
.ur-footer a:hover,
.ur-copy a:hover,
.ur-register-link:hover {
  color: #fff !important;
  background: linear-gradient(180deg, #ef1616, #870202) !important;
  border-color: rgba(255, 85, 85, .62) !important;
  box-shadow: 0 0 16px rgba(255, 0, 0, .22);
}

.ur-card,
.ur-arena-card,
.ur-arena-top-player,
.ur-patent-card,
.ur-info-list li,
.ur-features article,
.ur-news-item,
.ur-card-row a,
.ur-footer a,
.ur-copy a,
.ur-register-link {
  transition: color var(--ur-hover-time) var(--ur-hover-ease), background var(--ur-hover-time) var(--ur-hover-ease), border-color var(--ur-hover-time) var(--ur-hover-ease), box-shadow var(--ur-hover-time) var(--ur-hover-ease), transform var(--ur-hover-time) var(--ur-hover-ease);
}

.ur-main {
  position: relative;
  z-index: 3;
  margin-top: -118px;
}

.ur-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 136px;
  margin-bottom: 28px;
  padding: 26px 30px;
  background: rgba(10,0,0,.88);
  border: 1px solid rgba(255,0,0,.48);
  border-radius: 8px;
  box-shadow: 0 0 35px rgba(120,0,0,.28), inset 0 0 35px rgba(255,0,0,.06);
}

.ur-features article {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,0,0,.18);
}

.ur-features article:last-child {
  border-right: 0;
}

.ur-features span {
  display: block;
  color: #e90000;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,0,0,.65);
}

.ur-features strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-features p {
  margin: 5px 0 0;
  color: #bdb7b7;
  font-size: 13px;
  line-height: 1.3;
}

.ur-home-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 22px;
}

.ur-dashboard-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  margin-bottom: 28px;
}

.ur-card,
.ur-shop,
.ur-page-card,
.panel {
  background: linear-gradient(180deg, rgba(14,0,0,.92), rgba(5,0,0,.97)) !important;
  border: 1px solid rgba(255,0,0,.45) !important;
  border-radius: 6px !important;
  box-shadow: 0 0 32px rgba(117,0,0,.25), inset 0 0 35px rgba(255,0,0,.045);
}

.ur-card:hover,
.ur-arena-card:hover,
.ur-patent-card:hover,
.ur-info-list li:hover,
.ur-features article:hover,
.ur-news-item:hover {
  background: linear-gradient(145deg, rgba(122, 0, 0, .88), rgba(42, 0, 0, .94)) !important;
  border-color: rgba(255, 80, 80, .52) !important;
  box-shadow: 0 0 22px rgba(255, 0, 0, .2), inset 0 0 24px rgba(0, 0, 0, .12);
}

.ur-card:hover h3::before,
.ur-page-card:hover h2::before,
.ur-patent-card:hover a,
.ur-patent-card:hover p,
.ur-arena-card:hover .ur-arena-card-head > span,
.ur-arena-card:hover .ur-arena-top-player em,
.ur-features article:hover span,
.ur-news-item:hover .ur-news-badge {
  color: #050000 !important;
  background: #050000 !important;
  border-color: rgba(0, 0, 0, .42) !important;
  box-shadow: none !important;
}

.ur-patent-card:hover a,
.ur-patent-card:hover p,
.ur-arena-card:hover .ur-arena-top-player em,
.ur-features article:hover span {
  background: transparent !important;
}

.ur-arena-card:hover .ur-arena-card-head > span,
.ur-news-item:hover .ur-news-badge {
  color: #fff !important;
  background: #050000 !important;
}

.ur-card > header,
.ur-page-card > header,
.panel-heading {
  padding: 20px 28px !important;
  background: rgba(35,0,0,.48) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,0,0,.22) !important;
}

.ur-card h3,
.ur-page-card h2,
.panel-title {
  margin: 0;
  color: #fff !important;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-card h3::before,
.ur-page-card h2::before,
.panel-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: #e60000;
  box-shadow: 0 0 12px #f00;
}

.ur-server-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  padding: 28px;
}

.ur-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(0,0,0,.26);
}

.ur-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 8px;
  color: #ded8d8;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ur-info-list span {
  font-weight: 800;
}

.ur-info-list span::before {
  content: ">";
  margin-right: 10px;
  color: #e80000;
}

.ur-info-list strong {
  color: #fff;
}

.ur-online {
  color: #00e050 !important;
}

.ur-crystal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.ur-server-logo {
  min-height: 190px;
  display: grid;
  place-items: center;
}

.ur-server-logo img {
  width: min(100%, 240px);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 0, 0, .45));
}

.ur-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ur-card-row a {
  padding: 9px 16px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255,0,0,.35);
}

.ur-news,
.panel-body {
  padding: 22px 26px !important;
}

.ur-news-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 0, 0, .16);
}

.ur-news-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.ur-news-item a {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 8px 14px;
  align-items: start;
}

.ur-news-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: #8f0505;
  border: 1px solid rgba(255, 60, 60, .35);
}

.ur-news-item strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.ur-news-item small {
  color: #a9a0a0;
  font-size: 13px;
  font-weight: 700;
}

.ur-news-item p {
  grid-column: 2 / -1;
  margin: 0;
  color: #cfc6c6;
  line-height: 1.35;
}

.ur-news-full {
  color: #e8dfdf;
  line-height: 1.55;
}

.ur-page-actions {
  padding: 0 26px 26px;
}

.ur-news-compact .ur-news-item a {
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
}

.ur-news-compact .ur-news-badge,
.ur-news-compact .ur-news-item p {
  display: none;
}

.ur-news-compact .ur-news-item strong {
  overflow: hidden;
  color: #f3eeee;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-news-compact .ur-news-item small {
  white-space: nowrap;
}

.ur-news a,
.panel a {
  color: #ff3c3c;
}

.ur-news * {
  color: #e9e2e2 !important;
}

.ur-arena-showcase {
  margin: 28px 0;
}

.ur-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ur-section-title h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-section-title h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: #e60000;
  box-shadow: 0 0 12px #f00;
}

.ur-section-title p {
  margin: 4px 0 0;
  color: #b9b0b0;
  font-size: 14px;
}

.ur-arena-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ur-arena-card {
  position: relative;
  min-height: 0;
  display: block;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(26, 0, 0, .96), rgba(7, 0, 0, .98));
  border: 1px solid rgba(255, 0, 0, .42);
  border-radius: 6px;
  box-shadow: inset 0 0 24px rgba(255, 0, 0, .05), 0 10px 24px rgba(0, 0, 0, .28);
}

.ur-arena-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -45px 25%;
  height: 92px;
  background: radial-gradient(circle, rgba(255, 0, 0, .28), transparent 68%);
  pointer-events: none;
}

.ur-arena-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 0, 0, .2);
}

.ur-arena-card-head strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ur-arena-card-head small {
  display: block;
  margin-top: 1px;
  color: #b9b0b0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ur-arena-card-head > span {
  flex: 0 0 auto;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(180deg, #e20b0b, #840202);
  border: 1px solid rgba(255, 80, 80, .48);
  border-radius: 4px;
}

.ur-arena-top-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.ur-arena-top-player {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px 36px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 0, 0, .16);
  border-radius: 5px;
}

.ur-arena-top-first {
  border-color: rgba(255, 0, 0, .42);
  background: linear-gradient(90deg, rgba(130, 0, 0, .34), rgba(0, 0, 0, .22));
}

.ur-arena-position {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 0, 0, .2);
  border: 1px solid rgba(255, 0, 0, .36);
  border-radius: 4px;
}

.ur-arena-top-player img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  background: rgba(0, 0, 0, .52);
  border: 1px solid rgba(255, 0, 0, .38);
  border-radius: 4px;
}

.ur-arena-top-name {
  min-width: 0;
}

.ur-arena-top-name strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-arena-top-name small {
  display: block;
  overflow: hidden;
  color: #bfb7b7;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-arena-top-player em {
  min-width: 48px;
  justify-self: end;
  color: #ff4242;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.ur-arena-empty-card {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 0, 0, .16);
  border-radius: 5px;
}

.ur-arena-empty-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-arena-empty-card p {
  margin: 3px 0 0;
  color: #bfb7b7;
  font-size: 12px;
}

.ur-arena-rank {
  position: absolute;
  top: 9px;
  right: 10px;
  color: #ff4a4a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.ur-arena-avatar {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, rgba(255, 0, 0, .22), rgba(0, 0, 0, .75));
  border: 1px solid rgba(255, 0, 0, .42);
  border-radius: 5px;
}

.ur-arena-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ur-arena-info {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ur-arena-info strong {
  display: block;
  max-width: calc(100% - 44px);
  overflow: hidden;
  color: #ff4444;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ur-arena-info h4 {
  margin: 6px 0 3px;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-arena-info p {
  margin: 0;
  overflow: hidden;
  color: #bfb7b7;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-arena-info span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-top: 9px;
  padding: 0 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(180deg, #e20b0b, #7e0202);
  border: 1px solid rgba(255, 80, 80, .5);
  border-radius: 4px;
}

.ur-arena-card-empty {
  opacity: .74;
}

.ur-arena-full-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ur-arena-table-card {
  overflow: hidden;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 0, 0, .28);
  border-radius: 6px;
}

.ur-arena-table-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(55, 0, 0, .42);
  border-bottom: 1px solid rgba(255, 0, 0, .18);
}

.ur-arena-table-card h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-arena-table-card header span {
  color: #ff5555;
  font-size: 12px;
  font-weight: 800;
}

.ur-arena-table {
  width: 100%;
  border-collapse: collapse;
}

.ur-arena-table th,
.ur-arena-table td {
  padding: 10px 12px;
  color: #e8e1e1;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.ur-arena-table th {
  color: #ff5555;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-arena-table td:first-child,
.ur-arena-table th:first-child {
  width: 44px;
  text-align: center;
}

.ur-arena-table-player {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.ur-arena-table-player img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border: 1px solid rgba(255, 0, 0, .36);
  border-radius: 4px;
}

.ur-arena-table-player span {
  min-width: 0;
}

.ur-arena-table-player strong,
.ur-arena-table-player small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-arena-table-player strong {
  color: #fff;
  font-size: 14px;
}

.ur-arena-table-player small {
  color: #aaa0a0;
  font-size: 12px;
}

.ur-arena-empty {
  color: #aaa0a0 !important;
  text-align: center !important;
}

.ur-patents {
  margin-top: 28px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(18, 0, 0, .86), rgba(4, 0, 0, .94));
  border: 1px solid rgba(255, 0, 0, .32);
  border-radius: 6px;
  box-shadow: inset 0 0 34px rgba(255, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .32);
}

.ur-patents .ur-section-title {
  margin-bottom: 20px;
}

.ur-patents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.ur-patent-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 11px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 0, 0, .2);
  border-radius: 5px;
}

.ur-patent-card:hover {
  border-color: rgba(255, 0, 0, .46);
  background: rgba(65, 0, 0, .28);
}

.ur-patent-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 0, 0, .18), rgba(0, 0, 0, .62));
  border: 1px solid rgba(255, 0, 0, .26);
  border-radius: 5px;
}

.ur-patent-icon img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, .28));
}

.ur-patent-card strong,
.ur-patent-card a,
.ur-patent-card small,
.ur-patent-card p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ur-patent-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-patent-card a {
  display: block;
  margin-top: 3px;
  color: #ff4444;
  font-size: 15px;
  font-weight: 800;
}

.ur-patent-card small {
  display: block;
  margin-top: 2px;
  color: #d8d0d0;
  font-size: 12px;
  font-weight: 700;
}

.ur-patent-card p {
  margin: 3px 0 0;
  color: #a9a0a0;
  font-size: 13px;
  font-weight: 700;
}

.ur-patent-empty {
  opacity: .68;
}

.ur-shop {
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  margin-top: 28px;
  padding: 0 54px 0 30px;
}

.ur-shop-art {
  height: 130px;
  background:
    radial-gradient(circle at 42% 70%, rgba(255,160,0,.35), transparent 42%),
    linear-gradient(135deg, transparent 12%, rgba(255,40,0,.38), transparent 62%);
  clip-path: polygon(8% 40%, 35% 15%, 86% 18%, 96% 48%, 76% 86%, 20% 82%);
}

.ur-shop h3 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-shop p {
  margin: 2px 0 0;
  color: #e5dddd;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ur-account-body,
.ur-shop-preview-body {
  padding: 24px 26px;
}

.ur-login-form {
  display: grid;
  gap: 16px;
  max-width: 380px;
}

.ur-login-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 380px;
}

.ur-login-actions .ur-btn {
  flex: 1;
  min-width: 150px;
}

.ur-register-link {
  color: #ff4a4a;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-login-form input {
  max-width: 380px;
}

.ur-user-summary {
  display: grid;
  gap: 18px;
}

.ur-user-welcome {
  display: grid;
  gap: 2px;
}

.ur-user-welcome span {
  color: #bfb6b6;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-user-welcome strong {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.ur-user-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ur-user-summary li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 0, 0, .15);
}

.ur-user-summary li span {
  color: #cfc7c7;
}

.ur-user-summary li strong {
  color: #fff;
  text-align: right;
}

.ur-shop-preview-body {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 86% 30%, rgba(255, 0, 0, .2), transparent 28%),
    linear-gradient(135deg, rgba(255, 0, 0, .08), transparent 58%);
}

.ur-shop-preview-body strong {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.ur-shop-preview-body p {
  max-width: 430px;
  margin: 0;
  color: #d6cdcd;
  font-size: 17px;
}

.ur-page-card {
  padding-bottom: 26px;
}

.ur-page-card header p {
  margin: 8px 0 0;
  color: #cfc7c7;
}

.ur-feedback {
  padding: 18px 26px 0;
  color: #ffb8b8;
}

.ur-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 24px 26px 0;
}

.ur-form-compact {
  grid-template-columns: minmax(240px, 420px);
  align-items: start;
}

.ur-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,0,0,.34);
  outline: none;
}

table {
  width: 100%;
  color: #eee;
  border-collapse: collapse;
}

td,
th {
  padding: 10px;
  border: 1px solid rgba(255,0,0,.22) !important;
}

.col-xs-12,
.col-sm-8,
.col-md-8,
.col-lg-9,
.col-md-9,
.col-sm-12 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.ur-panel-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 26px;
}

.ur-panel-sections section,
.ur-webshop-side,
.ur-webshop-content {
  padding: 22px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 0, 0, .2);
  border-radius: 6px;
}

.ur-panel-sections h3,
.ur-webshop-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-panel-sections a {
  display: block;
  margin-bottom: 9px;
  padding: 10px 12px;
  color: #e9dfdf;
  font-weight: 700;
  background: rgba(70, 0, 0, .32);
  border: 1px solid rgba(255, 0, 0, .16);
  border-radius: 4px;
}

.ur-panel-sections a:hover,
.ur-webshop-categories a:hover,
.ur-webshop-history a:hover,
.ur-webshop-items a:hover {
  color: #fff;
  border-color: rgba(255, 0, 0, .5);
  background: rgba(145, 0, 0, .35);
}

.ur-webshop-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  padding: 26px;
}

.ur-webshop-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.ur-webshop-categories a,
.ur-webshop-history a,
.ur-webshop-items a {
  color: #ff5959;
}

.ur-webshop-categories ul,
.ur-webshop-history ul,
.ur-webshop-items ul {
  margin: 0;
  padding-left: 18px;
}

.ur-webshop-categories table,
.ur-webshop-history table,
.ur-webshop-items table {
  font-size: 14px;
}

.ur-webshop-items img {
  max-width: 100%;
  height: auto;
}

.ur-ranking-controls {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.ur-ranking-controls label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-ranking-controls #RankingOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.ur-ranking-controls #RankingOptions > div {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  text-align: left !important;
}

.ur-process-time {
  margin-top: 18px;
  color: #9d9292;
  text-align: center;
}

.ur-simple-content {
  padding: 24px 26px;
  color: #e9dfdf;
  line-height: 1.5;
}

.ur-simple-content .ur-form {
  padding-left: 0;
  padding-right: 0;
}

.ur-simple-content > .ur-btn {
  margin-top: 18px;
}

.ur-two-columns,
.ur-account-grid,
.ur-char-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 26px;
}

.ur-two-columns section,
.ur-character-images,
.ur-char-image {
  padding: 22px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 0, 0, .2);
  border-radius: 6px;
}

.ur-two-columns h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-char-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.ur-char-image img,
.ur-character-images img {
  max-width: 100%;
  height: auto;
}

.ur-vault-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 26px 0;
}

.ur-vault-stats span {
  padding: 10px 14px;
  color: #d8cece;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 0, 0, .18);
  border-radius: 4px;
}

.ur-webvault-page form {
  padding: 0 26px 26px;
}

.ur-vault-warning {
  padding: 18px 0 0;
}

.ur-vault-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
}

.ur-vault-actions-bottom {
  padding-bottom: 0;
}

.ur-vault-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ur-vault-column {
  overflow: hidden;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 0, 0, .2);
  border-radius: 6px;
}

.ur-vault-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(35, 0, 0, .48);
  border-bottom: 1px solid rgba(255, 0, 0, .18);
}

.ur-vault-column-head h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-vault-column-head label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #d8cece;
  font-weight: 700;
  white-space: nowrap;
}

.ur-vault-items {
  min-height: 260px;
  max-height: 640px;
  overflow: auto;
  padding: 16px;
}

.ur-vault-items table,
.VaultItemsTable {
  width: 100%;
  border-collapse: collapse;
}

.ur-vault-items td,
.VaultItemsTable td {
  vertical-align: top;
}

.ur-vault-items input[type="checkbox"] {
  width: auto;
  min-height: 0;
  accent-color: #d90000;
}

.WebVaultWarningMessage {
  display: inline-block;
  padding: 10px 14px;
  color: #ffdede;
  background: rgba(160, 0, 0, .26);
  border: 1px solid rgba(255, 0, 0, .36);
  border-radius: 4px;
}

.WebShopCategoriesTable,
.WebShopSubCategoriesTable {
  margin-bottom: 14px;
}

.WebShopCategoriesTable td,
.WebShopSubCategoriesTable td {
  line-height: 2;
}

.WebShopSelectedCategory a,
.WebShopSelectedCategory {
  color: #fff !important;
  font-weight: 800;
}

.WebShopItemsTable {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.WebShopItemsTable td {
  background: rgba(0, 0, 0, .28);
  border-color: rgba(255, 0, 0, .18) !important;
}

.WebShopItemListImage {
  width: 86px;
}

.WebShopItemListImage img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.WebShopItemName {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

#WebShopItemListPrice,
#WebShopItemListSold,
.WebShopItemClasses {
  color: #cfc6c6;
}

.WebShopItemListBuy a,
.WebShopBuyItemButton {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f21b1b, #940303);
  border: 1px solid rgba(255, 70, 70, .72);
  border-radius: 4px;
}

.WebShopItemConfigTable,
.WebShopFullHistoryTable,
.WebShopHistorySmallList {
  background: rgba(0, 0, 0, .18);
}

.ur-webshop-content {
  min-width: 0;
  overflow: hidden;
}

.ur-webshop-grid {
  grid-template-columns: 250px minmax(0, 1fr);
}

.WebShopItemConfigTable {
  display: block;
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, .24);
  border-radius: 6px;
}

.WebShopItemConfigTable > tbody,
.WebShopItemConfigTable > tbody > tr,
.WebShopItemConfigTable > tbody > tr > td {
  display: block;
  width: 100% !important;
}

.WebShopItemConfigTable > tbody > tr {
  border-bottom: 1px solid rgba(255, 0, 0, .14);
}

.WebShopItemConfigTable > tbody > tr:last-child {
  border-bottom: 0;
}

.WebShopItemConfigTable > tbody > tr > td {
  padding: 16px !important;
  background: rgba(0, 0, 0, .18) !important;
}

.WebShopItemConfigTable > tbody > tr:first-child {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.WebShopItemConfigTable > tbody > tr:first-child > td {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.WebShopItemImgAndDescTable,
.WebShopItemImgAndDescTable tbody,
.WebShopItemImgAndDescTable tr,
.WebShopItemImgAndDescTable td {
  display: block;
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
  text-align: center !important;
}

.WebShopItemImgAndDescTable {
  padding: 14px;
  background: rgba(0, 0, 0, .28) !important;
  border: 1px solid rgba(255, 0, 0, .18) !important;
  border-radius: 6px;
}

.WebShopItemImgAndDescTable img {
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) {
  display: block;
  min-width: 0;
  line-height: 1.75;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) br {
  display: block !important;
}

.WebShopItemConfigTable select,
.WebShopItemConfigTable input[type="text"],
.WebShopItemConfigTable input[type="number"] {
  width: 100%;
  max-width: 210px;
  min-height: 40px;
  margin: 4px 10px 10px 0;
}

.WebShopItemConfigTable input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin: 0 8px 9px 0;
  accent-color: #d90000;
}

.WebShopItemConfigTable input[name="excopt[]"] {
  display: inline-block;
  vertical-align: middle;
}

.WebShopExcellentTitle {
  display: block;
  grid-column: 1 / -1;
  margin: 8px 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.WebShopItemPaymentChoose,
.WebShopItemFinalPrice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 14px 6px 0;
  color: #fff;
  font-weight: 800;
}

.WebShopItemFinalPrice span {
  color: #ff4a4a;
  font-size: 22px;
}

#discountCode {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 8px;
}

.WebShopBuyItemButton {
  width: auto !important;
  min-width: 160px;
  max-width: 220px;
  min-height: 42px;
  margin: 12px auto 6px;
  padding: 0 28px;
  box-shadow: 0 0 24px rgba(205, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.WebShopItemConfigTable {
  overflow: visible;
}

.WebShopItemConfigTable td {
  white-space: normal !important;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table {
  display: block;
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody {
  display: grid;
  width: 100%;
  gap: 0;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-bottom: 1px solid rgba(255, 0, 0, .14);
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr > td {
  padding: 14px 16px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 0, 0, .14) !important;
  background: rgba(0, 0, 0, .1) !important;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr > td:last-child {
  border-right: 0 !important;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr > td[colspan] {
  grid-column: 1 / -1;
  border-right: 0 !important;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr:first-child > td {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 66px;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table > tbody > tr:nth-child(2) > td {
  display: block;
  line-height: 1.85;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table select {
  flex: 1 1 auto;
  max-width: 190px;
  margin: 0;
}

.WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) > table input[type="checkbox"] {
  flex: 0 0 auto;
}

.WebShopItemConfigTable input.WebShopBuyItemButton {
  width: 180px !important;
  min-width: 0;
  max-width: 180px !important;
  min-height: 40px;
  display: inline-flex !important;
  padding: 0 22px;
}

.ur-footer {
  margin-top: 52px;
  padding: 42px 0 18px;
  background: linear-gradient(180deg, #050000, #000);
  border-top: 1px solid rgba(255,0,0,.18);
}

.ur-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .8fr;
  gap: 54px;
}

.ur-footer-logo {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-footer p {
  max-width: 270px;
  color: #bbb2b2;
  line-height: 1.4;
}

.ur-footer h4 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.ur-footer a {
  display: block;
  margin-bottom: 8px;
  color: #cfc8c8;
}

.ur-copy {
  margin-top: 34px;
  padding-top: 18px;
  color: #8c8585;
  font-size: 13px;
  border-top: 1px solid rgba(255,0,0,.14);
}

.ur-copy span {
  display: inline-block;
  margin-left: 12px;
}

.ur-copy a {
  display: inline;
  margin: 0;
  color: #ff4444;
  font-weight: 800;
}

.ur-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(330px, calc(100vw - 32px));
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: linear-gradient(180deg, #23d366 0%, #128c3b 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 18px rgba(35,211,102,.28);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.ur-whatsapp-float:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #2ee879 0%, #0f7d34 100%);
  box-shadow: 0 16px 34px rgba(0,0,0,.52), 0 0 24px rgba(35,211,102,.36);
  color: #fff;
}

@media (max-width: 1020px) {
  .ur-menu {
    gap: 14px;
  }

  .ur-hero-king {
    right: 24px;
    width: 300px;
  }

  .ur-arena-grid,
  .ur-arena-full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ur-menu-button {
    display: flex;
  }

  .ur-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 15px 0;
    justify-items: center;
  }

  .ur-menu-state:checked ~ .ur-menu {
    display: grid;
  }

  .ur-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .ur-hero h1 {
    font-size: 58px;
  }

  .ur-hero-king {
    position: relative;
    top: auto;
    right: auto;
    width: min(calc(100% - 34px), 360px);
    margin: 28px auto 0;
  }

  .ur-features,
  .ur-home-grid,
  .ur-dashboard-grid,
  .ur-server-layout,
  .ur-shop,
  .ur-footer-grid,
  .ur-form,
  .ur-panel-sections,
  .ur-webshop-grid,
  .ur-two-columns,
  .ur-account-grid,
  .ur-char-layout,
  .ur-ranking-controls,
  .ur-vault-grid,
  .ur-arena-grid,
  .ur-arena-full-grid {
    grid-template-columns: 1fr;
  }

  .ur-features article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,0,0,.18);
  }
}

@media (max-width: 560px) {
  .ur-hero {
    min-height: 640px;
  }

  .ur-hero::after {
    height: 185px;
  }

  .ur-hero-copy {
    padding-top: 110px;
  }

  .ur-hero-king {
    grid-template-columns: 78px 1fr;
    min-height: 108px;
    padding: 12px;
  }

  .ur-hero-king-photo {
    width: 78px;
    height: 78px;
  }

  .ur-hero-king strong {
    font-size: 20px;
  }

  .ur-hero h1 {
    font-size: 46px;
  }

  .ur-hero h2 {
    font-size: 25px;
  }

  .ur-actions,
  .ur-btn {
    width: 100%;
  }

  .ur-copy span {
    display: block;
    margin: 8px 0 0;
  }

  .ur-news-item a {
    grid-template-columns: 1fr;
  }

  .ur-news-item p {
    grid-column: auto;
  }

  .ur-section-title {
    align-items: stretch;
    flex-direction: column;
  }

  .ur-arena-card {
    grid-template-columns: 72px 1fr;
  }

  .ur-arena-avatar {
    width: 72px;
    height: 72px;
  }

  .ur-arena-table th,
  .ur-arena-table td {
    padding: 9px 8px;
  }

  .WebShopItemConfigTable > tbody > tr:first-child,
  .WebShopItemConfigTable > tbody > tr:first-child > td:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .WebShopItemConfigTable select,
  .WebShopItemConfigTable input[type="text"],
  .WebShopItemConfigTable input[type="number"] {
    max-width: 100%;
    width: 100%;
  }

  .WebShopBuyItemButton {
    width: auto !important;
    max-width: 220px;
  }

  .ur-whatsapp-float {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    min-height: 44px;
    padding: 11px 14px;
    font-size: 13px;
  }
}
