/* styles.css */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* You can use black or another color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  font-family: 'Comic Neue', cursive;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: pulse 1s infinite ease-in-out;
}

.loader-text {
  margin-top: 10px;
  font-size: 1.2em;
  color: #333;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}


body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    color: #222;
    width: 100vw;
    height: 100vh;
}

button {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}

header {
    position: relative;
    background: linear-gradient(-45deg, #000000, #222222, #ffffff, #000000);
    background-size: 400% 400%;
    animation: glowBackground 10s ease infinite;
    color: #fff;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;
}

.header-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.logo {
    z-index: 1;
    margin-bottom: 30px; /* Adjust value as needed */
}

.logo img {
    height: 80px; /* Adjust as needed */
    object-fit: contain;
}

@keyframes glowBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
  header {
    height: 250px; /* Increase height if needed for more wave visibility */
  }

  .header-wave svg {
    height: 150px; /* Stretch the wave */
    width: 200%;   /* Makes it stretch wider */
    transform: scaleX(1.2); /* Optional: Stretch horizontally more smoothly */
  }


}

/* Tablets (min-width: 769px to max-width: 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  header {
    height: 280px; /* a bit taller than mobile */
  }

  .header-wave svg {
    height: 160px;    /* bigger wave */
    width: 180%;      /* wider wave */
    transform: scaleX(1.1); /* gentle horizontal stretch */
  }

  .logo {
    margin-bottom: 40px; /* slightly more space under logo */
  }

  .logo img {
    height: 90px; /* slightly bigger logo */
  }
}


.intro {
    position: relative;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    flex-direction: column;
    padding: 4rem 2rem;
    background: #fff;
    min-height: 50px;       /* Full screen height */
    text-align: center;
    overflow: hidden;
}

.intro-text {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}

.intro-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.taglines div {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 2;
}

.metrics {
    display: none; /* Remove the old metric layout */
}

button {
    padding: 20px 28px;
    font-size: 1rem;
    background-color: transparent;    /* Transparent background by default */
    color: black;                     /* Text stays white */
    border: 2px solid black;          /* Black border around the button */
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 0;                        /* Remove top margin */
    display: block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6); /* Stronger glow on hover */
}

button + button {
    margin-top: 1rem;                 /* Adds spacing between buttons */
}

button:hover {
    background-color: black;          /* Full black on hover */
    color: white;                     /* Text stays white */
}

.metrics-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* align all from top */
    gap: 5.5rem;               /* spacing between buttons */
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.metric-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-btn button {
    width: 200px;
    height: 50px;
    font-size: 0.95rem;
    background-color: transparent;
    color: black;
    border: 2px solid black;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-btn button:hover {
    background-color: black;
    color: white;
}


.hero-poke {
    position: absolute;
    bottom: 50px; /* Push it further down */
    left: -60px;   /* Shift slightly left for more dramatic entry */
    width: 300px;  /* Make it full/larger */
    transform: rotate(25deg); /* Tilt it */
    z-index: 1;
    opacity: 0.95;
}

.midnight-timer {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background-color: #f9f9f9;
    border: 2px solid black;
    padding: 0.5rem 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    color: black;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    text-align: center;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: default;
}

.midnight-timer:hover {
    background-color: black;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#sell-status strong {
    color: green;
}

#sell-status.closed {
    color: red;
}

#sell-status.open {
    color: green;
}

/* 🔹 Phones (<= 768px) */
@media (max-width: 768px) {
  .intro {
    padding: 2rem 1rem;
  }

  .intro-text {
    font-size: 1rem;
    line-height: 1.4;
    gap: 1rem;
    margin-top: 3rem;
  }

  .intro-text h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .metrics-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }

  .metric-btn {
    flex: 1 1 30%;
    min-width: 100px;
  }

  .metric-btn button {
    width: 100%;
    height: auto;
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: normal;
  }

  .intro-text button {
    margin-bottom: 0.5rem;
  }

  .hero-poke {
    display: none;
  }

  .midnight-timer {
    position: absolute;
    top: 0rem;
    right: 1rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    max-width: 160px;
    box-shadow: none;
    border-width: 1px;
    z-index: 10;
  }
}

/* 🔹 Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .intro {
    padding: 3rem 2rem;
  }

  .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .intro-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .metrics-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
  }

  .metric-btn {
    flex: 1 1 30%;
    min-width: 160px;
    max-width: 180px;
    display: flex;
    justify-content: center;
  }

  .metric-btn button {
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }

  .intro-text button {
    margin-bottom: 1rem;
  }

  .hero-poke {
    display: none;
  }

  .midnight-timer {
    top: 1rem;
    right: 2rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    max-width: 180px;
    z-index: 10;
  }
}

/* 🔹 iPad Mini + Medium Devices (600px – 1280px) */
@media (min-width: 600px) and (max-width: 1280px) {
  .metrics-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
  }

  .metric-btn {
    flex: 1 1 30%;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    justify-content: center;
  }

  .metric-btn button {
    width: 100%;
    height: 60px;
    padding: 0 12px;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
}

