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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #000;
}

.page-container {
  width: 100%;
  min-height: 100vh;
}

/* Header styles */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 140px;
}

.logo {
  width: 252px;
  height: 97px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-transform: capitalize;
  text-decoration: none;
}

.contact-btn {
  display: inline-block;
  padding: 20px 32px;
  border-radius: 800px;
  background-color: #000;
  color: #fff;
}

.language-selector {
  display: flex;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 800px;
  background: linear-gradient(180deg, #0da840 0%, #4dbf72 100%);
}

.language-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-code {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

/* Decorative elements */
.decorative-elements {
  position: relative;
}

.circle-large {
  position: absolute;
  right: 0;
  top: 0;
}

.circle-small {
  position: absolute;
  right: 50px;
  top: 80px;
}

.circle-medium {
  position: absolute;
  right: 300px;
  top: 125px;
}

/* Main content */
.main-content {
  position: relative;
}

/* Hero section */
.hero-section {
  display: flex;
  flex-direction: column;
  padding: 100px 140px;
  gap: 100px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 694px;
}

.hero-title {
  color: #000;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-description {
  color: #434343;
  font-size: 14px;
  line-height: 28px;
}

.hero-image {
  max-width: 50%;
  width: 1009px;
}

.platform-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 31px;
}

.platform-image {
  max-width: 50%;
  width: 750px;
}

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 530px;
}

.platform-title {
  color: #000;
  font-size: 64px;
  font-weight: 800;
  text-transform: capitalize;
}

.platform-description {
  color: #434343;
  font-size: 14px;
  line-height: 24px;
}

/* Studios section */
.studios-section {
  background: linear-gradient(180deg, #000 0%, #0da840 100%);
  padding: 100px 140px;
}

.studios-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.studios-image {
  width: 558px;
  max-width: 100%;
}

.studios-title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-transform: capitalize;
}

.studios-description {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

/* Wallet section */
.wallet-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 140px;
  gap: 40px;
}

.wallet-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 750px;
}

.wallet-title {
  color: #000;
  font-size: 64px;
  font-weight: 800;
  text-transform: capitalize;
}

.wallet-description {
  color: #434343;
  font-size: 14px;
  line-height: 18px;
}

.contact-button {
  display: flex;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 800px;
  background: linear-gradient(180deg, #0da840 0%, #4dbf72 100%);
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.wallet-image {
  width: 401px;
}

/* Stats section */
.stats-section {
  position: relative;
  padding: 100px 140px;
}

.stats-title {
  text-align: center;
  color: #000;
  font-size: 60px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 80px;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-label {
  color: #434343;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.stat-value {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  text-transform: capitalize;
}

/* Footer */
.main-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 140px;
}

.copyright {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.footer-logo {
  height: 40px;
}

.footer-nav {
  display: flex;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.footer-link {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
}

/* Media queries */
@media (max-width: 991px) {
  .main-header {
    padding: 20px 40px;
  }

  .logo {
    width: 200px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-section,
  .studios-section,
  .wallet-section,
  .stats-section,
  .main-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content,
  .platform-content {
    flex-direction: column;
  }

  .hero-image,
  .platform-image {
    max-width: 100%;
  }

  .hero-title {
    font-size: 60px;
  }

  .platform-title,
  .wallet-title {
    font-size: 48px;
  }

  .stats-title {
    font-size: 48px;
  }

  .stats-container {
    flex-direction: column;
  }

  .wallet-section {
    flex-direction: column;
  }

  .main-footer {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .main-header {
    padding: 20px 20px;
  }

  .logo {
    width: 150px;
  }

  .hero-section,
  .studios-section,
  .wallet-section,
  .stats-section,
  .main-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .platform-title,
  .wallet-title {
    font-size: 36px;
  }

  .stats-title {
    font-size: 36px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
