:root {
  --primary-color: #7ac143;
  --secondary-color: #0d703a;
  --section-color: #236eca;
  --trust-bg-color: #e0f7fa;
  --main-color: #0eb46a;
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #112432;
  color: #333;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.logo-title {
  color: #fff;
  font-size: 25px;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  font-family: verdana, sans-serif;
}

.logo {
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.header-stats-item {
  background: #8eff70;
}

.main-banner {
  width: 100%;
}

.main-banner img {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding:10px;
  background: #1a1a1c;
  margin-bottom: 10px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 50%;
  background: #75EEA5;
  padding: 7px 3px;
  border-radius: 15px;
}

.stats-item p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #112432;
  font-family: Arial, sans-serif;
}

.stats-item span {
  font-size: 25px;
  font-weight: 700;
  color: #112432;
  font-family: Arial, sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.stats#userInfo .item span {
  color: indianred;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
}

.about h2 {
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  color: #75EEA5;
}

.about h3 {
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.how {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--secondary-color);
  background-size: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.how h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.how p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.how p strong {
  color: #ffd700;
}

.survey {
  width: 100%;
  display: flex;
  justify-content: center;
}

.survey h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.survey p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.survey input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

#startQuiz {
  color: #112432;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 22px;
  font-weight: 600;
  line-height: 26px;
  padding: 20px 25px;
  background: #75EEA5;
  margin-top: 20px;
}

.survey button:hover {
  background-color: var(--secondary-color);
}

.survey button img {
  width: 20px;
}

.quiz {
  padding: 20px;
}

.question-page {
  display: none;
}

.question-text {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.question-text b {
  color: var(--main-color);
}

.description {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.options button {
  padding: 20px 20px;
  background-color: #75EEA5;
  color: #112432;
  border: none;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

.loader {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.loader p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.progress-wrapper {
  width: 100%;
  max-width: 400px;
  background: #ddd;
  border-radius: 30px;
  overflow: hidden;
  height: 30px;
  position: relative;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #0d703a, #7ac143);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease-in-out;
}

.progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #112432;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.result {
  padding: 20px;
}

.result .cash {
  width: 100px;
}

.result .desc {
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}

b {
  color: var(--main-color);
}

.result h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
}

.result .subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.result .customers-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
}

.offer-video {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 7px;
}

.video-carousel {
  width: 100%;
  position: relative;
  margin: 15px 0;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.carousel-slide {
  width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide video {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.carousel-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 5px;
}

.carousel-prev, .carousel-next {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #75EEA5;
}

@media (max-width: 768px) {
  .carousel-prev, .carousel-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

.result .feedback-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}

.result .feedback-container .feedback-item {
  padding: 20px;
  background: #07462b;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.result .feedback-container .feedback-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.result .feedback-container .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.result .feedback-container .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.result .feedback-container .user-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.result .feedback-container .timestamp {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.result .feedback-container .text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  text-align: left;
}

.feedback-container video {
  width: 100%;
}

.offer-btn {
  padding: 12px 24px;
  background-color: #1c93e3;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 19px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.offer-btn img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-container video {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.video-container .play-button {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('./assets/play-button.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.question-counter {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.button-animation {
  background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%) !important;
  background-repeat: no-repeat !important;
  animation: bg-move linear 5s infinite !important;
}

@keyframes bg-move {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.framed-video {
  width: 100%;
  margin: 10px 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #0b2a1c, #0f5a3a);
  border: 2px solid rgba(117, 238, 165, 0.3);
}

.framed-video video {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

@media (min-width: 600px) {
  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feed-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.lightbox-close:active { transform: scale(0.98); }

@media (max-width: 360px) {
  .logo-title { font-size: 22px; }
  .offer-btn { font-size: 17px; padding: 12px 18px; }
  .video-container .play-button { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .video-container .play-button { width: 56px; height: 56px; }
}
