@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto; /* 🔴 NO SCROLL */
}

body {
  font-family: "Poppins", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
}

/* Layout */
.main-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  padding: 14px 0 6px;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  
}

.brand-text {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-center {
  text-align: center;
}

/* Main Heading */
.hero h1 {
  font-size: 40px;
  margin: 12px 0 0;
}

/* SOON */
.soon-text {
  margin: 8px 0 18px;
  font-size: 40px;
  font-weight: 800;
  
  line-height: 1;
  opacity: 0.9;
}

/* Banner */
.banner-wrapper {
  margin-bottom: 16px;
}

.banner-image {
  width: 100%;
  max-width: 580px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

/* Button */
.mcc-btn {
  display: inline-block;
  padding: 10px 40px;
  background: #d32f2f;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mcc-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

/* Footer (inside hero) */
.footer {
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 12px;
  text-align: center;
  opacity: 0.85;
}

.footer a {
  color: #4da3ff;
  font-weight: 600;
  text-decoration: none;
}

.footer-logo {
    height: 40px;
    border-radius: 5px;;
  vertical-align: middle;
  margin-left: 4px;
}

/* Mobile */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 26px;
  }

  .soon-text {
    font-size: 60px;
    letter-spacing: 6px;
  }

  .banner-image {
    max-width: 100%;
    border-radius: 16px;
  }

}

/* MCC Digital Button */
.mcc-digital-btn {
  display: inline-block;
  margin: 16px 0 26px;
  padding: 10px 35px;
  background: #d32f2f;
  color: white;
  border: 2px solid #ff3b3b;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mcc-digital-btn:hover {
  background: #ff3b3b;
  color: #ffffff;
  transform: translateY(-2px);
}

