*, *::before, *::after {
  box-sizing: border-box;
}

main.home .top {
  position: relative;
  background-color: var(--color-white-70);
  min-height: 55rem;
  width: 100%;
  overflow: hidden;
}

main.home .top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/general/homeImages/heroBackgroundImage.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

main.home .top .mainMessage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  color: var(--color-purple-100);
}

main.home .top .mainMessage h3 {
  display: inline-block;
  margin: 0 auto;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  background-color: transparent;
  padding: 0.5rem 1rem;
  text-align: center;
  letter-spacing: 0;
  color: var(--color-accent-50);

}

main.home .top .mainMessage h3 svg {
  vertical-align: middle;
  color: var(--color-accent-50);
}

main.home .top .mainMessage h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue-50);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

main.home .top .mainMessage h1 .mainMessageHighlight {
  color: var(--color-purple-60);
  background: linear-gradient(135deg, var(--color-purple-60), var(--color-purple-40));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

main.home .mainMessage p {
  color: var(--color-blue-100);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
}

.heroContent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.LeftHero {
  flex: 1 1 50%;
  min-width: 280px;
}

.rightHero {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.rightHero img {
  max-width: 100%;
  height: auto;
}

.heroButtons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 500px;

}

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.phoneFrame {
  width: 260px;
  height: 520px;
  border-radius: 30px;
  background: #000;
  padding: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.phoneFrame img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.phoneFrameWrapper {
  position: relative;
  display: inline-block;
}

.sparkleHighlights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: navy;
  background: white;
  border-radius: 10px;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.sparkle i {
  font-size: 28px;
  color: navy;
}

.sparkle-sports   { top: 0; left: 2%; }
.sparkle-fashion  { top: 25%; right: -20%; }
.sparkle-concerts { bottom: 20%; left: 10%; }
.sparkle-nature   { bottom: 10%; right: -20%; }
.sparkle-travel   { top: 50%; left: -5%; }
.sparkle-news     { bottom: 30%; right: 5%; }
.sparkle-showbiz  { top: 30%; right: 30%; }

@keyframes float {
  0%   { transform: translateY(0px); opacity: 0.8; }
  50%  { transform: translateY(-10px); opacity: 1; }
  100% { transform: translateY(0px); opacity: 0.8; }
}

.videoWrapper .videoShowcase h1 {
  font-size: 3rem;
  text-align: center;
  margin: 0;
  padding: 1rem;
  flex: 0 0 auto;
  color: var(--color-accent-50);
}

.videoWrapper .videoShowcase p {
  text-align: center;
  margin: 0;
  padding: 1rem;
  flex: 0 0 auto;
  color: white;
}

.videoContainer {
  position: relative;
  width: 80%;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.videoContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.videoShowcase h2 {
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
  padding: 1rem;
  flex: 0 0 auto;
  color: var(--color-blue-50);
}

main > .leadingStatementWrapper {
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(12, 198, 192, .2);
  text-align: center;
}

.leadingStatementContent {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.leadingStatementContent h1 {
  color: var(--color-accent-50);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.leadingStatementContent p {
  font-size: 1.2rem;
  color: var(--color-blue-100);
  margin: 0;
}

main > .statisticsWrapper {
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(12, 198, 192, .2);
  text-align: center;
}

main > .statisticsWrapper section header h1 {
  margin: 0 auto;
  color: var(--color-accent-50);
}

main > .statisticsWrapper .statisticsContent {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

main > .statisticsWrapper .statisticsContent article {
  flex: 1 1 calc(50% - 2rem);
  max-width: calc(50% - 2rem);
  box-sizing: border-box;
}

main > .statisticsWrapper section article i {
  font-size: 3rem;
  color: var(--color-cyan-teal);
}

main > .statisticsWrapper section article h2 {
  color: var(--color-cyan-teal);
}

main > .statisticsWrapper section article h3 {
  color: var(--color-blue-100);
}

main > .statisticsWrapper section article {
  background-color: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  margin: 2rem auto;
  width: 100%;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

main > .statisticsWrapper section article:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

main > .statisticsWrapper section article .button-primary {
  min-width: 300px;
}

main > .statisticsWrapper section article .button-secondary i {
  color: var(--color-blue-100);
}

main > .statisticsWrapper section article .button-secondary:hover i {
  color: var(--color-accent-50);
}

main > .gettingStartedWrapper {
  width: 100%;
  background-color: white;
  padding: 3rem 1rem;
}

main > .gettingStartedWrapper .gettingStartedContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 16px;
  background-color: rgba(12, 198, 192, .1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

main > .gettingStartedWrapper .gettingStartedContent:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

main > .gettingStartedWrapper .gettingStartedContent h1 {
  color: var(--color-accent-50);
  font-size: 2rem;
  margin-bottom: 1rem;
}

main > .gettingStartedWrapper .gettingStartedContent h2 {
  color: var(--color-blue-100);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 1rem;
}

main .buttonGroup {
  margin: 2rem 0;
}

@media (max-width: 975px) {
  .heroContent {
    flex-direction: column;
    align-items: center;
  }

  .LeftHero,
  .rightHero {
    width: 100%;
    text-align: center;
  }

  .heroButtons {
    min-width: auto;
    width: 100%;
  }

  .videoShowcase video {
    height: auto;
  }

  main > .statisticsWrapper .statisticsContent {
    flex-direction: column;
    padding: 1rem 1rem;
    max-width: 100%;
  }

  main > .statisticsWrapper .statisticsContent article {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin: .5rem 0;
    padding: 1rem 1rem;
    box-sizing: border-box;
  }
}
