@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;600;700&display=swap");

/* General Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

a,
p {
  font-family: "Inter", sans-serif;
}

section {
  padding: 60px 0;
}

.container {
  margin: 0 auto;
  padding: 0 16px;
}

button,
.button {
  background-color: #212121;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-left: 2px;
}

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

.hidden-md-block {
  display: none;
}
.block-md-hidden {
  display: block;
}
@media (min-width: 768px) {
  .hidden-md-block {
    display: block;
  }
  .block-md-hidden {
    display: none;
  }
}

.hidden-md-block-table {
  display: none;
}
.block-md-hidden-table {
  display: table-cell;
}
@media (min-width: 768px) {
  .hidden-md-block-table {
    display: table-cell;
  }
  .block-md-hidden-table {
    display: none;
  }
}

.hidden-xl-flex {
  display: none !important;
}
.flex-xl-hidden {
  display: flex !important;
}
@media (min-width: 1280px) {
  .hidden-xl-flex {
    display: flex !important;
  }
  .flex-xl-hidden {
    display: none !important;
  }
}

/* Header Styles */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../imgs/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 155px 0;
  margin: 16px;
  margin-top: 72px;
  position: relative;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .hero {
    padding: 215px 0;
    margin-top: 16px;
  }
}

.hero-title {
  font-size: 50px;
  color: white;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 140px;
    color: white;
  }
}

.hero-description {
  font-size: 16px;
  margin: 0px 8px;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 20px;
  }
}

.hero-description-container {
  position: absolute;
  bottom: -30px;
  width: calc(100vw - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0px 16px;
}
@media (min-width: 520px) {
  .hero-description-container {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .hero-description-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin: 0px 16px;
  }
}

.navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .navbar {
    display: flex;
  }
}

.navbar button {
  background-color: #333;
}

.logo {
  width: 32px;
  height: 32px;
  margin-right: 2px;
}

.navbar-link {
  color: #8e8e93;
  text-decoration: none;
}

