* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',Arial,sans-serif;
  background: #0E0F1E;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.c {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(14,15,30,.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.l {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: clamp(1.25rem,2vw,1.5rem);
  font-weight: 700;
  -webkit-user-select: none;
  user-select: none;
  color: #fff;
}

.logo-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.h {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
  padding: .5rem;
  font-size: clamp(.875rem,2vw,1rem);
}

nav a:hover {
  color: #60A5FA;
}

h1 {
  font-size: clamp(1.75rem,4vw,2.5rem);
  margin: 3rem 0 1rem;
  line-height: 1.2;
}

.slogan {
  font-size: clamp(1.125rem,2vw,1.375rem);
  color: #9CA3AF;
  margin-bottom: 1rem;
  text-align: left;
}

.spacer {
  height: 2rem;
}

.s {
  font-size: clamp(1rem,2vw,1.25rem);
  color: #9CA3AF;
  margin-bottom: 2rem;
  max-width: 100%;
  white-space: pre-wrap;
}

.g {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 5rem;
}

.t,.t-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  white-space: nowrap;
  border: 0;
  font-size: clamp(.875rem,2vw,1rem);
  min-height: 44px;
}

.t {
  background: #2563EB;
  color: #fff;
}

.t:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.t-r {
  background: #C2410C;
  color: #fff;
}

.t-r:hover {
  background: #9A3412;
  transform: translateY(-1px);
}

.video-section {
  margin: 0 0 4rem;
  display: flex;
  justify-content: center;
}

.video-item {
  width: 100%;
  max-width: 800px;
  cursor: pointer;
  position: relative;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: #1C1F2E;
  border-radius: 1rem;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,.5);
}

.vp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s,visibility .3s;
}

.vp.active {
  opacity: 1;
  visibility: visible;
}

.vp video {
  max-width: 90%;
  max-height: 90vh;
}

.cp {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.p {
  padding: 4rem 0;
}

.x {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
}

.k {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
}

.k .i {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  width: 100%;
}

.k .v {
  text-align: left;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}

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

.n {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
  color: #3B82F6;
}

.j {
  color: #9CA3AF;
  font-size: clamp(.875rem,2vw,1rem);
}

.v {
  font-size: clamp(1.25rem,3vw,1.875rem);
  font-weight: 700;
  margin-top: .5rem;
}

.d {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 4rem 0;
}

.f {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.e {
  padding: 1.5rem;
  background: #1C1F2E;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s;
}

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

.e h3 {
  font-size: clamp(1.125rem,2.5vw,1.25rem);
  margin-bottom: .5rem;
}

.e p {
  color: #9CA3AF;
  font-size: clamp(.875rem,2vw,1rem);
}

h2 {
  font-size: clamp(1.5rem,3vw,2rem);
  margin-bottom: 2rem;
  text-align: left;
}

.m {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
}

.y h3 {
  font-size: clamp(1.25rem,2.5vw,1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.mt-4 {
  margin-top: 1rem;
}

.faq-title {
  margin-bottom: 3rem;
}

.q {
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  overflow: hidden;
  background: #1C1F2E;
}

.faq-question {
  background: 0 0;
  color: #fff;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
  font-size: clamp(1rem,2vw,1.125rem);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform .3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  background: rgba(255,255,255,.05);
  color: #9CA3AF;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .3s;
}

.faq-answer p,.faq-answer ul {
  padding: 1.5rem;
  margin: 0;
  font-size: clamp(.875rem,2vw,1rem);
}

.faq-answer ul {
  list-style-position: inside;
  padding-top: 0;
}

.faq-answer li {
  margin-bottom: .5rem;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
}

/* Update FAQ link color */
.faq-answer a {
  color: #FFE082;
  text-decoration: none;
  transition: color 0.2s;
}

.faq-answer a:hover {
  color: #FFCA28;
  text-decoration: underline;
}

.partners-title {
  margin-bottom: .5rem;
  text-align: center;
  font-size: clamp(1.5rem,4vw,2rem);
}

.partners-subtitle {
  font-size: clamp(.75rem,1.5vw,.875rem);
  color: #9CA3AF;
  margin-bottom: 1.5rem;
  text-align: center;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.partners-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.auditors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
}

.auditor-logo {
  height: 56px;
  width: auto;
}

.w {
  background: #1C1F2E;
  padding: 1.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.fc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.fl {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.sl {
  display: flex;
  gap: 1rem;
}

.sl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: .3s;
}

.sl a:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.terms {
  display: flex;
  gap: 1.5rem;
}

.terms a,.cr {
  color: #9CA3AF;
  font-size: .75rem;
  text-decoration: none;
  transition: .3s;
}

.terms a:hover {
  color: #fff;
}

.deposit-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  background-color: #2563EB;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  align-self: center !important;
  margin-left: 0 !important;
}

.deposit-button:hover {
  background-color: #1D4ED8;
}

.stats-box {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
}

.stats-box .i {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  width: 100%;
}

.stats-box .j {
  text-align: center;
}

.stats-box .j h3 {
  margin: 0;
  text-align: center;
}

.stats-box .v {
  text-align: center;
  margin: 1rem 0;
  font-size: 34px !important;
  font-weight: bold;
  width: 100%;
}

.stats-box .deposit-button {
  margin-top: 1rem;
  align-self: center !important;
  margin-left: 0 !important;
}

@media (max-width:480px) {
  .g {
    flex-direction: column;
    width: 100%;
  }
  .t,.t-r {
    width: 100%;
    text-align: center;
  }
  .h {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
  nav {
    order: 2;
  }
}

@media (hover:hover) {
  .t:hover,.t-r:hover,.e:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
    scroll-behavior: auto!important;
  }
}

@media (max-width:768px) {
  .fc,.fb {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}