@import url(Common\styles.css);

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero {
  height: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.main-testimonial-text {
  color: var(--sec-accent-color);
}

.fade-overlay {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  top: 400px;
  z-index: 10;
  background: linear-gradient(
      to bottom,
      rgba(17, 17, 17, 0.0) 0%,
      rgba(17, 17, 17, 1.0) 100%
  );
}

#updates-section,
.updates-dark {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px 0;
  box-sizing: border-box;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.updates-viewport {
  width: 100%;
  max-width: 100%;
  overflow:hidden;
  margin: 0;
  padding: 0 32px;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.nav-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--cl-color);
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  outline-offset: 3px;
  pointer-events: auto;
}

.nav-btn:hover {
  transform: translateY(-52%);
}

.nav-btn.left { left: 16px; }
.nav-btn.right { right: 16px; }

.updates-mask {
  overflow: hidden;
  flex: 1;
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.updates-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 600ms cubic-bezier(.22,.9,.23,1);
  will-change: transform;
  padding: 12px 0 50px;
  box-sizing: border-box;
}

.update-card {
  flex: 0 0 360px;
  height: 440px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  transition: transform 300ms, box-shadow 300ms;
}

.update-card .thumb {
  height: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background-color: rgba(0,0,0,0.06);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.update-card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.update-card .meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-color);
  flex: 1;
}

.update-card h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-color);
}

.update-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #bfc9cc;
  flex: 1;
}

.update-card time {
  font-size: 12px;
  color: #99a3a6;
}

.importance-1 {
  border-left: 6px solid var(--tert-accent-color);
}

.importance-2 {
  border-left: 6px solid var(--sec-accent-color);
}

.importance-3 {
  border-left: 6px solid var(--accent-color);
}

.update-card.center {
  transform: scale(1.015) translateY(-8px);
  z-index: 60;
  box-shadow: 0 28px 70px rgba(2,6,10,0.85);
}

.update-card:focus {
  box-shadow: 0 28px 70px rgba(2,6,10,0.9);
  transform: translateY(-6px);
}

@media (max-width: 1200px) {
  .update-card {
    flex: 0 0 calc((100vw - (3 * 20px) - 32px - 32px) / 3);
    height: 420px;
  }
}

@media (max-width: 900px) {
  .update-card {
    flex: 0 0 320px;
    height: 400px;
  }
}

@media (max-width: 700px) {
  .update-card {
    flex: 0 0 90vw;
    height: 400px;
  }
  .updates-viewport {
    padding: 0 12px;
  }
  .nav-btn { display: none; }
}

.side-shadow,
.left-shadow,
.right-shadow {
  display: none !important;
}

.ascii img {
  max-width: 100%;
  display: block;
}
.update-card,
.update-card * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.info-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}
.about-us-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}

.info-section {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: -80px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(60,140,255,0.12), transparent 60%);
  pointer-events: none;
}

.info-section-container {
  text-align: left;
}

.info-section h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.info-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-color);
  max-width: 520px;
}

.about-us-image {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.6),
    inset 0 0 0 1px var(--text-bg);
  filter: contrast(1.05) brightness(0.95);
}

.awards-section {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 80px 0 60px;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(53,208,227,0.22),
      rgba(53,208,227,0.08) 35%,
      rgba(17,17,17,0.9) 65%,
      var(--bg-color) 100%
    );
  overflow: hidden;
}

.awards-section-div {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.awards {
  width: min(880px, 95%);
  margin-bottom: 72px;
  filter:
    brightness(0.95)
    contrast(1.15);
  box-shadow:
    0 100px 200px rgba(0,0,0,0.95);
  mask-image: linear-gradient(
    to bottom,
    black 65%,
    rgba(0,0,0,0.7) 80%,
    transparent 100%
  );
}

.awards-section h2 {
  font-size: clamp(52px, 7vw, 84px);
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent-color);
  text-shadow:
    0 0 40px var(--accent-color);
}

.awards-section p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 520px;
  opacity: 0.9;
}

.awards-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0),
    var(--bg-color)
  );
  pointer-events: none;
  z-index: 1;
}


.awards-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0),
    var(--bg-color)
  );
  pointer-events: none;
}

/* Reviews section */
.reviews-section {
  background-color: var(--bg-color);
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.reviews-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  width: 100%;
  color: var(--sec-accent-color);
}

.reviews-main-content {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  text-align: center;
}

.lazy-scrolling-container {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 0;
}

.carousel {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 20px;
  margin-top: 2%;
}

.review-card {
  flex: 0 0 auto;
  width: 400px;
  background-color: var(--bg-color);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review-card .stars {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--text-color);
}

.review-card p {
  font-style: italic;
  margin-bottom: 20px;
  min-height: 60px;
  color: var(--text-color);
}

.review-image-placeholder {
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  border: 2px dashed var(--sec-bg);
  color: var(--sec-bg);
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
}

/* Row-specific styling */
.lazy-scrolling-container.left .carousel .review-card {
  border: 2px solid var(--sec-accent-color);
}

#countdown,
.time-box,
.time-box span,
.time-box small,
.live-container {
  font-family: "Menlo", "Consolas", "Courier New", monospace;
}

.time-box span {
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}



#countdown-section {
  width: 100%;
  padding: 80px 20px;
  background: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
}

