body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
}

.heady-trades-logo {
  margin-left: auto;
  margin-right: auto;
}

header img {
  margin-bottom: 10px;
}

h3 {
  margin-top: 12px;
  color: #BFFFEC;
}

.subscribe-container {
  margin-top: 30px;
}

.coming-text {
  font-family: 'Stretch Pro', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
}

.coming-text .line-1 {
  font-size:90px;
  font-weight:bold;
}

.coming-text .line-2 {
  font-size:122px;
  font-weight:bold;
  color:#bfffec
}

.main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.column {
  flex: 1 1 100%;
  max-width: 575px;
}

.content-block {
  margin-bottom: 40px;
}

.content-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.content-block p {
  font-size: 23px;
  line-height: 1.6;
}

.card {
  background-color: #161616;
  border-radius: 12px;
  padding: 10px 30px 10px 30px;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.card p {
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card input[type="email"] {
  width: -webkit-fill-available;
  padding: 12px;
  font-size: 18px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
}

.card label {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.card input[type="checkbox"] {
  margin-right: 10px;
}

.card button {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background-color: #bfffec;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

a {
  color: #bfffec;
}

footer {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #0b0b0b;
  color: #aaa;
  gap: 125px;
  margin-left:20px;
}

.footer-col {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .footer-col {
    flex: 1;
  }
  h3 {
    line-height: 1.2em !important;
  }
  .column {
    flex: 1;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.consent-container a {
    color: #676565;
    font-size: 18px;
}
.consent-container {
    margin-top: 55px;
}

.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.mobile-nav-toggle span {
  width: 24px;
  height: 3px;
  background: #00ffcc;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: black;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
.mobile-nav.active {
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-nav li {
  margin: 20px 0;
}
.mobile-nav a {
  font-family: 'Stretch Pro', sans-serif;
  font-size: 2rem;
  color: #00ffcc;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: white;
}

.ticker-container {
  width: 100vw;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0;
  height: 160px; /* Enough to hold 150px font */
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

.ticker-text {
  font-family: 'Stretch Pro', sans-serif;
  font-size: 150px;
  white-space: nowrap;
  color: #BFFFEC33;
  line-height: 1;
  padding-right: 5rem;
  font-weight: bold;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}