/* NEW ANKIETA STYLES - Following existing design system */

/* Import existing design system variables */
:root {
  --primary-color: #4facfe;
  --secondary-color: #00f2fe;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-bg: #f8f9fa;
  --dark-text: #343a40;
  --border-color: #dee2e6;

  /* Existing website colors */
  --white: white;
  --black: #121212;
  --blue: #bfe9f8;
  --primary-container: #aff2c4;

  /* Gradients */
  --bg-site: linear-gradient(99.66deg,
      #57ff8c -0.92%,
      #bb91ff 50%,
      #1bc3ff 100.92%);
  --text-bg: linear-gradient(94.75deg, #aff2c4 0%, #eaddff 50%, #bfe9f8 100%);
  --gradient-btn: linear-gradient(94.75deg,
      #aff2c4 0%,
      #eaddff 50%,
      #bfe9f8 100%);
  --activeColor: linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%);
  --bullet: linear-gradient(97.81deg,
      #aff2c4 -44.21%,
      #eaddff 61.43%,
      #bfe9f8 167.06%);
}

/* New Survey Container */
.new-survey {
  position: relative;
  background: linear-gradient(35deg, rgba(27, 195, 255, 0.2) 0%, #121212 100%);
  overflow: hidden;
  min-height: auto;
  color: var(--white);
  font-family: "Lato", sans-serif;

  &.text {
    margin: 0;
    padding: 4.1666666667vw auto 10.4166666667vw;
    max-width: 100vw;

    #new-start-screen,
    #new-test-screen,
    #new-results-screen {
      max-width: 70vw;
      margin: 0 auto;
    }
  }
}

/* New Survey Start Button - Desktop and Mobile */
.new-survey .start-screen .btn {
  padding: 1.3vw 3.9vw;
  /* 30% larger than general button: 1vw * 1.3 = 1.3vw, 3vw * 1.3 = 3.9vw */
  font-size: 1vw;
  /* 30% larger: 0.9vw * 1.3 = 1.17vw */

  border-radius: 10px;
  min-height: 3.12vw;
  /* 30% larger: 2.4vw * 1.3 = 3.12vw */
  margin-top: 2vw;
  /* Increased margin to ensure button is visible */
  margin-bottom: 2vw;
  /* Add bottom margin for better spacing */
  width: 100%;
  max-width: 26vw;
  /* 30% larger: 20vw * 1.3 = 26vw */
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(#073647, #093343) padding-box, linear-gradient(99.66deg, #f62941 30.42%, #1bc3ff 95.04%) border-box;
}

#new-survey-btn {
  font-weight: 400;
}

/* Test Screen */
#new-test-screen {
  display: none;
  min-height: 50vh;
  background: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#new-test-screen.show,
#new-test-screen:not(.hidden) {
  display: flex !important;
}

/* Test Layout - Video and Questions */
.test-layout {
  display: flex;
  gap: 2vw;
  min-height: auto;
  padding: 1vw;
  max-width: 100vw;
  overflow-x: visible;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;

  >.video-section {
    position: relative;

    .video-container {
      position: absolute;
      width: 141%;
      max-width: 141%;
      z-index: 0;
      border-radius: 10px;
      overflow: hidden;

      @media screen and (max-width: 768px) {
        width: 100%;
        max-width: 100%;
      }
    }
  }

  .questions-section {
    z-index: 1;
  }
}

/* Video Section (40% - larger) */
.video-section {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {

  .results-screen .results-video-desktop .video-container,
  .results-screen .history-video-section .video-container {
    overflow: visible;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;

  border-radius: 10px;
  overflow: hidden;
}

.instruction-video {
  width: 100%;
  height: 100%;
  display: block;

  border-radius: 10px;
  object-fit: cover;
  /* Fill container while maintaining aspect ratio */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;

  border-radius: 10px;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 4vw;
  height: 4vw;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.play-btn:hover {
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(175, 242, 196, 0.3);

  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.play-btn:active::after {
  width: 200px;
  height: 200px;
}

.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Questions Section (60% - adjusted for larger video) */
.questions-section {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding: 1.5vw;
  overflow-x: hidden;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  opacity: 1;
}

.video-modal-content {
  position: relative;
  background-color: var(--black);
  margin: 5% auto;
  padding: 2vw;

  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.video-modal.show .video-modal-content {
  opacity: 1;
  transform: translateY(0);
}

.video-modal-body {
  text-align: center;
}

.video-modal-body h3 {
  color: var(--white);
  font-size: 2vw;
  margin-bottom: 2vw;
  font-weight: 600;
}

.video-modal-container {
  position: relative;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
  background: var(--black);
}

.modal-video {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 10px;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.3s ease;

  border-radius: 10px;
}

.video-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-play-btn {
  width: 4vw;
  height: 4vw;
  background: transparent;
  border: none;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.modal-play-btn:hover {
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.modal-play-btn img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.video-close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.7);

  border-radius: 10px;
  padding: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Results Screen */
#new-results-screen {
  display: none;
}

/* Support Section - Redesigned */
.support-card {
  margin: 3vw 0;
  padding: 2.5vw;


  border-radius: 10px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2vw;
  margin-top: 2vw;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5vw;
  padding: 2vw;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}






/* Support Icons */
.support-icon {
  flex-shrink: 0;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05));

  border-radius: 10px;
  color: var(--white);
}

.support-icon svg {
  width: 1.5vw;
  height: 1.5vw;
}

/* Support Content */
.support-content {
  flex: 1;
  min-width: 0;
}

.support-content h4 {
  font-size: 1.4vw;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1vw 0;
  line-height: 1.3;
}

.phone-number {
  font-size: 2.4vw;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  margin: 0.5vw 0 1vw 0;
  font-family: "Courier New", monospace;
}

.phone-number.emergency {
  color: #ff6b35;
  text-shadow: 0 0 1vw rgba(255, 107, 53, 0.3);
}

/* Support Details */
.support-hours {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}

.hours-label {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hours-text {
  font-size: 1vw;
  color: var(--white);
  font-weight: 500;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}

.availability {
  font-size: 1vw;
  color: #00bfff;
  font-weight: 600;
}

.target {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.8);
}

.support-description {
  font-size: 1vw;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: center;
}

/* Personal Support */
.support-people {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5vw;
  margin: 0.5vw 0 1vw 0;
}

@media screen and (max-width: 768px) {
  .support-people {
    justify-content: flex-start;
  }

  .support-description {
    text-align: start;
  }

  .person {
    width: 100%;
  }
}

.person {
  display: inline-block;
  padding: 0.3vw 0.8vw;
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);

  border-radius: 10px;
  font-size: 0.9vw;
  color: #28a745;
  font-weight: 500;
}

.support-note {
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Modern App-Style Score Section */
.score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
  margin: 2vw 0 3vw 0;
}

.score-card {
  position: relative;
  overflow: hidden;

  p {
    font-size: 1.5vw;
    line-height: 1.5vw;
    font-weight: 900;
    letter-spacing: 2px;
  }
}

.score-header {
  text-align: center;
  margin-bottom: 20px;
}

.score-header h3 {
  font-size: 1.2vw;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 2vw;
  margin: 0 0 0 0;
}

.score-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-circle {
  position: relative;
  width: 16vw;
  height: 16vw;
  flex-shrink: 0;
}

.score-progress {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
}

.score-number {
  font-size: 4.2vw;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  text-shadow: 0 0 2vw rgba(255, 255, 255, 0.6);
  font-family: "Arial", sans-serif;
}

.score-total {
  font-size: 1.8vw;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-family: "Arial", sans-serif;
}

/* Score Video Section */
.score-video {

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 10px;
  padding: 2.5vw;
  backdrop-filter: blur(20px);
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.2);
}

.score-video h4 {
  font-size: 1.6vw;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1.5vw 0;
  text-align: center;
}

.score-video .video-container {
  position: relative;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
}

.score-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Score Video Overlay */
.score-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.score-video .video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.score-video .play-btn {
  width: 4vw;
  height: 4vw;
  background: transparent;
  border: none;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.score-video .play-btn:hover {
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.score-video .play-btn img {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Results Video Section - Desktop */
.results-video-desktop {
  margin: 3vw 0;
  padding: 2vw;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  backdrop-filter: blur(20px);
}

.results-video-desktop h3 {
  font-size: 2vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5vw;
  text-align: center;
}

.results-video-desktop .video-container {
  position: relative;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
}

.results-video-desktop video {
  width: 100%;
  height: auto;
  display: block;
}

/* Gaja Video Section */
.gaja-video-section {
  margin: 3vw 0;
  padding: 2vw;

  border-radius: 10px;
  text-align: center;
}

.gaja-video-section .video-container {
  position: relative;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
}

.gaja-video-section video {
  width: 100%;
  height: auto;
  display: block;
}

/* Gaja Video Overlay */
.gaja-video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  background-image: url('/images/Gaia-instukcja.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
}

.gaja-video-section .video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.gaja-video-section .play-btn {
  width: 4vw;
  height: 4vw;
  background: transparent;
  border: none;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gaja-video-section .play-btn:hover {
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.gaja-video-section .play-btn img {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* History Video Section */
.history-video-section {
  margin: 3vw 0;
  padding: 2vw;


  border-radius: 10px;
}

.history-video-section h2 {
  margin-top: 0.5vw;
  font-size: 3.125vw;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5vw;
  text-align: center;
  white-space: nowrap;
}

.history-video-section .video-container {
  position: relative;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
}

.history-video-section video {
  width: 100%;
  height: auto;
  display: block;
}

/* History Video Overlay */
.history-video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  background-image: url('/images/film-to-ja-gaia.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: auto;
}

.history-video-section .video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.history-video-section .play-btn {
  width: 4vw;
  height: 4vw;
  background: transparent;
  border: none;
  top: 65%;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.history-video-section .play-btn:hover {
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.history-video-section .play-btn img {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Results Video Overlay */
.results-video-desktop .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.results-video-desktop .video-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.results-video-desktop .play-btn {
  width: 4vw;
  height: 4vw;
  background: transparent;
  border: none;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.results-video-desktop .play-btn:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.results-video-desktop .play-btn img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.new-survey .start-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
  transition: opacity 0.2s;
  padding: 6vw 0 0 0;
  text-align: center;
  min-height: 60vh;
  box-sizing: border-box;
}

.new-survey .start-screen h2 {
  font-size: 4.1666666667vw;
  line-height: 4.6875vw;
  font-weight: 275;
  color: var(--white);
  margin-bottom: 1.5vw;
}

.new-survey .start-screen h2 b {
  font-weight: 900;
  background: linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.new-survey .start-screen .survey-intro {
  font-size: 1.25vw;
  line-height: 2.0833333333vw;
  font-weight: 300;
  color: var(--white);
  max-width: 60vw;
  margin-bottom: 3vw;
}

/* Privacy Notice */
.privacy-notice {
  padding: 2vw 3vw;
  margin: 0 auto;
  max-width: 34vw;
  text-align: left;

  border: 1px solid rgba(255, 255, 255, 1);
}

.privacy-notice h3 {
  color: var(--white);
  font-size: 1.4vw;
  font-weight: 900;
  margin-bottom: 1vw;
  line-height: 1.5vw;
  text-align: left;
  letter-spacing: 0.05em;
}

.privacy-points {
  margin-bottom: 1vw;
}

.privacy-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.8vw;

  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff0038, #00bfff);

  border-radius: 10px;
  margin-right: 10px;
  margin-top: 0.2vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.privacy-icon svg {
  width: 16px;
  height: 16px;
  color: white;
  filter: drop-shadow(0 0 0.3vw rgba(255, 255, 255, 0.5));
}

.privacy-point p {
  color: var(--white);
  font-size: 1.1vw;
  line-height: 1.6vw;
  margin: 0;
  font-weight: 400;
}

.medical-disclaimer {

  border-radius: 10px;
  padding: 0.8vw;
  text-align: center;
}

.medical-disclaimer p {
  color: transparent;

  text-transform: uppercase;
  background: linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1vw;
  line-height: 1.6vw;
  margin: 12px 0 0;
  font-weight: 600;

  strong {
    font-weight: 800;
  }
}

/* Progress Container */
.progress-container {

  border-radius: 10px;
}

.progress-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1vw;
  gap: 1vw;
}

.question-counter {
  font-weight: 600;
  color: white;
  font-size: 1.8vw;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  line-height: 2vw;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4180555556vw;
}

.risk-level-indicator {
  width: 100%;
  text-align: center;
}

.risk-level-title {
  font-size: 1vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8vw;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.risk-scale {
  display: flex;
  justify-content: space-between;
  gap: 0.8vw;
  margin-bottom: 0.8vw;
}

.risk-item {
  flex: 1;
  padding: 0.6vw;

  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 11px;
  text-align: center;
  transition: all 0.3s ease;
}

.risk-item.low {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.4);
}

.risk-item.moderate {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.4);
}

.risk-item.high {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
}

.risk-label {
  display: block;
  font-size: 0.9vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3vw;
}

.risk-range {
  display: block;
  font-size: 0.8vw;
  color: var(--white);
  opacity: 0.8;
  line-height: 1vw;
  margin-top: 2px;
}

.current-risk-bar {
  width: 100%;
  text-align: center;
}

.risk-bar-container {
  width: 100%;
  height: 0.9vw;
  background: rgba(255, 255, 255, 0.1);

  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.risk-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #ffc107 50%, #dc3545 100%);

  border-radius: 10px;
  width: 0%;
  transition: width 0.5s ease;
  position: relative;
}

.risk-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(40, 167, 69, 0.8) 0%,
      rgba(255, 193, 7, 0.8) 50%,
      rgba(220, 53, 69, 0.8) 100%);

  border-radius: 10px;
}

.risk-bar-label {
  font-size: 1.1vw;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Areas Container */
.areas-container {
  margin-top: 1vw;
}

.areas-title {
  font-weight: 300;
  margin-bottom: 0.5vw;
  color: var(--white);
  text-align: center;
  font-size: 1.0416666667vw;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0.6vw;
}

.area-badge {
  padding: 0.6vw 1.2vw;

  border-radius: 10px;
  text-align: center;
  font-size: 0.8vw;
  font-weight: 400;
  display: flex;
  text-transform: lowercase;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 147px;
  border: 1px solid transparent;
  background: linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%) border-box;
  color: var(--white);

  font-family: "Lato", sans-serif;
  position: relative;
  overflow: hidden;
}

.area-badge.checked {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--black);
  transform: scale(1.02);
  font-weight: 700;
}

/* Question Container */
.question-container {

  border-radius: 10px;
  padding: 1.8vw 0 0;
  text-align: center;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.question-category {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8333333333vw;
  text-transform: uppercase;
  letter-spacing: 0.0520833333vw;
  margin-bottom: 1vw;
}

.question-text {
  font-size: 1.4vw;
  font-weight: 600;
  padding: 0 20px;
  margin-top: 0.5vw;
  margin-bottom: 1.2vw;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  min-height: 140px;
}

/* Answer Buttons */
.answer-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  margin-bottom: 1.5vw;
}

.answer-btn {
  padding: 0.8vw 1.2vw;
  border: 1px solid transparent;

  border-radius: 10px;
  min-width: 7vw;
  background: linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%) border-box;
  font-size: 1.2vw;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
  text-align: center;
  color: var(--white);
  font-family: "Lato", sans-serif;
  position: relative;
  overflow: hidden;
  max-width: 14vw;
  margin: 0 auto;
  min-height: 2.8vw;
}

.answer-btn:hover:not(.selected) {
  transform: translateY(-0.1vw);
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.2);
}

.answer-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.3);
}

.answer-btn.selected {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--black);
  transform: translateY(-0.05vw);
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

/* Confidence Container */
.confidence-container {
  padding: 1.2vw 0 0;

  border-radius: 10px;
}

.confidence-label {
  font-weight: 700;
  margin-bottom: 1vw;
  color: var(--white);
  font-size: 0.9vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.confidence-slider {
  width: 100%;
  height: 8px;

  border-radius: 10px;
  background: linear-gradient(90deg,
      rgba(255, 0, 56, 0.7) 0%,
      rgba(255, 0, 56, 0.65) 20%,
      rgba(255, 0, 56, 0.6) 40%,
      rgba(0, 191, 255, 0.6) 60%,
      rgba(0, 191, 255, 0.65) 80%,
      rgba(0, 191, 255, 0.7) 100%);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 0.8vw;
  position: relative;
  box-shadow: inset 0 0.1vw 0.3vw rgba(0, 0, 0, 0.2);
}

.confidence-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;

  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.3),
    0 0 0 0.3vw rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.confidence-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0.3vw 1.2vw rgba(0, 0, 0, 0.4),
    0 0 0 0.4vw rgba(255, 255, 255, 0.2);
}

.confidence-slider::-moz-range-thumb {
  width: 2vw;
  height: 2vw;

  border-radius: 10px;
  background: linear-gradient(135deg, #ff0038 0%, #00bfff 100%);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.confidence-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0.3vw 1.2vw rgba(0, 0, 0, 0.4);
}

.question-anwser-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  border: 1px solid #00bfff;

  border-radius: 10px;
  margin-bottom: 0.8vw;
  padding: 0.8vw;
  flex: 1;
}

.confidence-value {
  text-align: center;
  font-weight: 400;
  color: var(--white);
  font-size: 0.7vw;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  padding: 0.4vw;

  border-radius: 10px;
}

/* Navigation */
.navigation {
  display: flex;
  justify-content: space-between;
  gap: 1.5vw;
  align-items: center;
  position: sticky;
  bottom: 2vw;

  border-radius: 10px;
  margin-top: auto;
}

.nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8vw;
}

.nav-text {
  font-size: 1vw;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5vw;

  border-radius: 10px;
}

.nav-text:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.nav-text.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.nav-text.disabled:hover {
  color: var(--white);
  background: transparent;
  transform: none;
}

.nav-item:first-child .nav-text {
  order: 2;
}

.nav-item:first-child .nav-arrow {
  order: 1;
}

.nav-item:last-child .nav-text {
  order: 1;
}

.nav-item:last-child .nav-arrow {
  order: 2;
}

/* Navigation Message */
.nav-message {
  text-align: center;

  border-radius: 10px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  animation: fadeInOut 3s ease-in-out;
}

.nav-message p {
  line-height: 0.7vw;
  color: #f62941;
  font-size: 0.7vw;
  font-weight: 600;
  margin: 0;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.nav-arrow {
  width: 3.5vw;
  height: 3.5vw;
  border: 1px solid transparent;

  border-radius: 100%;
  background: linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(40.66deg, #f62941 30.42%, #1bc3ff 95.04%) border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-arrow:hover:not(:disabled) {
  transform: translateY(-0.1vw);
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.2);
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--black);
}

.nav-arrow:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.3);
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--black);
}

.nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(40.66deg,
      rgba(246, 41, 65, 0.3) 30.42%,
      rgba(27, 195, 255, 0.3) 95.04%) border-box;
}

.nav-arrow img {
  width: 1.75vw;
  height: 1.75vw;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.nav-arrow .arrow-left {
  transform: rotate(90deg);
}

.nav-arrow .arrow-right {
  transform: rotate(-90deg);
}

.nav-arrow:hover:not(:disabled) img {
  filter: brightness(0) invert(0);
}

/* Results Screen */
.results-screen {
  padding: 1.5vw;
  max-width: 90vw;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.results-screen h2 {
  font-size: 2.0vw;
  line-height: 2.0vw;
  margin-bottom: 0.4vw;
  margin-top: 30px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results-subtitle {
  font-size: 1vw;
  line-height: 2vw;
  color: var(--white);
  opacity: 1;
  font-weight: 400;
}

.score-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.score-circle {
  width: 8vw;
  height: 8vw;

  border-radius: 100%;
  background: linear-gradient(135deg, #ff0038 0%, #00bfff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.score-number {
  font-size: 2.5vw;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.score-total {
  font-size: 1vw;
  color: var(--white);
  opacity: 0.8;
  font-weight: 400;
}

.score-info {
  flex: 1;
}

.score-label {
  font-size: 1.8vw;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4vw;
}

.risk-level {
  font-size: 1.1vw;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.4vw;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-description {
  font-size: 1vw;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.3;
}

.recommendations-card,
.support-card {
  backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 1vw;
  margin-bottom: 1vw;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.card-header {
  text-align: center;
  margin-bottom: 0.8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-header h3 {
  font-size: 1.7vw;
  margin-bottom: 0.5vw;
  line-height: 1.9vw;
  color: var(--blue);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.card-header p {
  font-size: 0.9vw;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.2;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8vw;
}

.recommendation-item {
  background: rgba(255, 255, 255, 0.08);

  border-radius: 10px;
  padding: 1vw;
  transition: all 0.3s ease;

  p {
    max-width: 100%;
  }
}



.recommendation-item p {
  font-size: 0.9vw;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8vw;
}

.support-item {
  background: rgba(255, 255, 255, 0.05);

  border-radius: 10px;
  padding: 1vw;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(15px);
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.1);
}







.support-content {
  padding-left: 1vw;
}

.support-content h4 {
  font-size: 1vw;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3vw;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-number {
  font-size: 1.6vw;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.3vw;
}

.support-content p {
  font-size: 0.85vw;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
  opacity: 0.9;
}

.support-note {
  font-size: 0.7vw;
  color: var(--white);
  opacity: 0.7;
  font-style: italic;
  line-height: 1.2;
  margin-top: 0.2vw;
}

.results-actions {
  text-align: center;
  margin-top: 1.5vw;
}

.restart-btn {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

/* Survey Summary Section */
.survey-summary {

  border-radius: 10px;
  padding: 2vw;
  margin-bottom: 2vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-title {
  font-size: 1.6vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1vw;
  text-align: center;
}

.summary-intro {
  font-size: 1.1vw;
  color: var(--white);
  margin-bottom: 1.5vw;
  line-height: 1.4;
  text-align: center;
}

.section-title {
  font-size: 1.3vw;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1vw;
  margin-top: 1.5vw;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.habits ul,
.self-esteem ul,
.remember {
  list-style: none;
  padding: 0;
  margin: 0;
}

.habits li,
.self-esteem li,
.remember li {
  font-size: 1vw;
  color: var(--white);
  margin-bottom: 0.8vw;
  padding-left: 1.5vw;
  position: relative;
  line-height: 1.4;
}

.habits li::before,
.self-esteem li::before,
.remember li::before {
  content: "•";
  color: var(--blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.summary-box {
  background: rgba(255, 255, 255, 0.08);

  border-radius: 10px;
  padding: 1.5vw;
  margin-top: 2vw;
  border-left: 4px solid var(--blue);
}

.box-title {
  font-size: 1.2vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1vw;
}

.summary-box p {
  font-size: 1vw;
  color: var(--white);
  margin-bottom: 1.5vw;
  line-height: 1.4;
}

.help-button {
  background: linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%);
  color: var(--white);
  border: none;
  padding: 1vw 2vw;

  border-radius: 10px;
  font-size: 1vw;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1vw;
  display: block;
  width: 100%;
}

.help-button:hover {
  transform: translateY(-0.1vw);
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.2);
}

.help-links {
  display: none;
  margin-top: 1vw;
}

.help-links.show {
  display: block;
}

.help-links a {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  padding: 0.8vw 1.5vw;

  border-radius: 10px;
  font-size: 0.9vw;
  font-weight: 500;
  margin-bottom: 0.5vw;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.help-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(0.3vw);
}

@media screen and (min-width: 768px) {
  .new-survey .mobile {
    display: none;
  }
}

/* Hidden class */
.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.show {
  display: flex !important;
}

#new-results-screen.show,
#new-results-screen:not(.hidden) {
  display: block !important;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .new-survey {
    min-height: auto;
    padding: 4vw;
  }

  /* Mobile Test Layout - Hide video section, show only questions */
  .test-layout {
    flex-direction: column;
    gap: 0;
    margin: 0;
    min-height: auto;
  }

  /* Mobile Video Section - Hidden on mobile */

  /* Mobile Questions Section - Full width */
  .questions-section {
    flex: 1;
    width: 100%;
    gap: 3vw;
    padding: 0;
  }

  /* Mobile Video Modal Styles - 10x Better Design */
  .video-modal {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
  }

  .modal .modal-content::after {
    content: none;
  }

  #new-test-screen {
    max-width: 100% !important;
  }

  .video-modal-content {
    margin: 2% auto;
    padding: 0;

    border-radius: 10px;
    width: 96%;
    max-height: 92vh;
    background: #000;
    border: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
  }

  .video-modal-body {
    position: relative;
    z-index: 1;
    padding: 4vw;
    text-align: center;
  }

  #new-start-screen {

    h2,
    p {
      text-align: center;
    }
  }

  .video-modal-body h3 {
    font-size: 8vw;
    margin-bottom: 5vw;
    background: linear-gradient(135deg, #ff0038, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 2vw rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
  }

  .video-modal-container {

    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: none;
    border: none;
    margin: 0 auto;
  }

  .modal-play-btn {
    width: 8vw;
    height: 8vw;
    background: transparent;
    border: none;

    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .recommendations-grid {}

  .modal-play-btn:hover {
    filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
  }

  .modal-play-btn img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .video-modal-overlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
  }

  .video-close {
    top: 3vw;
    right: 3vw;
    width: 8vw;
    height: 8vw;
    background: rgba(0, 0, 0, 0.7);

    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .video-close:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 2vw rgba(255, 255, 255, 0.5);
  }

  .video-close:active {
    transform: scale(0.95);
  }

  .video-close svg {
    width: 4vw;
    height: 4vw;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
  }

  .video-close:hover svg {
    filter: brightness(0) invert(0);
  }

  .new-survey .start-screen {
    padding: 4vw 4vw 8vw 4vw;
    max-width: 100%;
    text-align: center;
    justify-content: flex-start;
    min-height: 50vh;
    box-sizing: border-box;
  }

  .new-survey .start-screen h2 {
    font-size: 7vw;
    line-height: 8.4vw;
    margin-bottom: 6vw;
  }

  .new-survey .start-screen .survey-intro {
    font-size: 3.5vw;
    line-height: 5.25vw;
    max-width: 100%;
    margin-bottom: 6vw;
  }

  .privacy-notice {

    border-radius: 0;
    padding: 5vw;
    margin: 6vw 0;
    max-width: 90vw;
    width: 90vw;
  }

  .privacy-notice h3 {
    font-size: 4vw;
    margin-bottom: 4vw;
    text-align: center;
    line-height: 5.25vw;
  }

  .privacy-point {
    margin-bottom: 3vw;
    padding: 2.5vw;

    border-radius: 10px;
  }

  .privacy-icon {
    width: 6vw;
    height: 6vw;

    border-radius: 10px;
    margin-right: 4vw;
    margin-top: 0.5vw;
  }

  .privacy-icon svg {
    width: 3vw;
    height: 3vw;
  }

  .privacy-point p {
    font-size: 3vw;
    line-height: 4.5vw;
  }

  .medical-disclaimer {

    border-radius: 10px;
    padding: 3.5vw;
  }

  .medical-disclaimer p {
    font-size: 3vw;
    line-height: 4.5vw;
    text-align: center;
  }

  .new-survey .start-screen .btn {
    padding: 5.2vw 7.6vw;
    font-size: 4.5vw;
    /* 30% larger: 4.5vw * 1.3 = 5.85vw */

    border-radius: 10px;
    min-height: 18.2vw;
    /* 30% larger: 14vw * 1.3 = 18.2vw */
    margin-top: 8vw;
    /* Increased margin to ensure button is visible */
    margin-bottom: 4vw;
    /* Add bottom margin for better spacing */
    width: 100%;
    max-width: 104vw;
    /* 30% larger: 80vw * 1.3 = 104vw */
    margin-left: auto;
    margin-right: auto;
  }

  /* Results Video Section - Mobile */
  .results-video-desktop {
    margin: 6vw 0;
    padding: 4vw;

    border-radius: 10px;
  }

  .results-video-desktop h3 {
    font-size: 4vw;
    margin-bottom: 3vw;
  }

  .results-video-desktop .video-container {

    border-radius: 10px;
  }

  /* History Video Section - Mobile */
  .history-video-section {
    margin: 6vw 0;
    padding: 4vw;

    border-radius: 10px;

    p {
      text-align: center;
    }
  }

  .history-video-section h3 {
    font-size: 4vw;
    margin-bottom: 3vw;
  }

  .history-video-section .video-container {

    border-radius: 10px;
    box-shadow: none;
    background-color: transparent;
  }

  /* Support Section - Mobile */
  .support-card {
    margin: 6vw 0;
    padding: 5vw;

    border-radius: 10px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-top: 4vw;
  }

  .support-item {
    gap: 3vw;
    padding: 4vw;

    border-radius: 10px;
  }

  .support-icon {
    width: 6vw;
    height: 6vw;
  }

  .support-icon svg {
    width: 3vw;
    height: 3vw;
  }

  .support-content h4 {
    font-size: 4vw;
    margin: 0 0 2.5vw 0;
  }

  .phone-number {
    font-size: 7.5vw;
    margin: 1.5vw 0 2.5vw 0;
    letter-spacing: 0.3vw;
  }

  .hours-label {
    font-size: 2.5vw;
  }

  .hours-text {
    font-size: 2.5vw;
  }

  .availability {
    font-size: 2.8vw;
  }

  .target {
    font-size: 2.5vw;
  }

  .support-description {
    font-size: 2.5vw;
    line-height: 1.6;
    text-align: start;
  }

  .person {
    padding: 0.8vw 1.6vw;

    border-radius: 10px;
    font-size: 2.2vw;
  }

  .support-note {
    font-size: 2.2vw;
  }

  /* Modern Score Section - Mobile */
  .score-section {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 6vw 0;
  }

  .score-card {
    padding: 5vw;

    border-radius: 10px;
  }

  #survey-end {
    max-width: 100%;
  }

  .score-header h3 {
    font-size: 3.5vw;
    line-height: 4vw;
    font-weight: 400;
    margin: 0 0 1vw 0;
  }

  .score-header p {
    font-size: 4vw;
    line-height: 4.5vw;
  }

  .score-display {
    flex-direction: column;
    gap: 3vw;
    text-align: center;
  }

  .score-circle {
    width: 24vw;
    height: 24vw;
    margin: 0 auto;
  }

  .score-content {
    gap: 1vw;
  }

  .score-number {
    font-size: 5.5vw;
  }

  .score-total {
    font-size: 2.4vw;
  }

  .score-video {
    padding: 5vw;

    border-radius: 10px;
  }

  .score-video h4 {
    font-size: 4vw;
    margin: 0 0 3vw 0;
  }

  .score-video .play-btn {
    width: 8vw;
    height: 8vw;
  }

  .score-video .play-btn img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  /* History and Results Video Overlays - Mobile */
  .history-video-section .play-btn {
    width: 8vw;
    height: 8vw;
    top: auto;
    bottom: 50px;
  }

  .history-video-section .play-btn:hover {
    filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
  }

  .history-video-section .play-btn img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  /* Gaja Video Section - Mobile */
  .gaja-video-section .play-btn {
    width: 8vw;
    height: 8vw;
  }

  .gaja-video-section .play-btn:hover {
    filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
  }

  .gaja-video-section .play-btn img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .results-video-desktop .play-btn {
    width: 8vw;
    height: 8vw;
  }

  .results-video-desktop .play-btn:hover {
    filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
  }

  .results-video-desktop .play-btn img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .progress-container {

    border-radius: 10px;
  }

  .progress-info {
    margin-bottom: 4vw;
    gap: 3vw;
  }

  .question-counter {
    font-size: 3.5vw;
    text-align: center;
  }

  .question-counter {
    font-size: 4.5vw;
    line-height: 6vw;
    text-align: center;
    letter-spacing: 1.4vw;
  }

  .risk-level-title {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }

  .risk-scale {
    gap: 1.5vw;
    margin-bottom: 2vw;
  }

  .risk-item {
    padding: 1.5vw;

    border-radius: 10px;
  }

  .risk-label {
    font-size: 2vw;
    margin-bottom: 0.5vw;
  }

  .risk-range {
    font-size: 1.8vw;
  }

  .risk-bar-container {
    height: 3vw;

    border-radius: 10px;
    margin-bottom: 1.5vw;
  }

  .risk-bar-fill {

    border-radius: 10px;
  }

  .risk-bar-fill::after {

    border-radius: 10px;
  }

  .risk-bar-label {
    font-size: 2.5vw;
  }

  .areas-container {
    margin-top: 4vw;
    padding: 3vw;

    border-radius: 10px;
  }

  .areas-title {
    margin-bottom: 3vw;
    font-size: 3vw;
    text-align: center;
    color: var(--white);
    font-weight: 600;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }

  .area-badge {
    padding: 2.5vw 3vw;

    border-radius: 10px;
    font-size: 2.4vw;
    text-align: center;
    min-height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: linear-gradient(var(--black), var(--black)) padding-box,
      linear-gradient(94.75deg, #ff0038 20%, #00bfff 100%) border-box;
  }

  .area-badge.checked {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--black);
    font-weight: 600;
  }

  .question-container {

    border-radius: 10px;
    padding: 1vw;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .question-category {
    font-size: 2.5vw;
    margin-bottom: 3vw;
    text-align: center;
  }

  .question-text {
    font-size: 4.5vw;
    margin-bottom: 1vw;
    text-align: center;
    line-height: 5vw;
    min-height: 60px;
  }

  .answer-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
    margin-bottom: 5vw;
  }

  .answer-btn {
    padding: 3.5vw 4vw;

    border-radius: 10px;
    font-size: 3.5vw;
    max-width: 100%;
    min-height: 10vw;
    text-align: center;
    transition: all 0.2s ease;
    margin-top: 19px;
    min-width: 90px;
  }

  .answer-btn:hover:not(.selected) {
    transform: translateY(-0.2vw);
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
  }

  .answer-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.3);
  }

  .answer-btn.selected {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--black);
    transform: translateY(-0.1vw);
    box-shadow: 0 0.3vw 1.2vw rgba(0, 0, 0, 0.25);
    font-weight: 700;
  }

  .question-anwser-container {
    padding: 3vw;

    border-radius: 10px;
    gap: 2vw;
    min-height: 60px;
    margin-bottom: 2vw;
    flex: 1;
  }

  .confidence-container {
    margin-bottom: 1vw;
    padding: 2vw;

    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .confidence-label {
    margin-bottom: 3vw;
    font-size: 3.5vw;
    text-align: center;
  }

  .confidence-slider {
    height: 2.5vw;

    border-radius: 10px;
    margin-bottom: 3vw;
  }

  .confidence-slider::-webkit-slider-thumb {
    width: 6vw;
    height: 6vw;
    border: 3px solid var(--white);
  }

  .confidence-slider::-moz-range-thumb {
    width: 6vw;
    height: 6vw;
    border: 3px solid var(--white);
  }

  .confidence-value {
    font-size: 3vw;
    padding: 2vw;

    border-radius: 10px;
    text-align: center;
    color: var(--white);
  }

  .navigation {
    flex-direction: row;
    gap: 4vw;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 4vw;
    padding: 3vw;

    border-radius: 10px;
    margin-top: auto;
  }

  .nav-item {
    gap: 2vw;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .nav-text {
    font-size: 3vw;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1vw;

    border-radius: 10px;
  }

  .nav-text:hover {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }

  .nav-text.disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
  }

  .nav-text.disabled:hover {
    color: var(--white);
    background: transparent;
    transform: none;
  }

  /* Navigation Message - Mobile */
  .nav-message {
    margin-top: 2vw;
    padding: 3vw 4vw;

    border-radius: 10px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-message p {
    font-size: 2.8vw;
    color: #ff0038;
    font-weight: 600;
  }

  .nav-item:first-child .nav-text {
    order: 2;
  }

  .nav-item:first-child .nav-arrow {
    order: 1;
  }

  .nav-item:last-child .nav-text {
    order: 1;
  }

  .nav-item:last-child .nav-arrow {
    order: 2;
  }

  .nav-arrow {
    width: 12vw;
    height: 12vw;

    border-radius: 100%;
  }

  .nav-arrow:hover:not(:disabled) {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--black);
  }

  .nav-arrow:active:not(:disabled) {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--black);
  }

  .nav-arrow img {
    width: 6vw;
    height: 6vw;
  }

  .results-screen {
    padding: 6vw 4vw;
    max-width: 100%;
  }

  #new-results-screen {
    max-width: 100% !important;
  }

  .results-screen h2 {
    font-size: 6vw;
    line-height: 6vw;
    margin-bottom: 2vw;
  }

  .results-subtitle {
    font-size: 2.7vw;
    margin-bottom: 2vw;
  }

  .score-card {
    flex-direction: column;
    text-align: center;
    gap: 3vw;
    padding: 1vw;
  }

  .score-circle {
    width: 20vw;
    height: 20vw;
    margin: 0 auto;
  }

  .score-number {
    font-size: 6vw;
  }

  .score-total {
    font-size: 3vw;
  }

  .score-label {
    font-size: 4vw;
    margin-bottom: 1vw;
  }

  .risk-level {
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }

  .score-description {
    font-size: 2.5vw;
    line-height: 1.3;
  }

  .recommendations-card,
  .support-card {
    padding: 3vw;

    border-radius: 10px;
    margin-bottom: 3vw;
  }

  .card-header h3 {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }

  .card-header p {
    font-size: 2.2vw;
    line-height: 1.2;
  }

  .recommendation-item {
    padding: 3vw;

    border-radius: 10px;
    border-left-width: 6px;
  }

  .recommendation-item p {
    font-size: 2.2vw;
    line-height: 1.4;
  }

  .support-grid {
    gap: 2vw;
  }

  .support-item {
    padding: 2.5vw;

    border-radius: 10px;
    backdrop-filter: blur(15px);
  }

  .support-item.emergency::before {
    left: 1vw;
    width: 0.6vw;

    border-radius: 10px;
  }

  .support-content {
    padding-left: 2vw;
  }

  .support-content h4 {
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }

  .phone-number {
    font-size: 4.5vw;
    margin-bottom: 1vw;
  }

  .support-content p {
    font-size: 2.1vw;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .support-note {
    font-size: 1.8vw;
    line-height: 1.3;
    margin-top: 0.7vw;
  }

  .restart-btn {
    margin-top: 4vw;
  }

  .survey-summary {
    padding: 4vw;

    border-radius: 10px;
    margin-bottom: 4vw;
  }

  .summary-title {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }

  .summary-intro {
    font-size: 2.5vw;
    margin-bottom: 3vw;
  }

  .section-title {
    font-size: 2.8vw;
    margin-bottom: 2vw;
    margin-top: 3vw;
  }

  .habits li,
  .self-esteem li,
  .remember li {
    font-size: 2.2vw;
    margin-bottom: 1.5vw;
    padding-left: 3vw;
  }

  .summary-box {
    padding: 3vw;

    border-radius: 10px;
    margin-top: 3vw;
    border-left-width: 6px;
  }

  .box-title {
    font-size: 2.5vw;
    margin-bottom: 2vw;
  }

  .summary-box p {
    font-size: 2.2vw;
    margin-bottom: 2.5vw;
  }

  .help-button {
    padding: 2.5vw 4vw;

    border-radius: 10px;
    font-size: 2.2vw;
    margin-bottom: 2vw;
  }

  .help-links a {
    padding: 2vw 3vw;

    border-radius: 10px;
    font-size: 2vw;
    margin-bottom: 1vw;
  }

  .score-description {
    font-size: 2.56vw;
  }

  .recommendations {

    border-radius: 10px;
    padding: 6.4vw;
    margin-bottom: 5.12vw;
  }

  .recommendations h3 {
    margin-bottom: 4.16vw;
    font-size: 3.2vw;
  }

  .recommendations li {
    padding: 2.08vw 0;
    font-size: 2.56vw;
    line-height: 3.84vw;
  }

  .emergency-contacts {

    border-radius: 10px;
    padding: 4.16vw;
    margin-bottom: 5.12vw;
  }

  .emergency-contacts h3 {
    margin-bottom: 3.2vw;
    font-size: 3.2vw;
  }

  .emergency-contacts p {
    margin-bottom: 2.08vw;
    font-size: 2.56vw;
    line-height: 3.84vw;
  }

  .restart-btn {
    padding: 3.2vw 6.4vw;

    border-radius: 10px;
    font-size: 3.2vw;
  }
}

@supports (-webkit-appearance: none) {
  .full-page-menu .logo img {
    max-width: 150px !important;
    width: auto !important;
    height: auto !important;
  }
}

/* Mobile Test Video Styles */
.mobile-test-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.mobile-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.mobile-video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.mobile-play-pause-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
}

.mobile-play-pause-btn:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(175, 242, 196, 0.5));
}

.mobile-play-pause-btn img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}