/* 🔹 Phablets & Foldables (Galaxy S8+, Surface Duo) */
@media (min-width: 360px) and (max-width: 599px) {
  .metrics-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
  }

  .metric-btn {
    flex: 1 1 45%;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    justify-content: center;
  }

  .metric-btn button {
    width: 100%;
    height: 60px;
    padding: 0 12px;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
}

/* ✅ Nest Hub Max (1280x800) only */
@media (min-width: 1275px) and (max-width: 1285px) and (min-height: 795px) and (max-height: 805px) {
  .hero-poke {
    position: absolute;
    bottom: 50px; /* Push it further down */
    left: -90px;   /* Shift slightly left for more dramatic entry */
    width: 300px;  /* Make it full/larger */
    transform: rotate(25deg); /* Tilt it */
    z-index: 1;
    opacity: 0.95;
  }

  .midnight-timer {
    top: 0.25rem;  /* move slightly up */
    right: 1rem;   /* push slightly more right */
    transition: top 0.3s ease, right 0.3s ease;
  }
}


.about {
  position: relative;
  padding: 4rem 0 10rem;
  background: linear-gradient(-45deg, #000, #222, #838383, #000);
  background-size: 400% 400%;
  animation: glowBackground 10s ease infinite;
  color: #fff;
  overflow: visible;
  min-height: 1200px;

  display: flex;
  flex-direction: column;
}

.about-text {
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.about-box {
  flex: 1 1 100%;
  max-width: 970px; /* You can change this to 300px, 600px, etc. */
  min-height: 900px;
  width: 105%;
  padding: 2rem;
  background: white; /* start as white like .box */
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid black;
  color: black;
  margin: 0 auto;
  margin-top: 50px;  /* Move it down */
}

.about-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.about-box p,
.about-box ul,
.about-box li {
  margin-bottom: 1.5rem; /* Add spacing between elements */
}

.about-box h2,
.about-box p,
.about-box ul,
.about-box li {
  transition: color 0.3s ease;
}

.about-box:hover h2,
.about-box:hover p,
.about-box:hover ul,
.about-box:hover li {
  color: white;
}

.about-box h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-box ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.about-wave-top,
.about-wave {
  position: absolute;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.about-wave-top {
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.about-wave-top svg,
.about-wave svg {
  display: block;
  width: 100%;
  height: 300px;
}

.about-wave {
  bottom: 0;
  left: 0;
}

.about-poke {
  position: absolute;
  bottom: 100px; /* Push it further down */
  right: -250px;  /* Shift slightly left for more dramatic entry */
  width: 500px;   /* Make it full/larger */
  transform: rotate(25deg); /* Tilt it */
  z-index: 1;
  opacity: 0.95;
}


@keyframes glowBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🔹 Phones (<= 768px) */
@media (max-width: 768px) {
  .about {
    padding: 2rem 1rem 5rem;
    min-height: auto; /* Let it shrink */
  }

  .about-text {
    margin-top: 40px;
    padding: 0 1rem;
  }

  .about-box {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 1.5rem;
    margin-top: 30px;
    font-size: 0.9rem;
  }

  .about-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .about-wave-top svg,
  .about-wave svg {
    height: 150px;
    width: 120%;
  }

  .about-poke {
    display: none; /* Hide image on phones */
  }
}

/* 🔹 Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding: 3rem 2rem 7rem;
    min-height: auto;
  }

  .about-text {
    margin-top: 60px;
    padding: 0 1.5rem;
  }

  .about-box {
    max-width: 90%;
    width: 100%;
    min-height: 700px;
    padding: 2rem;
    margin-top: 40px;
    font-size: 1rem;
  }

  .about-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
  }

  .about-wave-top svg,
  .about-wave svg {
    height: 200px;
    width: 110%;
  }

  .about-poke {
    display: none; /* Hide image on tablets */
  }
}

/* 🔹 iPad Mini + Medium Devices (600px – 1280px) */
@media (min-width: 600px) and (max-width: 1280px) {
  .about-text {
    padding: 0 2rem;
  }

  .about-box {
    max-width: 95%;
    width: 100%;
    min-height: 800px;
    font-size: 1.05rem;
  }

  .about-box h2 {
    font-size: 3.75rem;
  }

  .about-wave-top svg,
  .about-wave svg {
    width: 105%;
    height: 220px;
  }
}

/* 🔹 Phablets & Foldables (360px – 599px) */
@media (min-width: 360px) and (max-width: 599px) {
  .about {
    padding: 2rem 1rem 5rem;
  }

  .about-text {
    margin-top: 40px;
    padding: 0 1rem;
  }

  .about-box {
    max-width: 100%;
    min-height: auto;
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .about-box h2 {
    font-size: 2.75rem;
  }

  .about-wave-top svg,
  .about-wave svg {
    width: 120%;
    height: 160px;
  }

  .about-poke {
    display: none;
  }
}

/* ✅ Nest Hub Max (1280x800) only */
@media (min-width: 1275px) and (max-width: 1285px) and (min-height: 795px) and (max-height: 805px) {
  .about-poke {
    display: none;
  }
}


/* Main container section */
.buy-sell {
  position: relative;
  background-color: #fff;                         /* Clean white background */
  padding: 4rem 2rem;                              /* Top/bottom and side padding */
  min-height: 100vh;                               /* Full screen height */
  display: flex;                                   /* Use flex to align content */
  flex-direction: column;                          /* Stack heading and box row */
  justify-content: center;                         /* Vertical center */
  align-items: center;                             /* Horizontal center */
  font-family: 'Comic Neue', cursive, sans-serif;
  text-align: center;
  overflow-x: hidden;                              /* ✅ Prevent horizontal scroll (was 'auto') */
}

/* Row of boxes */
.how-to {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6rem;     /* ← Increase from 4rem to 6rem or more */
  margin-top: 1rem;
  padding-left: 0.5rem;
}

/* Individual box styles */
.howto-box {
  width: 350px;
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  border: 2px solid black;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: black;
  text-align: center; /* instead of left */
}



/* Hover effect */
.howto-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Headings and text inside box */
.howto-box h3, .howto-box p {
  transition: color 0.3s ease;
}

/* Keep text white on hover */
.howto-box:hover h3, .howto-box:hover p {
  color: white;
}

.howto-box p,
.howto-box h3,
.howto-box li {
  margin-bottom: 1.5rem; /* Increase space between paragraphs and headings */
}

/* Sliding warning bar (scrolling marquee style) */
.sliding-warning {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(90deg, #ff8c00, #ffcc00);
  color: #000;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;                /* ✅ Hides overflowing text to prevent scrollbar */
  line-height: 3rem;              /* Vertical alignment of text */
  z-index: 10;
}

/* Sliding text animation using pseudo-element */
.sliding-warning::before {
  content: attr(data-text);
  display: inline-block;
  padding-left: 100%;             /* Start from offscreen right */
  animation: slidein 30s linear infinite;
}

/* Animation keyframes */
@keyframes slidein {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive behavior on smaller screens */
@media (max-width: 768px) {
  .how-to {
    flex-direction: column;                        /* Stack boxes vertically */
    align-items: center;
    gap: 2rem;
  }

  .box {
    width: 90%;                                    /* Let boxes fill screen width */
  }
}

/* Responsive behavior on smaller screens */
@media (max-width: 768px) {
  .how-to {
    flex-direction: column;                        /* Stack boxes vertically */
    align-items: center;
    gap: 2rem;
  }

  .howto-box {
    width: 90%;                                    /* Let boxes fill screen width */
  }

  /* Add extra padding to bottom of container to prevent touching slider */
  .buy-sell {
    padding-bottom: 6rem;
  }

  /* Add margin to last box for spacing from slider */
  .howto-box:last-child {
    margin-bottom: 2rem;
  }
}

/* 💊 Tablets — center or reduce box width if needed */
@media (min-width: 600px) and (max-width: 1024px) {
  .how-to {
    justify-content: center;
    gap: 3rem;
  }

  .howto-box {
    width: 280px; /* Shrink slightly for more horizontal space */
    max-width: 90vw;
  }

  /* For small tablets (600–800px) that still need vertical stacking */
  @media (max-width: 800px) {
    .how-to {
      flex-direction: column;
      align-items: center;
    }
  }
}

/* Mid-range devices: iPad Air, Surface Pro, Zenbook Fold, Nest Hub Max */
@media (min-width: 768px) and (max-width: 1024px) {
  .how-to {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .howto-box {
    width: 320px;       /* Reasonable width for mid-size */
    max-width: 90vw;    /* Prevent overflow on small screens */
  }

  .buy-sell {
    padding-bottom: 6rem;  /* Prevent overlap with sliding-warning */
  }
}

/* Nest Hub Max (1280x800) - vertical centered layout */
@media (min-width: 1200px) and (max-width: 1320px) and (max-height: 850px) {
  .how-to {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .howto-box {
    width: 320px !important;
    max-width: 90vw !important;
  }

  .buy-sell {
    padding-bottom: 6rem !important;
  }
}

 /* Tokenomics*/
.tokenomics {
  position: relative;
  background: linear-gradient(-45deg, #000, #222, #838383, #000);
  background-size: 400% 400%;
  animation: glowBackground 10s ease infinite;
  padding: 4rem 2rem 10rem;
  min-height: 100vh; /* Ensures full screen, grows with content */
  font-family: 'Comic Neue', cursive, sans-serif;
  color: white;
  overflow: hidden;
}

.tokenomics-title {
  flex: 1 1 100%;
  max-width: 700px;
  width: 100%;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid black;
  color: black;
  margin: 0 auto;
  margin-top: -5px;
  font-size: 5rem;
  font-weight: bold;
  box-shadow: 0 0 20px hsl(0, 0%, 100%); /* Stronger glow on hover */
}

.tokenomics-title:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.distribution-label {
  display: inline-block;
  background: white;
  color: black;
  font-weight: bold;
  padding: 1rem 2rem;
  border: 2px solid black;
  border-radius: 8px;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 4rem;
}

.distribution-label:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.details-label {
  display: inline-block;
  background: white;
  color: black;
  font-weight: bold;
  padding: 1rem 5rem;
  border: 2px solid black;
  border-radius: 8px;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 4rem;
}

.details-label:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.Tokenom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* Center the boxes */
  gap: 10rem;                /* Clean spacing between boxes */
  margin-top: 2rem;
  padding: 0 1rem;
}

.token-box {
  flex: 1 1 250px;
  max-width: 500px;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid black;
  color: black;
  min-height: 400px; /* or any height you prefer */
}

.token-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.token-box h3, .token-box p {
  transition: color 0.3s ease;
}

.token-box:hover h3, .token-box:hover p {
  color: white;
}

.img-placeholder {
  width: 80px;
  height: 80px;
  margin: 1rem auto;
  background: lightgray;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
}

.token-details-box {
  max-width: 1000px;
  width: 100%;                 /* Ensures it stretches full width of max-width */
  padding: 1.5rem 2rem 2rem;     /* Top, sides, bottom */
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  border: 2px solid black;
  color: black;
  margin: 3rem auto 0 auto;    /* Top margin, centered horizontally */
  min-height: 400px;           /* Optional: ensures taller box */
  font-size: 1.5rem;    /* ⬅️ Slightly bigger text (optional) */
}


.token-details-box p {
  margin-bottom: 5rem; /* ⬅️ space between lines */
}

.token-details-box:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.token-details-box:hover p {
  color: white;
}

/* Wave Styling */
.tokenomics-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.tokenomics-wave svg {
  display: block;
  width: 100%;
  height: 200px;
}

.copy-icon {
  display: inline-block;
  margin-left: 0.8rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: black;
  transition: color 0.3s ease;
  user-select: none;
}

.token-details-box:hover .copy-icon {
  color: white; /* change with hover style */
}

.copy-icon:hover {
  color: #777;
}

/* 🔹 Phones (≤768px) */ 
@media (max-width: 768px) {
  .tokenomics {
    padding: 2rem 1rem 6rem;
  }

  .tokenomics-title {
    font-size: 3rem;
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .distribution-label,
  .details-label {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    margin: 2rem auto 1rem;
    width: 90%;
    max-width: 700px;
    display: block;
    text-align: center;
  }

  .Tokenom {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 0;
  }

  .token-box,
  .token-details-box {
    width: 90%;
    padding: 1.5rem;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .token-details-box {
    font-size: 0.9rem;
    text-align: left;
  }

  .token-details-box p {
    margin: 1rem 0;         /* Tighter spacing */
    text-align: left;         /* Ensure left-alignment */
  }

  .token-box h3 {
    font-size: 1.6rem;
  }

  .token-box p {
    font-size: 1rem;
  }

  .img-placeholder {
    width: 70px;
    height: 70px;
  }

  .tokenomics-wave {
    overflow: hidden;
    width: 100%;
    height: 140px;
  }

  .tokenomics-wave svg {
    width: 100%;
    height: 100%;
    transform: scaleX(3);
    transform-origin: center;
    display: block;
  }

}

/* 🔹 Phablets (360px–599px) */
@media (min-width: 360px) and (max-width: 599px) {
  .tokenomics-title {
    font-size: 2.5rem;
  }

  .token-box,
  .token-details-box {
    width: 95%;
  }
}

/* 🔹 Tablets (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .tokenomics {
    padding: 3rem 2rem 8rem;
  }

  .tokenomics-title {
    font-size: 4rem;
  }

  .Tokenom {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .token-box,
  .token-details-box {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
  }

  .token-details-box {
    text-align: left;
  }

  .token-details-box p {
    margin: 0.4rem 0;
    text-align: left;
  }

  .distribution-label,
  .details-label {
    font-size: 1.6rem;
    width: fit-content;
    margin: 3rem auto 1rem;
    text-align: center;
    display: block;
    padding: 1rem 2rem;
  }
}

/* 🔹 Medium Devices (1025px–1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .tokenomics {
    padding: 4rem 3rem 10rem;
  }

  .tokenomics-title {
    font-size: 4.5rem;
  }

  .Tokenom {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 1rem;
  }

  .token-box,
  .token-details-box {
    width: 90%;
    max-width: 900px;
    padding: 2rem;
  }

  .distribution-label,
  .details-label {
    font-size: 1.8rem;
    width: fit-content;
    margin: 3rem auto 1rem;
    text-align: center;
    display: block;
    padding: 1rem 2.5rem;
  }
}

/* ✅ Nest Hub Max (1280x800) */
@media (min-width: 1275px) and (max-width: 1285px) and (min-height: 795px) and (max-height: 805px) {
  .tokenomics {
    padding-bottom: 12rem;
  }

  .Tokenom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 3rem !important;
  }

  .token-box,
  .token-details-box {
    width: 90% !important;
    max-width: 880px !important;
    padding: 2rem !important;
  }

  .distribution-label,
  .details-label {
    font-size: 1.8rem;
    width: fit-content;
    margin: 3rem auto 1rem;
    text-align: center;
    display: block;
    padding: 1rem 2.5rem;
  }
}

/* Social section */
.socials-section {
  position: relative;
  background: white;
  background-size: 400% 400%;
  animation: glowBackground 10s ease infinite;
  padding: 4rem 2rem 10rem;
  font-family: 'Comic Neue', cursive, sans-serif;
  color: white;
  overflow: hidden;
  min-height: 50vh; /* Ensures full screen, grows with content */
}

.socials-title {
  max-width: 700px;
  width: 100%;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  text-align: center;
  border: 2px solid black;
  color: black;
  font-size: 5rem;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 7rem;
  box-shadow: 0 0 20px hsl(0, 0%, 0%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.socials-title:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; /* smaller gap, adjust as needed */
  justify-content: center;
  margin-top: 2rem;
  padding-left: 0.5rem;
  max-width: 650px; /* optional: constrain width for neat layout */
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  flex: 0 0 calc(50% - 30px);  /* Smaller gap */
  max-width: 400px;             /* Increased max width */
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid black;
  color: black;
  min-height: 400px;
  text-decoration: none;
}


.social-card:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  cursor: pointer;
}

.social-card h3,
.social-card p,
.social-card strong {
  text-decoration: none;
  color: inherit;
}


.social-card:hover h3, .social-card:hover p {
  color: white;
}

.social-img {
  width: 80px;
  height: 80px;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: lightgray;
  border-radius: 8px;
  object-fit: contain;
}

/* 🔹 Phones (≤768px) */
@media (max-width: 768px) {
  .socials-section {
    padding: 3rem 1rem 6rem;
    min-height: auto;
  }

  .socials-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    padding: 1rem;
  }

  .social-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
    width: 100%;
  }

  .social-card {
    width: 90%;
    min-height: 320px;
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .social-img {
    width: 60px;
    height: 60px;
  }
}

/* 💊 Tablets — center grid and constrain width */
@media (min-width: 600px) and (max-width: 1024px) {
  .social-grid {
    justify-content: center;
    gap: 3rem;
  }

  .social-card {
    width: 280px;
    max-width: 90vw;
  }
}

/* 🧩 Small tablets (600–800px) — stack cards */
@media (max-width: 800px) {
  .social-grid {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    width: 90%;
  }
}

/* 📱 Mid-range devices: iPad Air, Surface, Foldables */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .social-card {
    width: 320px;
    max-width: 90vw;
  }
}

/* 💻 Nest Hub Max / wider short screens */
@media (min-width: 1200px) and (max-width: 1320px) and (max-height: 850px) {
  .social-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .social-card {
    width: 320px !important;
    max-width: 90vw !important;
  }
}

/* mission section */
.mission {
  position: relative;
  background: linear-gradient(-45deg, #000, #222, #838383, #000);
  background-size: 400% 400%;
  animation: glowBackground 10s ease infinite;
  color: #fff;
  padding: 4rem 2rem 10rem;
  min-height: 950px;
  text-align: center;
  overflow: hidden;
  font-family: 'Comic Neue', cursive, sans-serif;
  z-index: 0;
}

.mission-title {
  max-width: 700px;
  width: 100%;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px hsl(0, 0%, 100%);
  text-align: center;
  border: 2px solid black;
  color: black;
  margin: 0 auto 4rem;
  font-size: 4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 150px; /* move down */
  margin-bottom: 5rem; /* or whatever spacing you want */
}

.mission-title:hover {
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.MissionBoxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.mission-box {
  flex: 1 1 250px;
  max-width: 3000px;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 2px solid black;
  color: black;
  min-height: 300px;
  transition: all 0.3s ease;
}

.mission-box:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.mission-box:hover h3,
.mission-box:hover p {
  color: white;
}

/* Wave Top */
.mission-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 0;
}

.mission-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Wave Bottom */
.mission-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  line-height: 0;
  z-index: 1;
}

.mission-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* 🔹 Phones (≤768px) */
@media (max-width: 768px) {
  .mission {
    padding: 3rem 1rem 6rem;
    min-height: auto;
  }

  .mission-title {
    font-size: 2.6rem;
    padding: 1rem;
    margin-top: 80px;
    margin-bottom: 3rem;
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
  }

  .MissionBoxes {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .mission-box {
    width: 90%;
    max-width: 700px;
    padding: 1.5rem;
    font-size: 1rem;
    height: auto;
  }

  /* Individual height control */
  .MissionBoxes .mission-box:nth-child(1) {
    min-height: 600px; /* first box height */
  }

  .MissionBoxes .mission-box:nth-child(2) {
    min-height: 400px; /* second box height */
  }

  .MissionBoxes .mission-box:nth-child(3) {
    min-height: 400px; /* third box height */
  }

  .mission-wave,
  .mission-wave-top {
    height: 100px;
  }

  .mission-wave svg,
  .mission-wave-top svg {
    transform: scaleX(1.5);
    transform-origin: left center;
  }
}

/* 💊 Tablets (600px to 1024px) — constrain layout and adjust box sizes */
@media (min-width: 600px) and (max-width: 1024px) {
  .mission {
    padding: 4rem 2rem 6rem;
    min-height: auto;
  }

  .mission-title {
    font-size: 3rem;
    padding: 1.5rem;
    margin-top: 100px;
    margin-bottom: 3.5rem;
    width: 90%;
    max-width: 800px;
    box-sizing: border-box;
  }

  .MissionBoxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .mission-box {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    font-size: 1.1rem;
    height: auto;
  }

  /* Individual height control for tablets */
  .MissionBoxes .mission-box:nth-child(1) {
    min-height: 600px; /* Adjust as needed */
  }

  .MissionBoxes .mission-box:nth-child(2) {
    min-height: 400px;
  }

  .MissionBoxes .mission-box:nth-child(3) {
    min-height: 400px;
  }

  .mission-wave,
  .mission-wave-top {
    height: 120px;
  }

  .mission-wave svg,
  .mission-wave-top svg {
    transform: scaleX(1.3);
    transform-origin: left center;
  }
}

/* Features Section */
.features {
  position: relative;
  background: white;
  background-size: 400% 400%;
  padding: 4rem 2rem 10rem;
  font-family: 'Comic Neue', cursive, sans-serif;
  color: black;
  overflow: hidden;
  min-height: 800px;
  text-align: center;
}

.features-title {
  max-width: 700px;
  width: 100%;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  text-align: center;
  border: 2px solid black;
  color: black;
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 auto 4rem;
  box-shadow: 0 0 20px hsl(0, 0%, 0%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  margin-top: -2rem;
  margin-bottom: 7rem;
}

.features-title:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Feature Container */
.features-container {
  display: flex;
  flex-direction: column; /* Stack main and list vertically */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Shared Box Style */
.feature-box {
  background: white;
  color: black;
  border: 2px solid black;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Main Feature Block */
.feature-main {
  flex: 2;
  min-width: 300px;
  padding: 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2rem; /* or 1.5rem for larger text */
}

/* Feature List */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-list > .feature-box {
  flex: 1 1 250px;
  max-width: 3000px;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 2px solid black;
  color: black;
  min-height: 300px;
  transition: all 0.3s ease;
}

.feature-list > .feature-box:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.feature-list > .feature-box:hover h3,
.feature-list > .feature-box:hover p {
  color: white;
}

@media (max-width: 768px) {
  .features {
    padding: 2rem 1rem 4rem; /* reduce bottom padding */
    min-height: auto;
    text-align: center;
  }

  .features-title {
    font-size: 2.5rem;
    padding: 1rem;
    margin-top: 0.5rem; /* reduce space above */
    margin-bottom: 2rem; /* reduce space below */
    max-width: 90%;
    box-sizing: border-box;
  }

  .features-container {
    max-width: 100%;
    padding: 0;
    gap: 1rem; /* reduce vertical spacing */
    font-size: 1.6rem;
    align-items: center;
  }

  .feature-main {
    flex: none;
    width: 90%;
    max-width: 600px;
    min-height: auto;
    font-size: 1.6rem;
    padding: 1rem; /* reduce internal padding */
    margin: 0 auto 1rem auto; /* reduce space below */
    box-sizing: border-box;
  }

  .feature-list {
    flex-direction: column;
    gap: 1.5rem; /* reduce spacing between feature boxes */
    width: 100%;
    margin-top: 1rem; /* reduce space between main and list */
  }

  .feature-list > .feature-box {
    flex: none;
    width: 90%;
    max-width: 600px;
    min-height: auto;
    padding: 1.2rem; /* reduce padding */
    font-size: 1.4rem;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
  }
}



footer {
  position: relative;
  background: linear-gradient(-45deg, #000, #222, #838383, #000);
  background-size: 400% 400%;
  animation: glowBackground 10s ease infinite;
  color: #fff;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 200px;
  z-index: 0;
}

.footer-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 0;
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Left Section: Logo + Name + Copyright */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  padding-left: 20px; /* space from the left edge */
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-text img {
  width: 50px;
  height: auto;
  display: block;
}

.footer-text {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
  padding-left: 62px; /* aligns under the text after the logo */
}

/* Right Section: Links */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 4rem;
  padding-right: 50px; /* space from the right edge */
  text-align: right;
}

.footer-links p {
  margin: 4px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #d3d3d3;
  text-decoration: none;
}

@media (max-width: 768px) {
  footer {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 4rem 1.5rem 6rem;
    min-height: 340px; /* Extended height */
  }

  .footer-left,
  .footer-links {
    flex: 1 1 45%;
    margin-top: 7rem;
  }

  .footer-left {
    align-items: flex-start;
    text-align: left;

    /* ⬅️ Move it more to the left or right */
    margin-left: -30px;  /* Adjust this value to push left block horizontally */
  }

  .footer-logo-text {
    gap: 0.5rem;
  }

  .footer-logo-text img {
    width: 35px;
  }

  .footer-text {
    font-size: 0.95rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
    padding-left: 45px;
    margin-top: 0.5rem;
  }

  .footer-links {
    align-items: flex-end;
    text-align: right;

    /* ➡️ Move it more to the right or left */
    margin-right: -60px; /* Adjust this value to push right block horizontally */
  }

  .footer-links p {
    margin: 3px 0;
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

    .footer-wave-top svg {
    transform: scaleX(6); /* or 2 for more stretch */
    transform-origin: center;
    width: 100%;
    height: 100%;
    display: block;
  }

  .footer-wave-top {
    overflow: hidden;
    width: 100%;
  }

}

@media (max-width: 768px) {
  body,
  .intro,
  .about,
  .intro-text,
  .about-text,
  .about-box,
  .midnight-timer,
  .intro button,
  .footer-text,
  .footer-links,
  .footer-links a,
  .terms-box,
  .disclaimer-box,
  .blog-box,
  .back-link a {
    font-family: 'Comic Neue', sans-serif !important;
  }
}

/* css/termsofuse.css */
.terms-section {
  position: relative;
  padding: 4rem 0 10rem;
  background: #fff; /* Clean white background */
  color: #000;
  min-height: 1200px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.terms-box {
  flex: 1 1 100%;
  max-width: 970px;
  width: 105%;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid black;
  color: black;
  margin-top: 50px;
}

.terms-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.terms-box h1,
.terms-box h2,
.terms-box p,
.terms-box ul,
.terms-box li {
  transition: color 0.3s ease;
}

.terms-box:hover h1,
.terms-box:hover h2,
.terms-box:hover p,
.terms-box:hover ul,
.terms-box:hover li {
  color: white;
}

.terms-box h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.terms-box h2 {
  font-size: 2rem;
  margin-top: 2rem;
  color: inherit;
}

.terms-box p {
  margin-top: 1rem;
  line-height: 1.8;
}

.terms-box ul {
  padding-left: 2rem;
}

.terms-box ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.back-link {
  align-self: flex-start;
  margin-bottom: 1rem;
  margin-top: -2rem;
  padding-left: 2rem;
}

.back-link a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: #d3d3d3;
  text-decoration: none;
}

/* 🔹 Phones (<= 768px) */
@media (max-width: 768px) {
  .terms-section {
    padding: 2rem 1rem 5rem;
    min-height: auto;
  }

  .terms-box {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  .terms-box h1 {
    font-size: 2.5rem;
  }

  .terms-box h2 {
    font-size: 1.5rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1rem;
  }

  .back-link a {
    font-size: 1rem;
  }
}

/* 🔹 Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .terms-section {
    padding: 3rem 2rem 7rem;
    min-height: auto;
  }

  .terms-box {
    max-width: 90%;
    width: 100%;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 1rem;
  }

  .terms-box h1 {
    font-size: 3rem;
  }

  .terms-box h2 {
    font-size: 1.75rem;
  }

  .back-link {
    padding-left: 1.5rem;
  }

  .back-link a {
    font-size: 1.1rem;
  }
}

/* 🔹 iPad Mini + Medium Devices (600px – 1280px) */
@media (min-width: 600px) and (max-width: 1280px) {
  .terms-box {
    max-width: 95%;
    font-size: 1.05rem;
  }

  .terms-box h1 {
    font-size: 3.5rem;
  }

  .terms-box h2 {
    font-size: 1.85rem;
  }
}

/* 🔹 Phablets & Foldables (360px – 599px) */
@media (min-width: 360px) and (max-width: 599px) {
  .terms-section {
    padding: 2rem 1rem 4rem;
  }

  .terms-box {
    max-width: 100%;
    padding: 1.25rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }

  .terms-box h1 {
    font-size: 2.25rem;
  }

  .terms-box h2 {
    font-size: 1.4rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1.5rem;
  }

  .back-link a {
    font-size: 0.95rem;
  }
}

/* ✅ Nest Hub Max (1280x800) only */
@media (min-width: 1275px) and (max-width: 1285px) and (min-height: 795px) and (max-height: 805px) {
  .terms-box {
    font-size: 1.05rem;
  }
}

/* css/disclaimer.css */
.disclaimer-section {
  position: relative;
  padding: 4rem 0 10rem;
  background: #fff;
  color: #000;
  min-height: 1200px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer-box {
  flex: 1 1 100%;
  max-width: 970px;
  width: 105%;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid black;
  color: black;
  margin-top: 50px;
}

.disclaimer-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.disclaimer-box h1,
.disclaimer-box h2,
.disclaimer-box p,
.disclaimer-box ul,
.disclaimer-box li {
  transition: color 0.3s ease;
}

.disclaimer-box:hover h1,
.disclaimer-box:hover h2,
.disclaimer-box:hover p,
.disclaimer-box:hover ul,
.disclaimer-box:hover li {
  color: white;
}

.disclaimer-box h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-box h2 {
  font-size: 2rem;
  margin-top: 2rem;
  color: inherit;
}

.disclaimer-box p {
  margin-top: 1rem;
  line-height: 1.8;
}

.disclaimer-box ul {
  padding-left: 2rem;
}

.disclaimer-box ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.back-link {
  align-self: flex-start;
  margin-bottom: 1rem;
  margin-top: -2rem;
  padding-left: 2rem;
}

.back-link a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: #d3d3d3;
  text-decoration: none;
}

/* Responsive Styles */

/* Phones (<= 768px) */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 1rem 5rem;
    min-height: auto;
  }

  .disclaimer-box {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  .disclaimer-box h1 {
    font-size: 2.5rem;
  }

  .disclaimer-box h2 {
    font-size: 1.5rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1rem;
  }

  .back-link a {
    font-size: 1rem;
  }
}

/* Tablets (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .disclaimer-section {
    padding: 3rem 2rem 7rem;
    min-height: auto;
  }

  .disclaimer-box {
    max-width: 90%;
    width: 100%;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 1rem;
  }

  .disclaimer-box h1 {
    font-size: 3rem;
  }

  .disclaimer-box h2 {
    font-size: 1.75rem;
  }

  .back-link {
    padding-left: 1.5rem;
  }

  .back-link a {
    font-size: 1.1rem;
  }
}

/* iPad Mini + Medium Devices (600px – 1280px) */
@media (min-width: 600px) and (max-width: 1280px) {
  .disclaimer-box {
    max-width: 95%;
    font-size: 1.05rem;
  }

  .disclaimer-box h1 {
    font-size: 3.5rem;
  }

  .disclaimer-box h2 {
    font-size: 1.85rem;
  }
}

/* Phablets & Foldables (360px – 599px) */
@media (min-width: 360px) and (max-width: 599px) {
  .disclaimer-section {
    padding: 2rem 1rem 4rem;
  }

  .disclaimer-box {
    max-width: 100%;
    padding: 1.25rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }

  .disclaimer-box h1 {
    font-size: 2.25rem;
  }

  .disclaimer-box h2 {
    font-size: 1.4rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1.5rem;
  }

  .back-link a {
    font-size: 0.95rem;
  }
}

/* Nest Hub Max (1280x800) only */
@media (min-width: 1275px) and (max-width: 1285px) and (min-height: 795px) and (max-height: 805px) {
  .disclaimer-box {
    font-size: 1.05rem;
  }
}

/* css/blog.css */
.blog-section {
  position: relative;
  padding: 4rem 0 10rem;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 1000px;
}

.blog-box {
  flex: 1 1 100%;
  max-width: 970px;
  width: 105%; /* restored original width */
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 2px solid black;
  color: black;
  margin-top: 50px;
  text-align: center;
}

.blog-box:hover {
  transform: translateY(-5px);
  background-color: black;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.blog-box h1,
.blog-box p {
  transition: color 0.3s ease;
}

.blog-box:hover h1,
.blog-box:hover p {
  color: white;
}

.blog-box h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.intro-text {
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.15rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.no-posts {
  font-weight: bold;
  margin-top: 2rem;
  color: #444;
  text-align: center;
  font-size: 1.15rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Revert back link to left-aligned */
.back-link {
  align-self: flex-start; /* Restored */
  margin-bottom: 1rem;
  margin-top: -2rem;
  padding-left: 2rem;
}

.back-link a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: #d3d3d3;
}

/* ---------- Responsive Design ---------- */

@media (max-width: 768px) {
  .blog-section {
    padding: 2rem 1rem 5rem;
    min-height: auto;
  }

  .blog-box {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }

  .blog-box h1 {
    font-size: 2.5rem;
  }

  .intro-text,
  .no-posts {
    font-size: 1rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1rem;
  }

  .back-link a {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-section {
    padding: 3rem 2rem 7rem;
    min-height: auto;
  }

  .blog-box {
    max-width: 90%;
    width: 100%;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 1rem;
  }

  .blog-box h1 {
    font-size: 3rem;
  }

  .intro-text,
  .no-posts {
    font-size: 1.05rem;
  }

  .back-link {
    padding-left: 1.5rem;
  }

  .back-link a {
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) and (max-width: 1280px) {
  .blog-box {
    max-width: 95%;
    font-size: 1.05rem;
  }

  .blog-box h1 {
    font-size: 3.5rem;
  }

  .intro-text,
  .no-posts {
    font-size: 1.1rem;
  }
}

@media (min-width: 360px) and (max-width: 599px) {
  .blog-section {
    padding: 2rem 1rem 4rem;
  }

  .blog-box {
    max-width: 100%;
    padding: 1.25rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }

  .blog-box h1 {
    font-size: 2.25rem;
  }

  .intro-text,
  .no-posts {
    font-size: 0.95rem;
  }

  .back-link {
    padding-left: 1rem;
    margin-top: -1.5rem;
  }

  .back-link a {
    font-size: 0.95rem;
  }
}


html, body {

  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  cursor: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'>\
      <rect x='1' y='1' width='22' height='22' fill='white' stroke='black' stroke-width='2'/>\
    </svg>") 12 12, auto;
}

/* -------- Tablet (up to 1024px) -------- */
@media (max-width: 1024px) {
  .features-container,
  .MissionBoxes {
    flex-direction: column;
    align-items: center;
  }

  .feature-box,
  .mission-box {
    width: 90%;
    max-width: 600px;
  }

  .features-title,
  .mission-title {
    font-size: 2.5rem;
  }
}

/* -------- Mobile (up to 768px) -------- */
@media (max-width: 768px) {
  .features-title,
  .mission-title {
    font-size: 2rem;
    padding: 1rem;
  }

  .feature-box,
  .mission-box {
    padding: 1rem;
    font-size: 1rem;
  }

  .social-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .social-card {
    width: 90%;
    max-width: 400px;
  }

  h1, h2, h3, p {
    text-align: center;
  }
}