.navbar-mobile {
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
@media (min-width: 768px) {
  .navbar-mobile {
    display: none;
  }
}

.hamburger-menu,
.close-menu {
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: white;
  z-index: 1000;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.mobile-menu.active {
  height: 100vh;
}

.mobile-menu-content {
  padding: 16px;
  max-width: 100vw;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-nav-link {
  font-size: 24px;
  color: #212121;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-button {
  margin-top: 16px;
  padding: 12px 24px;
  background: #212121;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

/* Token Table */
.token-table {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 0px;
  border-collapse: collapse;
  color: #797979;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .token-table {
    margin-top: -150px;
  }
}

.token-table th,
.token-table td {
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 768px) {
  .token-table th,
  .token-table td {
    padding: 12px 16px;
    font-size: 16px;
  }
}

.token-table th {
  font-weight: bold;
}

.styled-row td {
  background-color: #f8f8f8;
}

.styled-row td.first-cell {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.styled-row td.last-cell {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Athletes Section */
.athletes {
  background-color: white;
  padding: 60px 0;
  position: relative;
  overflow: visible;
  margin: 0px 16px;
}

.athletes h2 {
  font-size: 32px;
}
@media (min-width: 1024px) {
  .athletes h2 {
    font-size: 48px;
  }
}

.athlete-description {
  color: #797979;
  font-size: 16px;
  max-width: 800px;
  margin: 20px auto;
  margin-bottom: 48px;
}
@media (min-width: 1280px) {
  .athlete-description {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.athletes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.athlete-card {
  width: 100%;
  max-width: 325px;
  background-color: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto;
  margin-bottom: 4px;
}

.athlete-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(128, 128, 128, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 99999px;
  padding: 8px 12px;
  font-size: 14px;
  color: white;
}

.athlete-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

.athlete-info {
  padding: 24px;
}

.athlete-info h3 {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
}

.athlete-info p {
  font-size: 12px;
  color: #797979;
}

.swiper {
  max-width: 1050px;
  margin: auto;
  overflow: visible;
  margin-top: 36px;
  margin-bottom: 48px;
}
@media (min-width: 1280px) {
  .swiper {
    margin-top: 48px;
  }
}

.swiper-button-next {
  padding: 0px 32px;
  background: rgba(128, 128, 128, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  top: 55% !important;
  right: 3% !important;
}
.swiper-button-prev {
  padding: 0px 32px;
  background: rgba(128, 128, 128, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  top: 55% !important;
  left: 3% !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  color: white !important;
}

.mobile-swipe-handle-container {
  position: relative;
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
@media (min-width: 650px) {
  .mobile-swipe-handle-container {
    gap: 56px;
  }
}
@media (min-width: 850px) {
  .mobile-swipe-handle-container {
    gap: 72px;
  }
}
@media (min-width: 1280px) {
  .mobile-swipe-handle-container {
    display: none;
  }
}

.mobile-swipe-handle-container div {
  position: relative;
}

/* Launch Section */
.ski-launch {
  background-image: url("../imgs/launch-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
  width: 100%;
  max-width: 1400px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .ski-launch {
    border-radius: 32px;
  }
}

.launch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.launch-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .launch-container h2 {
    font-size: 52px;
  }
}

.launch-info-container {
  background: rgba(128, 128, 128, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  color: #797979;
  margin: 0px 16px;
}
@media (min-width: 1024px) {
  .launch-info-container {
    flex-direction: row;
  }
}

.launch-info {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
}

.launch-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  padding: 16px;
}
@media (min-width: 1024px) {
  .launch-info-content {
    flex-direction: row;
  }
}

.launch-info-content hr {
  border: none;
  border-top: 1px dashed #e5e5ea;
}
@media (min-width: 1024px) {
  .launch-info-content hr {
    border: none;
    border-left: 1px dashed #e5e5ea;
  }
}

.launch-networks {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  min-width: 250px;
}
@media (min-width: 1024px) {
  .launch-networks {
    width: auto;
  }
}

.launch-networks-content {
  padding: 16px;
  margin-left: 16px;
  margin-top: 8px;
}

.launch-button {
  font-size: 16px;
  font-weight: 600;
  background-color: #72bbe6;
  color: white;
  padding: 12px 36px;
  border-radius: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .launch-button {
    font-size: 20px;
    padding: 24px 56px;
    border-radius: 12px;
  }
}

/* Join Us Section */
.join-us-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  margin: 0 16px;
}

.join-us-glow-1 {
  position: absolute;
  width: 1000px;
  top: 100px;
  right: 0;
}
.join-us-glow-2 {
  position: absolute;
  width: 1000px;
  top: 500px;
  left: 0;
}

.join-us-title {
  font-size: 32px;
  line-height: 54px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .join-us-title {
    font-size: 48px;
  }
}

.join-us-description {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #797979;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .join-us-description {
    font-size: 18px;
  }
}

.join-us-form {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1000px;
  margin: auto;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .join-us-form {
    padding: 30px;
  }
}

.join-us-form-title {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .join-us-form-title {
    font-size: 30px;
  }
}

.join-us-alert {
  background-color: #f6f9fe;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: start;
  text-align: left;
  gap: 10px;
  font-family: Inter;
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #8e8e93;
}

.join-us-alert-number {
  font-weight: 700;
}

.join-us-form-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .join-us-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.join-us-form-divider {
  width: 100%;
  height: 0;
  border-top: 1px dashed #e5e5ea;
  margin: 8px 0;
}

.join-us-input {
  background-color: #ffffff;
  padding: 16px 16px;
  border-radius: 10px;
  border: 1px solid #e5e5ea;
  outline: none;
  font-family: Poppins;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  width: 100%;
}

.join-us-address-max-width {
  word-wrap: break-word;
  max-width: 100px;
}
@media (min-width: 1024px) {
  .join-us-address-max-width {
    max-width: 1000px;
  }
}

.font-bold {
  font-weight: 700 !important;
}

/* Status Section */
.status-section {
  background-color: #ffffff;
}

.status-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  position: relative;
  padding: 64px;
}

.status-form {
  width: 100%;
  max-width: 800px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: rgba(39, 138, 229, 0.15) 0px 10px 25px -5px,
    rgba(39, 138, 229, 0.04) 0px 10px 10px -5px;
}

.status-illustration-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.status-illustration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 560px;
  height: auto;
}

.section-title {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  max-width: 600px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.check-status-description {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  color: #797979;
}

.check-status-button {
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 20px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  width: 300px;
  height: 50px;
}

.check-status-button:hover {
  background-color: #444444;
}

.check-status-button:active {
  background-color: #888888;
}

.check-status-button-mobile {
  display: none;
}

.check-status-input {
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  border: 0;
  outline: none;
  font-family: Poppins;
}

.status-result-card {
/*  display: none;*/
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 24px;
  margin-top: 40px;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(90deg, 
                #64B7F3 0%,
                #fdfeff 50%,
                #64B7F3 100%
              ) border-box;
  border: 4px solid transparent;
  background-size: 100% 100%, 200% 100%;
  animation: gradientBorder 6s linear infinite;
}

.status-result-card-divider {
  width: 68px;
  height: 3px;
  background-color: #e5e5ea;
  margin: 0 20px;
}

.status-result-card-text {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 15.25px;
  letter-spacing: 0%;
  text-align: center;
  color: #8e8e93;
}

.status-result-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-result-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
}

.trading-section {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.trading-bg-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  width: 80%;
  height: auto;
  z-index: 1;
}

.trading-bg-2 {
  display: none;
}

.trading-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin: auto;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.trading-table {
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 18px;
  padding-bottom: 72px;
}

.trading-table-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 26px;
}

.trading-table-header-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #2c2c2e;
}

.trading-table-header-icon {
  width: 28px;
  height: 28px;
}

.trading-table-row-odd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
  background-color: #f5f5f5;
  padding: 20px;
  font-family: Inter;
  color: #797979;
  font-weight: 400;
}

.trading-table-row-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 20px;
  font-family: Inter;
  color: #797979;
  font-weight: 400;
}

.trading-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #212121;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-top: 40px;
  border-radius: 18px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.trading-banner-title {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24.2px;
  letter-spacing: 0%;
  color: #ffffff;
  text-align: left;
}

.trading-banner-value {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 19.36px;
  letter-spacing: 0%;
  text-align: left;
  color: #ffffff;
}

.trading-banner-item:first-child {
  border-right: 1px dashed white;
}

/* Leaderboard Section */
.leaderboard-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.leaderboard-bg-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.leaderboard-bg-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.leaderboard-bg-3 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: auto;
  height: 70%;
  z-index: 1;
}

.leaderboard-title {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: left;
  margin: auto;
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.leaderboard-selection {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 36px;
  width: 520px;
}

.leaderboard-selection-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  background-color: transparent;
}

.leaderboard-selection-item:hover {
  background-color: transparent;
}

.leaderboard-selection-item-active {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 16px 38px 0px rgba(22, 29, 36, 0.08);
  backdrop-filter: blur(158px);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  background-color: #fafafa;
}

.leaderboard-selection-item-active:hover {
  background-color: #fafafa;
}

.leaderboard-selection-item-icon {
  width: 24px;
  height: 24px;
}

.leaderboard-selection-item-icon-active {
  width: 24px;
  height: 24px;
}

.leaderboard-selection-item-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #c7c7cc;
}

