@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  .header-spacer {
    padding-top: 5rem;
  }

  .my-nav {
    width: 100%;
    /* background: #f2f4f5; */
    padding: 0px 40px;
    position: fixed;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    background: #ffffff6c;
    border: 1px solid #ffffff;
    /* padding: 15px 20px; */
    margin: 10px 2.5%;
    /* position: fixed; */
    z-index: 1000;
    width: 95%;
    box-sizing: border-box;
  }

  .my-nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .my-nav-logo {
    display: block;
    text-decoration: none;
    outline: none;
  }

  .my-nav-logo img {
    width: 60px;
  }

  .my-nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }

  .my-nav-links a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-top: 20px;
  }

  .my-nav-links a:hover {
    color: #4282b0;
  }

  .my-nav-buttons {
    display: flex !important;
  }

  .my-nav-toggle {
    display: none;
  }

   .funder {
    display: none;
  }

  /* Hide mobile menu elements on desktop */
  .mobile-menu-overlay,
  .mobile-menu {
    display: none !important;
  }
}

.btn-primary {
  color: #ffffff !important;
  background: #3c8ecf !important;
  font-size: 14px !important;
  outline: none !important;
  border: none !important;
}

.btn-outline-dark {
  font-size: 14px !important;
  border: 1px solid #b7b5b5;
}

.btn-outline-dark:hover {
  color: #ffffff !important;
  background: #3c8ecf !important;
  border: 1px solid #3c8ecf;
}

header {
  background: none;
}

@media screen and (max-width: 799px) {
  /* Mobile nav bar */

  .header-spacer {
    padding-top: 6rem;
  }

  .my-nav {
    border-radius: 20px;
    backdrop-filter: blur(5px);
    background: #ffffff6c;
    border: 1px solid #ffffff;
    padding: 15px 20px;
    margin: 10px 2.5%;
    position: fixed;
    z-index: 1000;
    width: 95%;
    box-sizing: border-box;
  }

  .my-nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .my-nav-logo {
    display: block;
    text-decoration: none;
    outline: none;
  }

  .my-nav-logo img {
    width: 50px;
  }

  .my-nav-links {
    display: none;
  }

  .my-nav-buttons {
    display: none !important;
  }

  .my-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    padding: 5px;
  }

  .funder {
    display: block;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    margin: 10px;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    background: #ffffff6c;
    border-radius: 20px;
  }

  .mobile-menu.active {
    right: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
  }

  .mobile-menu-header .my-nav-logo img {
    width: 50px;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    padding: 5px;
    transition: color 0.3s ease;
  }

  .mobile-menu-close:hover {
    color: #4282b0;
  }

  /* Mobile Navigation Links */
  .mobile-nav-links {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex: 1;
  }

  .mobile-nav-links li {
    margin-bottom: 15px;
  }

  .mobile-nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition:
      background 0.3s ease,
      color 0.3s ease;
  }

  .mobile-nav-links a:hover {
    background: #f2f4f5;
    color: #4282b0;
  }

  /* Mobile Navigation Buttons */
  .mobile-nav-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
  }

  .mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .hero-section {
    padding-top: 5rem;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4fc 0%, #f0f8ff 50%, #ffffff 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 27, 76, 0.25) 0%,
    rgba(6, 27, 76, 0.65) 100%
  );
  z-index: 1;
}

.hero-section .container,
.hero-content,
.hero-graphic {
  position: relative;
  z-index: 2;
}

body {
  background: #f8f9fb;
}

.brand-title {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 10px;
}

.brand-title h1 {
  font-size: 34px;
  margin: 0;
  font-weight: 600;
}

.brand-title p {
  color: #8b8b8b;
  margin: 6px 0 30px;
}

.register-card {
  max-width: 640px; /* increased width for larger forms */
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 45, 61, 0.08);
  padding: 34px;
  background: #fff;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-control.custom {
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: none;
  border: 1px solid #e6e9ee;
}

.form-control.custom:focus {
  box-shadow: none;
  border-color: #cdd7e6;
}

.small-sub {
  color: #9aa3ad;
  margin-bottom: 18px;
}

.btn-primary.custom {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .register-card {
    padding: 20px;
    margin: 0 12px;
  }

  .brand-title h1 {
    font-size: 28px;
  }
}