.countdown-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--sec-accent-color);
  letter-spacing: 1px;
}

.countdown-title .begins {
  color: var(--tert-accent-color);
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.time-box {
  min-width: 110px;
  padding: 22px 16px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.time-box span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--cl-color);
}

.time-box small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.time-box.seconds span {
  color: var(--sec-accent-color);
}

@media (max-width: 700px) {
  .countdown-title {
    font-size: 28px;
  }

  .time-box {
    min-width: 90px;
}

  .time-box span {
    font-size: 32px;
  }
}

@keyframes flip {
  0%   { transform: rotateX(0); }
  50%  { transform: rotateX(90deg); }
  100% { transform: rotateX(0); }
}

.time-box span {
  perspective: 600px;
}

.time-box span.flip {
  animation: flip 0.15s ease;
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 14px var(--accent-color),
      0 0 32px var(--accent-color);
  }
  50% {
    box-shadow:
      0 0 16px var(--accent-color),
      0 0 40px var(--accent-color),
      0 0 70px var(--sec-accent-color);
  }
  100% {
  box-shadow:
      0 0 14px var(--accent-color),
      0 0 32px var(--accent-color);
  }
}

.final-glow .time-box {
  animation: pulseGlow 4.5s ease-in-out infinite;
}


.final-glow .time-box {
  animation: pulseGlow 2s infinite ease-in-out;
}

.live-container {
  padding: 100px 20px;
  text-align: center;
  animation: none;
  box-shadow: none;
  background: transparent;
}

.live-container h1 {
  font-size: 52px;
  color: var(--sec-accent-color);
  margin-bottom: 20px;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.25);
  -webkit-text-fill-color: var(--sec-accent-color);
  text-shadow:
    0 0 2px var(--sec-bg),
    0 0 10px var(--accent-color);
  display: block;
  padding: 6px 0;
  margin-bottom: 10px;
}

.live-container p {
  font-size: 20px;
  color: var(--text-color);
  letter-spacing: 1px;
  -webkit-text-stroke: 0.6px rgba(0,0,0,0.15);
  -webkit-text-fill-color: var(--text-color);
  text-shadow: 0 0 6px rgba(0,0,0,0.10);
  display: block;
  margin: 0 auto;
  padding: 4px 0;
}

@keyframes yellowAccentPulse {
  0% {
    box-shadow:
      0 0 14px var(--accent-color),
      0 0 32px var(--accent-color);
  }
  50% {
    box-shadow:
      0 0 16px var(--accent-color),
      0 0 40px var(--accent-color),
      0 0 70px var(--sec-accent-color);
  }
  100% {
    box-shadow:
      0 0 14px var(--accent-color),
      0 0 32px var(--accent-color);
}
}

.secondary-heading-text {
  color: var(--sec-accent-color) !important;
  width: 100%;
  text-align: center;
  margin-bottom: 5%;
  font-size: 2.5em;
}


/* Thinner Screens */

@media (max-width: 768px) {
  .info-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
  }

  .info-section-container {
    text-align: center;
  }

  .info-section h2 {
    font-size: 32px;
  }

  .info-section p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .about-us-image {
    max-width: 100%;
    order: -1;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 24px 16px;
  }

  .info .title {
    font-size: 16px;
  }

  .info .field {
    font-size: 13px;
    line-height: 1.4;
  }

  .ascii img {
    max-width: 220px;
    margin: 0 auto;
  }
  
}


.prizes-title {
  width: 100%;
  text-align: center;
}

.prize-categories-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-box {
    text-align: center;
    border: 1px solid var(--accent-color);
    padding: 30px;
    border-radius: 30px;
    background: rgba(0,0,0,0.3);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex: 1;
    max-width: 450px;
}

.category-box h3 {
    color: var(--sec-accent-color);
    margin: 0 0 30px 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.podium-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px 10px;
    border-radius: 12px 12px 0 0;
    min-width: 90px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease;
}

.podium-item:hover {
    transform: translateY(-5px);
}

.rank-label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #fff;
    opacity: 0.95;
    font-weight: 600;
}

.prize-amount {
    font-weight: bold;
    font-size: 1.15rem;
}

/* Gold */
.podium-item.gold {
    order: 2;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.35), rgba(255, 255, 255, 0.05));
    border-bottom: 6px solid #FFD700;
    width: 38%;
    z-index: 2;
}
.podium-item.gold .prize-amount { 
    color: #FFD700; 
    font-size: 1.4rem; 
}

.podium-item.silver {
    order: 1;
    height: 110px;
    background: linear-gradient(to top, rgba(192, 192, 192, 0.3), rgba(255, 255, 255, 0.05));
    border-bottom: 6px solid #C0C0C0;
    width: 31%;
    z-index: 1;
}
.podium-item.silver .prize-amount { color: #C0C0C0; }

.podium-item.bronze {
    order: 3;
    height: 100px;
    background: linear-gradient(to top, rgba(205, 127, 50, 0.3), rgba(255, 255, 255, 0.05));
    border-bottom: 6px solid #CD7F32;
    width: 31%;
    z-index: 1;
}
.podium-item.bronze .prize-amount { color: #CD7F32; }

@media (max-width: 768px) {
    .prize-categories-container {
        flex-direction: column;
        align-items: center;
    }
    .category-box {
        width: 90%;
        max-width: none;
    }
}