.leaderboard-selection-item-title-active {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #000000;
}

.leaderboard-selection-item-title-mobile {
  display: none;
}

.leaderboard-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 100px;
  margin: auto;
  margin-top: 64px;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.leaderboard-table {
  background: #f0f0f099;
  width: 100%;
  border-radius: 18px;
  padding: 26px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.leaderboard-table-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 10px;
}

.leaderboard-table-header-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #797979;
}

.leaderboard-table-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 10px;
}

.leaderboard-table-username {
  text-align: left;
  grid-column: span 2;
}

.leaderboard-table-rank {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.leaderboard-table-rank-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  padding-left: 24px;
}

.leaderboard-table-row-icon {
  width: 24px;
  height: 24px;
}

.leaderboard-table-row-text {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

/* Sale Section */
.sale-section {
  background-color: white;
  overflow: hidden;
  padding-top: 120px;
}

.sale-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.skicoin-sale-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.2;
}

.skicoin-sale-img-mobile {
  display: none;
}

.sale-title {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.sale-main-info {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.sale-main-info-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 14px;
}

.sale-main-info-item-bullet {
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
  border-radius: 30%;
  background-color: #a7e3ff;
}

.sale-main-info-item-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.6px;
  letter-spacing: 0%;
  color: #797979;
  margin-top: -6px;
}

.sale-main-info-item-text-bold {
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 25.6px;
  letter-spacing: 0%;
  color: #797979;
}

.sale-main-info-item-text ul {
  margin-left: 20px;
}

/* Prize Pool Section */
.prize-section {
  background-color: #ffffff;
  padding-bottom: 240px;
  padding-top: 160px;
  overflow: hidden;
}

.prize-card-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.prize-card {
  background: white;
  padding: 30px;
  padding-top: 52px;
  padding-bottom: 40px;
  padding-left: 48px;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
  z-index: 2;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(90deg, 
                #64B7F3 0%,
                #fdfeff 50%,
                #64B7F3 100%
              ) border-box;
  border: 4px solid transparent;
  background-size: 100% 100%, 200% 100%;
  animation: gradientBorder 6s linear infinite;
}

.prize-card::before {
  display: none;
}

@keyframes gradientBorder {
  0% {
    background-position: 0 0, 0% 0%;
  }
  100% {
    background-position: 0 0, 200% 0%;
  }
}