.hero-content {
  padding-right: 30px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.badge-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1e3a5f;
}

.hero-description {
  font-size: 14px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
  /* max-width: 550px; */
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 300;
  border-radius: 8px;
  text-decoration: none;
}

.hero-buttons .btn-primary {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border: none;
  color: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-buttons .btn-outline-light {
  background: transparent;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
  background: #2563eb;
  color: #fff;
}

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

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.hero-graphic {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.live-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.text-violet {
  color: #401764;
}

.live-indicator .live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.mining-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
  background: #6767677d;
  backdrop-filter: blur(10px);
}

.start-box {
  width: 50%;
}

.stat-box p {
  font-size: 10px;
  margin: 1px 0;
}

.stat-box h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Responsive Hero Section */
@media screen and (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-section .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-graphic {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .stat-item p {
    font-size: 0.85rem;
    margin: 0;
  }

  .hero-graphic {
    padding: 20px;
  }

  .live-indicator {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .stat-box {
    padding: 15px;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }
}

.hero-video2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gradient-text {
  background: linear-gradient(90deg, #1c314a, #218ae1 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-center {
  background: linear-gradient(90deg, #1c314a, #218ae1 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  display: table;
  margin: 1rem auto;
}

.bg-purple-subtle {
  background-color: rgba(139, 92, 246, 0.14) !important;
}

.bg-purple {
  background-color: #8b5cf6 !important;
}

.text-purple {
  color: #8b5cf6 !important;
}

#platform {
  background: #e0e3ea !important;
}

.system-features {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.24);
}

.feature-item h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.feature-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
  font-size: 0.85rem;
}

.video-frame {
  padding: 20px;
  background: #c7bcd5;
}
.calc-feature-card {
  background: #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.calc-feature-icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
}

.home-dashboard-panel {
  max-width: 760px;
  margin: 40px auto 70px;
  padding: 28px;
  border-radius: 30px;
  background: #ededed;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.home-dashboard-header h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}

.home-dashboard-header p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.home-dashboard-features {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.dashboard-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.dashboard-feature__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  font-size: 1.15rem;
}

.dashboard-feature__icon--green {
  background: linear-gradient(135deg, #d1fae5, #10b981);
}

.dashboard-feature__icon--blue {
  background: linear-gradient(135deg, #bfdbfe, #2563eb);
}

.dashboard-feature__icon--purple {
  background: linear-gradient(135deg, #e9d5ff, #8b5cf6);
}

.dashboard-feature__body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.dashboard-feature__body p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.home-balance-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: #fafbff;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.home-balance-card__header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  margin-bottom: 12px;
}

.home-balance-card__amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-balance-card__amount strong {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.home-balance-card__amount span {
  font-size: 14px;
  color: #64748b;
}

.home-balance-card__footer {
  margin-top: 18px;
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 767px) {
  .home-dashboard-panel {
    margin: 24px 14px 60px;
    padding: 22px;
  }

  .home-dashboard-header h1 {
    font-size: 26px;
  }

  .dashboard-feature {
    padding: 16px;
  }

  .home-balance-card {
    padding: 20px;
  }

  .home-balance-card__amount strong {
    font-size: 32px;
  }
}

.guide-step-counter {
  width: 34px;
  height: 34px;
}

.guide-step-icon {
  width: 70px;
  height: 70px;
}

#system {
  background: #dfe0e7 !important;
}

#calculator {
  background: #dce2e7;
}

.cal h5,
.cal h4,
.cal h6 {
  font-weight: 300;
}

.cal p {
  font-size: 12px;
  color: #64748b;
}

#guide {
  background: #dcdbe5;
}

.card {
  background: #f3f5f5 ;
}

#why {
  background: #e1edea;
}

#live {
  background: #e0e3ea;
}

#testimony {
  background: #dce1ea;
}

footer {
  background: #e1e1e9;
}

.my-alert {
  position: fixed !important;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: 90%;
  max-width: 500px;
}

.home-balance-card__header span {
  background: #eae9e9;
  font-size: 18px;
  padding: 4px;
  border-radius: 30%;
  display: inline-block;
  margin-right: 6px;
}

.home-balance-card__amount strong {
  font-weight: 400;
}

.home-balance-card {
  background: #fefefe;
}

.t-time{
  font-size: 2.5rem;
}

.history-icon{
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: inline-block;
}
