
@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/BebasNeue-Regular.ttf");
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf");
}

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

:root {
  font-family: "Bebas Neue", system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #0A0114;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.25s;
  outline: none;
  background: none;
}

img {
  display: block;
}

.page-wrapper {
  overflow: hidden;
}

.font-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #c62bc3;
  letter-spacing: 0.1em;
  line-height: 22px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  position: relative;
  overflow: hidden;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity 0.2s;
}

.social-btn:hover {
  opacity: 0.7;
}

.social-btn img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  height: 34px;
  padding: 6px 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.7;
}

.btn-pink {
  background-color: #C62BC3;
}

.btn-white {
  background-color: #fff;
}

.btn-texture {
  width: 260px;
  height: 260px;
  min-width: 260px;
  min-height: 260px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.btn-texture-white {
  filter: invert(32%) sepia(69%) saturate(6647%) hue-rotate(288deg) brightness(92%) contrast(89%);
}

.btn-text {
  font-size: 1.25rem;
  line-height: 125%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.btn-text-white {
  color: #C62BC3;
}

.header-wrapper {
  padding: 0 32px;
  width: 100%;
  position: fixed;
  z-index: 50;
  background: linear-gradient(180deg, #0a0114 0%, rgba(10, 1, 20, 0) 100%);
}

.header-inner {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.desktop-nav {
  display: none;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 16px;
}

.nav-link {
  font-size: 1.25rem;
  display: inline-block;
  line-height: 55px;
  transition: opacity 0.2s, color 0.2s;
  color: #fff;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.active {
  color: #c62bc3;
}

.desktop-cta {
  display: none;
  justify-content: flex-end;
}

.header-btn-wrapper {
  position: relative;
}

.header-btn-cursor {
  z-index: 30;
  width: 18px;
  height: 18px;
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.3s;
  top: 25px;
  left: 43px;
}

.header-btn-wrapper:hover .header-btn-cursor {
  opacity: 1;
}

.header-btn {
  position: relative;
  overflow: hidden;
  background-color: #C62BC3;
  border-radius: 9999px;
  height: 34px;
  padding: 6px 24px;
  cursor: pointer;
  transition: padding-left 0.3s;
}

.header-btn:hover {
  padding-left: 68px;
}

.header-btn-texture {
  width: 260px;
  height: 260px;
  min-width: 260px;
  min-height: 260px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 10;
  opacity: 0.5;
}

.header-btn-img {
  z-index: 20;
  width: 99px;
  height: 34px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.header-btn:hover .header-btn-img {
  opacity: 1;
}

.header-btn-text {
  font-size: 1.25rem;
  color: #fff;
  line-height: 125%;
  z-index: 30;
  position: relative;
  white-space: nowrap;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: linear-gradient(180deg, #0a0114 0%, rgba(10, 1, 20, 0.95) 100%);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 32px 32px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list .nav-link {
  display: block;
  line-height: 55px;
}

.mobile-cta {
  padding-top: 16px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
}

.mobile-overlay.open {
  display: block;
}

@media (min-width: 681px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .desktop-nav {
    display: flex;
  }

  .desktop-cta {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu,
  .mobile-overlay {
    display: none !important;
  }
}

.hero-section {
  height: 100dvh;
  min-height: 770px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: contain;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 333px;
  margin: 0 auto 36px;
}

.hero-content .section-subtitle {
  text-align: left;
}

.promo-img {
  width: 100%;
  pointer-events: none;
}

.hero-btn-wrapper {
  width: 100%;
  margin: 52px auto 0;
}

.hero-bottom {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bottom .social-links {
  padding-bottom: 62px;
}

.scroll-arrow {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.about-section {
  padding: 100px 0;
}

.about-container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.shape-1 {
  position: absolute;
  bottom: 0;
  left: -436px;
  filter: blur(11px);
  pointer-events: none;
  user-select: none;
}

.shape-2 {
  position: absolute;
  bottom: -383px;
  right: -436px;
  filter: blur(11px);
  pointer-events: none;
  user-select: none;
}

.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.about-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.about-title {
  font-size: 64px;
  color: #fff;
  line-height: 77px;
}

.about-desc {
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.about-image-wrapper {
  position: relative;
  width: 470px;
  height: 470px;
}

.about-1-img {
  position: absolute;
  min-width: 1000px;
  height: 1000px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 30px;
  background-color: #c62bc3;
  border: 4px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
}

.guarantee-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}

.guarantee-texture {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.guarantee-title {
  font-size: 64px;
  color: #fff;
  line-height: 52px;
}

.guarantee-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guarantee-subtitle {
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 19px;
}

.guarantee-desc {
  font-size: 1rem;
  color: #fff;
  max-width: 490px;
  line-height: 1.19;
}

.guarantee-btn {
  min-width: 100%;
}

.about-2-img {
  margin-bottom: -54px;
  z-index: 1;
  pointer-events: auto;
  user-select: none;
  position: relative;
}

@media (min-width: 768px) {
  .hero-bg {
    object-fit: contain;
  }

  .about-top {
    flex-direction: row;
  }

  .about-text {
    padding-left: 50px;
  }

  .about-title-block {
    text-align: left;
    align-items: flex-start;
  }

  .about-desc {
    text-align: left;
  }

  .guarantee-banner {
    padding: 50px;
    border-radius: 32px;
    flex-direction: row;
  }

  .guarantee-content {
    flex-direction: row;
  }

  .guarantee-btn {
    min-width: 220px;
  }

  .about-2-img {
    position: absolute;
    right: 50px;
    bottom: -4px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .about-2-img {
    margin-bottom: -34px;
  }
}

@media (max-width: 767px) {
  .hero-bg {
    object-fit: cover;
  }
}

.roulette-section {
  padding: 50px 30px;
  position: relative;
}

.roulette-bg {
  object-fit: cover;
  object-position: top;
  position: absolute;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.roulette-container {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roulette-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  position: relative;
}

.roulette-title-wrapper {
  position: relative;
  height: 51px;
}

.roulette-title {
  font-size: 64px;
  text-align: center;
  color: #fff;
  line-height: 1;
  transition: opacity 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.roulette-win-subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #c62bc3;
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
  position: relative;
  top: -28px;
  opacity: 0;
}

.roulette-win-title {
  font-size: 64px;
  text-align: center;
  color: #fff;
  line-height: 1;
  transition: opacity 0.5s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 22px;
  opacity: 0;
}

.roulette-title-block.win .roulette-title {
  opacity: 0;
}

.roulette-title-block.win .section-subtitle {
  opacity: 0;
}

.roulette-title-block.win .roulette-win-subtitle {
  opacity: 1;
}

.roulette-title-block.win .roulette-win-title {
  opacity: 1;
}

.roulette-anchor {
  position: absolute;
}

.casedrop-container {
  position: relative;
  border-left: 4px solid #c62bc3;
  border-right: 4px solid #c62bc3;
  overflow: hidden;
}

.casedrop-container::before {
  content: '';
  background: linear-gradient(90deg, rgba(198, 43, 195, 0.25) 0%, rgba(198, 43, 195, 0) 100%);
  width: 56px;
  height: 294px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.casedrop-container::after {
  content: '';
  background: linear-gradient(90deg, rgba(198, 43, 195, 0.25) 0%, rgba(198, 43, 195, 0) 100%);
  width: 56px;
  height: 294px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  z-index: 5;
}

.casedrop-indicator {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.casedrop {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 15px 0;
  transform: translateX(0);
}

.casedrop.start {
  transform: translateX(2772px);
}

.casedrop.open {
  transform: translateX(-2772px);
  transition: transform 9000ms cubic-bezier(0.2, 0, 0.2, 1);
}

.casedrop-item {
  border-radius: 20px;
  width: 222px;
  height: 294px;
  border-bottom: 2px solid transparent;
  position: relative;
  outline: 1px solid rgba(255, 255, 255, 0.15);
  outline-offset: -1px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.casedrop-item.dimmed {
  opacity: 0.45;
}

.casedrop-item.winner {
  transform: scale(1.08);
  opacity: 1;
}

.casedrop-img {
  width: 180px;
  height: 90px;
  object-fit: contain;
}

.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.casedrop-item .card-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.casedrop-item .card-icon-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.casedrop-item .card-icon-wrapper img {
  z-index: 20;
  position: relative;
}

.casedrop-item .card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.casedrop-item .card-info .title {
  font-size: 1rem;
  text-align: left;
  height: 19px;
}

.casedrop-item .card-info .skin-name {
  font-size: 32px;
  text-align: left;
  color: #fff;
  height: 38px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: auto;
  max-width: 210px;
}

.spin-btn-wrapper {
  max-width: 222px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card.green {
  background: linear-gradient(180deg, rgba(0, 149, 135, 0.03) 0%, rgba(0, 149, 135, 0.25) 100%);
  border-color: #009587;
}

.card.green .title,
.card.green svg {
  color: #009587;
}

.card.gold {
  background: linear-gradient(180deg, rgba(241, 184, 45, 0.03) 0%, rgba(241, 184, 45, 0.25) 100%);
  border-color: #F1B82D;
}

.card.gold .title,
.card.gold svg {
  color: #F1B82D;
}

.card.blue {
  background: linear-gradient(180deg, rgba(90, 159, 226, 0.03) 0%, rgba(90, 159, 226, 0.25) 100%);
  border-color: #5A9FE2;
}

.card.blue .title,
.card.blue svg {
  color: #5A9FE2;
}

.card.purple {
  background: linear-gradient(180deg, rgba(198, 43, 195, 0.03) 0%, rgba(198, 43, 195, 0.25) 100%);
  border-color: #C62BC3;
}

.card.purple .title,
.card.purple svg {
  color: #C62BC3;
}

.casedrop-item.gold {
  border: none;
  outline: 2px solid #F1B82D;
  background: linear-gradient(180deg, rgba(240, 185, 45, 0.603) 0%, rgba(240, 185, 45, 0.096) 100%);
}

.livedrop {
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.livedrop-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: livedrop-scroll 30s linear infinite;
}

@keyframes livedrop-scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.livedrop::after {
  content: "";
  background: linear-gradient(90deg, #130721 0%, rgba(19, 7, 33, 0) 100%);
  transform: rotate(-180deg);
  width: 90px;
  height: 61px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.livedrop-card {
  border-radius: 8px;
  padding: 5px 10px;
  width: 130px;
  height: 61px;
  border-bottom: 2px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  outline: 1px solid rgba(255, 255, 255, 0.05);
  outline-offset: -1px;
  flex-shrink: 0;
}

.livedrop-card .card-bg {
  height: 100%;
}

.drop-item-img {
  width: 44px;
  height: 51px;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.livedrop-card .drop-icon-wrapper {
  position: relative;
}

.livedrop-card .drop-icon-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.livedrop-card .drop-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.livedrop-card .drop-info .title {
  font-size: 0.75rem;
  text-align: left;
  height: 14px;
}

.livedrop-card .drop-info .skin-name {
  font-size: 0.875rem;
  text-align: left;
  color: #fff;
  height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: auto;
  max-width: 65px;
}

.contains-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contains-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 7px;
}

.contains-title {
  font-size: 1.25rem;
  text-align: left;
  color: #fff;
}

.contains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.contains-card {
  border-bottom: 2px solid transparent;
  border-radius: 16px;
  padding: 15px;
  background: rgba(48, 57, 66, 0.25) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  justify-content: space-between;
}

.contains-card .corner-svg {
  position: absolute;
  right: 0;
  bottom: -1px;
}

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

.contains-card .rarity-text {
  font-size: 0.75rem;
  text-align: left;
  letter-spacing: 0.1em;
}

.contains-card .chance-text {
  font-size: 0.75rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
}

.contains-card .contains-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.contains-card .contains-icon-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.contains-item-img {
  width: 180px;
  height: 90px;
  object-fit: contain;
  z-index: 10;
  position: relative;
}

.contains-card .contains-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contains-card .contains-bottom .title {
  font-size: 0.75rem;
  text-align: left;
  letter-spacing: 0.1em;
  height: 14px;
}

.contains-card .contains-bottom .skin-name {
  font-size: 1rem;
  text-align: left;
  color: #fff;
  letter-spacing: 0.1em;
  height: 19px;
}

.bottom-wrapper {
  position: relative;
}

.faq-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.faq-section {
  padding: 50px 0;
}

.faq-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.faq-title {
  font-size: 64px;
  text-align: center;
  color: #fff;
  line-height: 1.34;
}

.accordion {
  max-width: 32rem;
  padding: 0 20px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-radius: 6px;
  padding: 16px 0;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.2s;
  outline: none;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
}

.accordion-trigger .accordion-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  transition: transform 0.2s;
  pointer-events: none;
}

.accordion-item.open .accordion-trigger .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-content {
  max-height: 200px;
}

.accordion-content-inner {
  padding: 0 0 16px;
  font-size: 0.875rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
}

.pink-banner {
  background-color: #c62bc3;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.banner-texture {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.banner-text {
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.copyright {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.esrb {
  width: 130px;
  pointer-events: none;
  user-select: none;
}

.desktop-cta {
  gap: 12px;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  height: 34px;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.lang-code {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-chevron {
  width: 10px;
  height: 6px;
  opacity: 0.5;
  flex-shrink: 0;
}

.mobile-lang-btn-wrap {
  display: flex;
  align-items: center;
}

@media (min-width: 681px) {
  .mobile-lang-btn-wrap {
    display: none;
  }
}

@media (max-width: 680px) {
  .desktop-cta .lang-btn {
    display: none;
  }
}

.lang-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.lang-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.lang-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 101;
  width: 90%;
  max-width: 560px;
  max-height: 80vh;
  background: linear-gradient(160deg, #1a0e2e 0%, #0f0620 100%);
  border: 1px solid rgba(198, 43, 195, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 24px 80px rgba(198, 43, 195, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.lang-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.lang-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.lang-panel-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-panel-title {
  font-size: 1.125rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.lang-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.lang-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 16px 24px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lang-grid::-webkit-scrollbar {
  width: 4px;
}

.lang-grid::-webkit-scrollbar-track {
  background: transparent;
}

.lang-grid::-webkit-scrollbar-thumb {
  background: rgba(198, 43, 195, 0.3);
  border-radius: 4px;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lang-item.active {
  background: rgba(198, 43, 195, 0.15);
  border-color: rgba(198, 43, 195, 0.4);
  color: #fff;
}

.lang-item-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 560px) {
  .lang-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 16px 16px;
  }

  .lang-panel-head {
    padding: 14px 16px;
  }

  .lang-panel {
    max-height: 70vh;
    width: 94%;
  }
}

.about-title,
.guarantee-title,
.faq-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.roulette-title,
.roulette-win-title {
  white-space: normal;
  width: max-content;
  max-width: 90vw;
}

.roulette-win-subtitle {
  max-width: 90vw;
}

.roulette-title-wrapper {
  min-height: 51px;
  height: auto;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.btn-text,
.header-btn-text {
  white-space: nowrap;
}

.section-subtitle {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.guarantee-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.nav-link {
  white-space: nowrap;
}

.nav-list {
  flex-wrap: nowrap;
  overflow: hidden;
}

@media (max-width: 480px) {
  .about-title {
    font-size: 42px;
    line-height: 50px;
  }

    .about-text {
    align-items: center;
    text-align: center;
  }

  .guarantee-title {
    font-size: 42px;
    line-height: 42px;
  }

  .faq-title {
    font-size: 42px;
  }

  .roulette-title,
  .roulette-win-title {
    font-size: 42px;
  }

  .roulette-win-subtitle {
    font-size: 1.125rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

[dir="rtl"] .accordion-trigger {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .accordion-content-inner {
  text-align: right;
}

[dir="rtl"] .hero-content .section-subtitle {
  text-align: right;
}

[dir="rtl"] .about-desc {
  text-align: right;
}

[dir="rtl"] .guarantee-subtitle,
[dir="rtl"] .guarantee-desc {
  text-align: right;
}

[dir="rtl"] .contains-title,
[dir="rtl"] .contains-card .rarity-text,
[dir="rtl"] .contains-card .chance-text,
[dir="rtl"] .contains-card .contains-bottom .title,
[dir="rtl"] .contains-card .contains-bottom .skin-name {
  text-align: right;
}

[dir="rtl"] .livedrop-card .drop-info .title,
[dir="rtl"] .livedrop-card .drop-info .skin-name {
  text-align: right;
}

[dir="rtl"] .casedrop-item .card-info .title,
[dir="rtl"] .casedrop-item .card-info .skin-name {
  text-align: right;
}

[dir="rtl"] .copyright {
  direction: rtl;
}

[dir="rtl"] .section-subtitle,
[dir="rtl"] .roulette-title,
[dir="rtl"] .roulette-win-subtitle,
[dir="rtl"] .roulette-win-title,
[dir="rtl"] .faq-title,
[dir="rtl"] .banner-text,
[dir="rtl"] .btn-text,
[dir="rtl"] .header-btn-text {
  text-align: center;
}

@media (min-width: 768px) {
  [dir="rtl"] .about-title-block {
    text-align: right;
    align-items: flex-end;
  }

  [dir="rtl"] .about-text {
    padding-left: 0;
    padding-right: 50px;
  }

  [dir="rtl"] .about-desc {
    text-align: right;
  }

  [dir="rtl"] .guarantee-text {
    align-items: flex-end;
  }
}

@media (max-width: 670px) {
  .hero-section {
    min-height: 660px;
  }

  .promo-img {
    width: 80%;
  }
}