.prize-title {
  font-size: 44px;
  line-height: 54px;
  font-weight: 600;
  color: #000000;
  font-family: "Poppins", sans-serif;
  width: 620px;
}

.prize-distribution {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.prize-item {
  padding: 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.prize-item-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #797979;
}

.prize-banner {
  background-color: #64b7f3;
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  width: fit-content;
  margin-left: 40px;
}

.prize-banner-text {
  font-family: Poppins;
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0%;
}

.prize-gradient-bg {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(25%);
  scale: 1.5;
  z-index: 1;
}

/* Footer */
footer {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.social-icons {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
}

.footer-text {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 2%;
  text-align: center;
  color: #212121;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .check-status-description {
    font-size: 14px;
    line-height: 24px;
  }

 /* .check-status-button {
    display: none;
  }*/

  .check-status-button-mobile {
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 22px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    width: fit-content;
    height: 50px;
    display: block;
    margin-top: 24px;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
  }

  .check-status-button-mobile:hover {
    background-color: #444444;
  }

  .check-status-button-mobile:active {
    background-color: #888888;
  }

  .status-card {
    padding: 24px;
    padding-top: 52px;
    overflow: hidden;
  }

  .check-status-input {
    font-size: 16px;
  }

  .status-illustration-1 {
    display: none;
  }

  .status-illustration-2 {
    width: 720px;
  }

  .trading-section-title {
    font-size: 32px !important;
    line-height: 36px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .trading-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trading-bg-1 {
    top: 0;
    transform: translate(-50%, 48%);
    width: 200%;
  }

  .trading-bg-2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 200%;
    height: auto;
    z-index: 1;
    display: block;
  }

  .trading-table-row-odd {
    font-size: 12px;
    line-height: 14.52px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trading-table-row-even {
    font-size: 12px;
    line-height: 14.52px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .trading-table-row-key {
    grid-column: span 2;
  }

  .trading-table-header-title {
    font-size: 16px;
    line-height: 24px;
  }

  .trading-table-header-icon {
    width: 26px;
    height: 26px;
  }

  .trading-banner {
    margin-top: 24px;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .trading-banner-item:first-child {
    border-right: none;
    border-bottom: 1px dashed white;
    padding-bottom: 24px;
  }

  .trading-banner-title {
    font-size: 20px;
    line-height: 24.2px;
  }

  .trading-banner-value {
    font-size: 16px;
    line-height: 19.36px;
  }

  .trading-table-header {
    padding: 28px 26px;
  }

  .trading-table {
    padding-bottom: 64px;
  }

  .leaderboard-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .leaderboard-selection-item-title {
    display: none;
  }

  .leaderboard-selection-item-title-active {
    display: none;
  }

  .leaderboard-container {
    gap: 24px;
  }

  .leaderboard-selection {
    width: fit-content;
  }

  .leaderboard-table-row-text {
    font-size: 14px;
    line-height: 21px;
  }

  .leaderboard-table {
    padding: 20px;
  }

  .leaderboard-table-header {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 8px;
  }

  .leaderboard-table-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .leaderboard-table-username {
    grid-column: span 1;
  }

  .leaderboard-selection-item-title-mobile {
    font-family: Poppins;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    color: #000000;
    display: block;
    text-align: center;
    padding: 20px 8px;
  }

  .leaderboard-table-header-title {
    font-size: 14px;
    line-height: 16.94px;
  }

  .leaderboard-table-rank-title {
    padding-left: 12px;
  }

  .leaderboard-section {
    padding-bottom: 180px;
    padding-top: 180px;
  }

  .sale-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .skicoin-sale-img {
    display: none;
  }

  .skicoin-sale-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.1;
    order: -1;
  }

  .sale-section {
    padding-top: 28px;
  }

  .sale-title {
    font-size: 32px;
    line-height: 48px;
  }

  .sale-main {
    margin-top: -64px;
  }

  .sale-main-info {
    margin-top: 32px;
  }

  .prize-section {
    padding-top: 40px;
  }

  .prize-banner {
    margin: auto;
  }

  .prize-title {
    font-size: 32px;
    line-height: 48px;
    width: fit-content;
    text-align: center;
  }

  .prize-card {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 12px;
  }

  .prize-distribution {
    grid-template-columns: 1fr;
  }

  .prize-gradient-bg {
    transform: translateY(30%);
  }

  .footer-text {
    font-size: 32px;
  }

  .status-result-card {
    flex-direction: column;
    margin-top: 0px;
    margin-bottom: 40px;
    width: 100%;
  }

  .status-result-card-divider {
    width: 3px;
    height: 40px;
    margin: 20px 0;
  }
}
