:root {
  --orange: #ff7a00;
  --orange-dark: #e56600;
  --orange-light: #ff9a3d;
  --dark: #1a1a1f;
  --darker: #111116;
  --gray: #5a5a66;
  --light-bg: #f7f7fa;
  --white: #ffffff;
  --border: #e2e2ea;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
  background: var(--white);
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.xt1i520nz {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}

.xt17p5jeh {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.xtvkz6zwy {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--dark);
  flex-shrink: 0;
}

.xtils4ydk {
  color: var(--orange);
}

.xt2nghjpx {
  display: flex;
  align-items: center;
}

.xt13wdqns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.xt13wdqns>li {
  position: relative;
}

.xt13wdqns>li>a {
  display: block;
  padding: 8px 12px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  border-radius: 8px;
  transition: all .25s ease;
  white-space: nowrap;
}

.xt13wdqns>li>a:hover {
  background: var(--orange);
  color: #fff;
}

.xt13wdqns li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 50;
}

.xt13wdqns li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.xt13wdqns li ul li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .9rem;
  transition: all .2s;
}

.xt13wdqns li ul li a:hover {
  background: var(--light-bg);
  color: var(--orange);
}

.xt17b0t7i {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.xt17b0t7i span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

.xt17b0t7i.xt2cbhgxl span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.xt17b0t7i.xt2cbhgxl span:nth-child(2) {
  opacity: 0;
}

.xt17b0t7i.xt2cbhgxl span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.xt10acwgu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 90;
}

.xt10acwgu.xt2cbhgxl {
  opacity: 1;
  visibility: visible;
}

.xt281sxy6 {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1f 0%, #2a2018 60%, #3a2410 100%);
  overflow: hidden;
  padding: 80px 20px;
}
table{
display:block;
max-width:fit-content;
width:100%;
overflow:auto;
margin:0 auto;
border-collapse:collapse;
border-radius:24px;
background:#fffaf5;
border:2px solid rgba(229,102,0,.14);
box-shadow:0 18px 48px rgba(229,102,0,.14);
}

table tbody{
width:100%;
}

table tr{
display:flex;
width:100%;
border-bottom:1px solid #f7dfc7;
background:#fff;
transition:.3s ease;
}

table tr:nth-child(even){
background:#fff6ed;
}

table tr:hover{
background:#ffeedb;
}

table tr:last-child{
border-bottom:none;
}

table th,
table td{
flex:1;
min-width:220px;
padding:16px 18px;
font-size:15px;
line-height:1.55;
text-align:left;
word-break:break-word;
}

table th{
background:linear-gradient(135deg,#e56600 0%,#ff932d 55%,#ffc067 100%);
color:#fff;
font-weight:700;
letter-spacing:.35px;
text-shadow:0 1px 2px rgba(0,0,0,.2);
border-right:1px solid rgba(255,255,255,.18);
position:relative;
overflow:hidden;
}

table th:before{
content:"";
position:absolute;
top:0;
left:-120%;
width:60%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
transform:skewX(-25deg);
animation:tableShine 5s linear infinite;
}

table th:last-child{
border-right:none;
}

table td{
color:#6b3100;
border-right:1px solid #f5ddc6;
}

table td:last-child{
border-right:none;
}

table::-webkit-scrollbar{
height:10px;
}

table::-webkit-scrollbar-track{
background:#ffe8cf;
border-radius:30px;
}

table::-webkit-scrollbar-thumb{
background:linear-gradient(90deg,#e56600,#ff9b38);
border-radius:30px;
border:2px solid #ffe8cf;
}

@keyframes tableShine{
0%{
left:-120%;
}
100%{
left:160%;
}
}

table{
animation:tableFloat 5s ease-in-out infinite;
}

@keyframes tableFloat{
0%,100%{
box-shadow:0 18px 48px rgba(229,102,0,.14);
}
50%{
box-shadow:0 24px 56px rgba(229,102,0,.22);
}
}

.xt1n0jtdn {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 122, 0, .35), transparent 60%);
}

.xt1rns465 {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.xt281sxy6 h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.xt1cmfjfx {
  color: #e8e8ee;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 36px;
}

.xt1uiqdr9 {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(255, 122, 0, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  letter-spacing: .3px;
}

.xt1uiqdr9:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 38px rgba(255, 122, 0, .6);
}

.xtvr2v82e {
  font-size: 1.25rem;
  padding: 18px 56px;
}

.xt2rmafx0 {
  display: block;
  width: max-content;
  margin: 48px auto 24px;
}

.xtbdxqozb {
  padding: 60px 20px;
  background: var(--light-bg);
}

.xt1njdc31 {
  max-width: 900px;
  margin: 0 auto;
}

.xt1njdc31 h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 16px 0 20px;
  color: var(--dark);
}

.xt1njdc31 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 28px 0 14px;
  color: var(--dark);
}

.xt1njdc31 p {
  margin-bottom: 18px;
  line-height: 1.65;
  color: var(--gray);
}

.xt1njdc31 ul,
.xt1njdc31 ol {
  margin: 0 0 20px 22px;
  line-height: 1.7;
  color: var(--gray);
}

.xt1njdc31 li {
  margin-bottom: 8px;
}

.xt1njdc31 img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.xt1njdc31 a {
  color: var(--orange-dark);
  font-weight: 600;
}

.xt2pf34cn {
  background: var(--darker);
  color: #c8c8d0;
  text-align: center;
  padding: 32px 20px;
}

.xt2pf34cn p {
  font-size: .95rem;
}

.xt1njdc31 a {
  color: #fff;
}

.xt17b0t7i {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 24px;
    height: 18px;
    box-sizing: content-box;
    position: relative;
    background-image: linear-gradient(#000, #000);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: center;
}

.xt17b0t7i::before,
.xt17b0t7i::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease;
}

.xt17b0t7i::before {
    top: 8px;
}

.xt17b0t7i::after {
    bottom: 8px;
}
ul#navList a.active {
    text-decoration: underline !important;
    font-weight: 700 !important;
}
@media (min-width:768px) {
  .xt281sxy6 h1 {
    font-size: 3rem;
  }

  .xt1njdc31 h2 {
    font-size: 2rem;
  }
}

@media (min-width:1024px) {
  .xt281sxy6 {
    min-height: 600px;
  }

  .xt281sxy6 h1 {
    font-size: 3.6rem;
  }
}

@media (max-width:900px) {
  .xt17b0t7i {
    display: flex;
  }

  .xt13wdqns {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 6px;
    padding: 80px 10px 20px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
    transition: right .35s ease;
    overflow-y: auto;
    z-index: 95;
  }

  .xt13wdqns.xt2cbhgxl {
    right: 0;
  }

  .xt13wdqns>li {
    width: 100%;
  }

  .xt13wdqns>li>a {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .xt13wdqns li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    display: none;
    background: transparent;
  }

  .xt13wdqns li.xt10w0re1>ul {
    display: block;
  }

  body.xt11i04r3 {
    overflow: hidden;
  }
}
.gb-8a5f60d7{display: flex; width: fit-content; margin: 10px auto;}
