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

:root {
  --white: #fff;
  --purple: #7540ef;
  --purple-light: #ede8fd;
  --grey: #7540ef14;
  --black: #0e0f1fcc;
  --black-head: #0e0f1f;
}

@font-face {
  font-family: "Atyp Display";
  src: url("Fonts/AtypDisplayTRIAL-Regular-BF65727125d566e.otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Atyp Display";
  src: url("Fonts/AtypDisplayTRIAL-Medium-BF65727125b8683.otf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Atyp Display";
  src: url("Fonts/AtypDisplayTRIAL-Bold-BF65727125c8d1d.otf");
  font-weight: 700;
  font-style: normal;
}

.hero-wrapper {
  background: radial-gradient(
      ellipse 60% 50% at 15% 50%,
      rgba(58, 31, 180, 0.45),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 85% 30%,
      rgba(20, 80, 200, 0.3),
      transparent
    ),
    #060a14;
}

.header {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 10;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.header-logo img {
  width: 28px;
  display: block;
}

.text-logo h2 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  margin: 0;
  color: var(--white);
  letter-spacing: -2px;
}

.header-right-contents {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-family: "Atyp Display";
  font-weight: 500;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-btns a:first-child {
  padding: 16px 20px;
  color: var(--white);
  font-family: "Atyp Display";
  text-decoration: none;
  border-radius: 24px;
  font-size: 18px;
  border: 1.5px solid var(--grey);
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.header-btns a:first-child:hover {
  border: 1.5px solid var(--white);
}

.header-btns a:last-child {
  padding: 16px 20px;
  background-color: var(--purple);
  color: var(--white);
  font-family: "Atyp Display";
  text-decoration: none;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.header-btns a:last-child:hover {
  opacity: 0.9;
}

.btc-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.btc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f7931a;
  box-shadow: 0 0 6px #f7931a;
  flex-shrink: 0;
}

.btc-value {
  color: var(--white);
  font-family: "Atyp Display";
  font-size: 14px;
  font-weight: 500;
}

.btc-label {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Atyp Display";
  font-size: 14px;
  font-weight: 400;
}

.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  width: 36%;
  margin: 0 auto 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 30px;
  font-family: "Atyp Display";
  font-weight: 400;
  max-width: 500px;
}

.hero-content a {
  padding: 16px 32px;
  background-color: var(--purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 24px;
  font-family: "Atyp Display";
  font-size: 18px;
  font-weight: 500;
}

.hero-content a:hover {
  opacity: 0.9;
}

.hero-image {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 40%;
  max-width: 500px;
}

.media-strip {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  overflow: hidden;
}

.media-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.media-slide {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 50px;
}

.media-track img {
  height: 30px;
  opacity: 0.5;
  filter: brightness(10);
  object-fit: contain;
  flex-shrink: 0;
}

.media-track img:hover {
  opacity: 0.8;
}

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

/* EARN SECTION */

.earn-section {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

.earn-header {
  text-align: center;
  margin-bottom: 50px;
}

.earn-header h2 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--black-head);
  margin-bottom: 16px;
}

.earn-header p {
  font-family: "Atyp Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin: 0 auto;
}

.earn-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.earn-card {
  flex: 1;
  min-width: 0;
  background: rgba(14, 15, 31, 0.03);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.earn-card-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.earn-card-text h3 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--black-head);
  letter-spacing: -1px;
}

.earn-card-text p {
  font-family: "Atyp Display", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}

.earn-card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.link-primary {
  padding: 16px 24px;
  background-color: var(--purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 24px;
  font-family: "Atyp Display";
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  text-align: center;
  width: 100%;
}

.link-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.link-secondary {
  padding: 16px 24px;
  background-color: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
  border-radius: 24px;
  font-family: "Atyp Display";
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  text-align: center;
  width: 100%;
}

.link-secondary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.earn-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  max-height: 300px;
}

.earn-card-image img {
  width: 60%;
  object-fit: contain;
  display: block;
}

.earn-card:last-child .earn-card-image {
  padding-top: 30px;
  align-items: flex-start;
}

.earn-card:last-child .earn-card-image img {
  width: 40%;
}

/* STATS */

.earn-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  gap: 60px;
  padding-top: 60px;
}

.earn-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.earn-stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap svg {
  width: 44px;
  height: 44px;
}

.stat-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.earn-stat h3 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--black-head);
  letter-spacing: -1px;
  white-space: nowrap;
}

.earn-stat p {
  font-family: "Atyp Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  white-space: nowrap;
}

/* CRYPTO SECTION */

.crypto-section {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

.crypto-header {
  text-align: center;
  margin-bottom: 50px;
}

.crypto-header h2 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--black-head);
  margin-bottom: 16px;
}

.crypto-header p {
  font-family: "Atyp Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin: 0 auto;
}

.crypto-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.crypto-card {
  flex: 1;
  min-width: 0;
  background: rgba(14, 15, 31, 0.03);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.crypto-card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 300px;
}

.crypto-card-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.crypto-card-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crypto-card-text h3 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--black-head);
  letter-spacing: -1px;
}

.crypto-card-text p {
  font-family: "Atyp Display", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}

.crypto-card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

/* FOOTER */

.footer {
  background: #060a14;
  width: 100%;
  margin-top: 80px;
}

.footer-inner {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo h2 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  letter-spacing: -2px;
}

.footer-downloads {
  display: flex;
  gap: 12px;
}

.footer-download-btn {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: var(--white);
  text-decoration: none;
  font-family: "Atyp Display";
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.footer-download-btn:hover {
  border-color: var(--white);
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: "Atyp Display";
  font-size: 14px;
  font-weight: 500;
}

.footer-lang img {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.footer-col h4 {
  font-family: "Atyp Display", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: "Atyp Display", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: "Atyp Display", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  font-family: "Atyp Display", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.footer-policies a:hover {
  color: var(--white);
}


/* ============================================
   GOMINING — MOBILE STYLES
   Target: iPhone small (~375px) and up
   Add this at the bottom of your styles.css
   ============================================ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
    .hero-content h1 {
      width: 60%;
      font-size: 38px;
    }
  
    .hero-image img {
      width: 60%;
    }
  
    .earn-cards,
    .crypto-cards {
      flex-direction: column;
    }
  
    .earn-stats {
      gap: 30px;
    }
  
    .footer-links {
      gap: 24px;
    }
  }
  
  /* ── MOBILE (max 768px) ── */
  @media (max-width: 768px) {
  
    /* HEADER */
    .header {
      padding: 0 20px;
      height: 70px;
      flex-wrap: wrap;
    }
  
    .header-right-contents {
      gap: 10px;
    }
  
    .btc-counter {
      display: none;
    }
  
    .language {
      display: none;
    }
  
    .header-btns a:first-child,
    .header-btns a:last-child {
      padding: 10px 14px;
      font-size: 14px;
    }
  
    /* HERO */
    .hero {
      padding-top: 50px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .hero-content h1 {
      width: 100%;
      font-size: 32px;
      letter-spacing: -1px;
    }
  
    .hero-content p {
      font-size: 14px;
    }
  
    .hero-content a {
      padding: 14px 28px;
      font-size: 16px;
    }
  
    .hero-image img {
      width: 85%;
    }
  
    /* MEDIA STRIP */
    .media-slide {
      gap: 30px;
      padding: 0 30px;
    }
  
    .media-track img {
      height: 22px;
    }
  
    /* EARN SECTION */
    .earn-section {
      width: 100%;
      padding: 50px 20px;
    }
  
    .earn-header h2 {
      font-size: 28px;
    }
  
    .earn-header p {
      font-size: 14px;
    }
  
    .earn-cards {
      flex-direction: column;
      gap: 16px;
    }
  
    .earn-card-text {
      padding: 24px 20px;
    }
  
    .earn-card-text h3 {
      font-size: 24px;
    }
  
    .earn-card-text p {
      font-size: 14px;
    }
  
    .earn-card-image {
      max-height: 220px;
    }
  
    .earn-card-image img {
      width: 55%;
    }
  
    .earn-card:last-child .earn-card-image img {
      width: 35%;
    }
  
    /* STATS */
    .earn-stats {
      flex-direction: column;
      gap: 24px;
      padding-top: 40px;
      align-items: flex-start;
      padding-left: 10px;
    }
  
    .earn-stat {
      flex-direction: row;
      align-items: center;
      gap: 14px;
      text-align: left;
    }
  
    .earn-stat-top {
      flex-direction: row;
      align-items: center;
    }
  
    .earn-stat h3 {
      font-size: 22px;
    }
  
    .earn-stat p {
      font-size: 13px;
      white-space: normal;
    }
  
    /* CRYPTO SECTION */
    .crypto-section {
      width: 100%;
      padding: 50px 20px;
    }
  
    .crypto-header h2 {
      font-size: 28px;
    }
  
    .crypto-header p {
      font-size: 14px;
    }
  
    .crypto-cards {
      flex-direction: column;
      gap: 16px;
    }
  
    .crypto-card-text {
      padding: 24px 20px;
    }
  
    .crypto-card-text h3 {
      font-size: 24px;
    }
  
    .crypto-card-text p {
      font-size: 14px;
    }
  
    .crypto-card-image {
      max-height: 220px;
    }
  
    .crypto-card-image img {
      width: 100%;
      object-fit: cover;
    }
  
    /* FOOTER */
    .footer-inner {
      padding: 40px 20px 30px;
    }
  
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 30px;
    }
  
    .footer-downloads {
      flex-direction: column;
      width: 100%;
    }
  
    .footer-download-btn {
      text-align: center;
      padding: 12px 16px;
      font-size: 13px;
    }
  
    .footer-links {
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
      padding-bottom: 30px;
    }
  
    .footer-col {
      flex: 1 1 40%;
      min-width: 140px;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
  
    .footer-policies {
      gap: 12px;
    }
  
    .footer-policies a {
      font-size: 12px;
    }
  }
  
  /* ── SMALL MOBILE (max 375px — iPhone SE etc) ── */
  @media (max-width: 375px) {
  
    .header-btns {
      gap: 8px;
    }
  
    .header-btns a:first-child,
    .header-btns a:last-child {
      padding: 8px 12px;
      font-size: 13px;
    }
  
    .hero-content h1 {
      font-size: 28px;
    }
  
    .hero-content a {
      padding: 12px 24px;
      font-size: 15px;
    }
  
    .hero-image img {
      width: 95%;
    }
  
    .earn-card-text h3,
    .crypto-card-text h3 {
      font-size: 22px;
    }
  
    .earn-stats {
      padding-left: 0;
    }
  
    .footer-col {
      flex: 1 1 100%;
    }
  }