* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0f0f0f;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-section {
  flex: 1;
  /* display: flex; */
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

/* Hero Section */
.hero {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow: hidden;
}

.hero-image {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  border-right: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 80%;
  height: 70%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.hero-image-placeholder img:hover {
  transform: scale(1.02);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 50px 50px;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.gpt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.hero-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 100%
    ),
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px
    );
  background-size: 100% 100%, 30px 30px;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content .subheading {
  font-size: 1.35rem;
  color: #b0b0b0;
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 90%;
}

.cta-button {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000000;
  border: none;
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
    0 5px 20px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #888888;
  padding: 15px 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 1px solid #333;
  height: 80px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.disclaimer {
  font-size: 0.8rem;
  color: #666666;
  flex: 1;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: #888888;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-info {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 0.8rem;
}

.contact-item {
  color: #888888;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-section {
    overflow-y: auto;
    flex-direction: column;
  }

  .hero {
    flex-direction: column;
    position: relative;
    min-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .hero-image {
    height: 200px;
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .hero-image-placeholder {
    width: 60%;
    height: 70%;
    font-size: 0.9rem;
  }

  .hero-content {
    flex: 1;
    padding: 40px 30px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-content .subheading {
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
  }

  .cta-button {
    align-self: center;
    width: 100%;
    max-width: 300px;
  }

  .footer {
    position: relative;
    height: auto;
    padding: 10px 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .disclaimer {
    font-size: 0.75rem;
  }

  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .contact-info {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .subheading {
    font-size: 1rem;
  }

  .footer {
    padding: 8px 10px;
  }

  .footer-content {
    gap: 5px;
  }

  .disclaimer {
    font-size: 0.7rem;
  }

  .footer-links a,
  .contact-item {
    font-size: 0.7rem;
  }

  .contact-info {
    gap: 8px;
  }
}

/* Hidden sections for future questions */
.question-section {
  display: none;
  padding: 60px 40px;
  min-height: calc(100vh - 80px);
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  overflow-y: auto;
}

.question-section.active {
  display: flex;
}

.question-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.question-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.3;
}

.question-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.answer-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.answer-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.answer-btn:active {
  transform: translateY(0);
}

.answer-btn.selected {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000000;
  border-color: #ffffff;
}

.continue-btn {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Blocking screen styles */
.blocking-container {
  text-align: center;
}

.blocking-title {
  color: #ff6b6b;
  font-size: 2rem;
  margin-bottom: 20px;
}

.blocking-message {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.blocking-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blocking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Calculator styles */
.calculator {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
}

.calculator-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.calculator-row label {
  color: #ffffff;
  font-weight: 500;
  min-width: 200px;
}

.calculator-row input[type="range"] {
  flex: 1;
  min-width: 200px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.calculator-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.calculator-row span {
  color: #ffffff;
  font-weight: 600;
  min-width: 100px;
  text-align: right;
}

.calculator-result {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #ffffff;
}

.result-item:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.profit-value {
  color: #4caf50;
  font-weight: 600;
}

.total-value {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Intro text styles */
.intro-text {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.intro-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Mobile responsive for questions */
@media (max-width: 768px) {
  .question-container {
    padding: 0 15px;
  }

  .question-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .question-subtitle {
    font-size: 1rem;
  }

  .answer-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .calculator {
    padding: 20px;
  }

  .calculator-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .calculator-row label {
    min-width: auto;
    margin-bottom: 10px;
  }

  .calculator-row span {
    text-align: center;
    margin-top: 10px;
  }

  .intro-text {
    padding: 20px;
    text-align: center;
  }

  .intro-text p {
    font-size: 1rem;
  }
}

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

.form-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

.registration-form {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 20px;
  max-width: 500px;
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
  position: relative;
  z-index: 999;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input.valid {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.form-group input.invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
  min-height: 20px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4),
    0 0 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.data-protection {
  color: #888888;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  opacity: 0.8;
}

/* Mobile responsive for form */
@media (max-width: 768px) {
  .form-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .registration-form {
    padding: 30px 25px;
    margin: 0 15px 20px 15px;
  }

  .form-group input {
    padding: 12px 15px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .data-protection {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.6rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .registration-form {
    padding: 25px 20px;
  }
}

/* Registration Form Styles - Split Layout */
.form-layout {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
  align-items: flex-start;
}

.form-content {
  flex: 1;
  padding-right: 20px;
}

.form-container {
  flex: 1;
  min-width: 400px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: left;
}

.form-subtitle {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: left;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.4;
}

.benefit-icon {
  color: #4caf50;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.registration-form {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input.valid {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.form-group input.invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
  min-height: 20px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4),
    0 0 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled::before {
  display: none;
}

.data-protection {
  color: #888888;
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.5;
  opacity: 0.8;
  margin-top: 20px;
}

/* Mobile responsive for form */
@media (max-width: 768px) {
  .form-layout {
    flex-direction: column;
    gap: 30px;
  }

  .form-content {
    padding-right: 0;
    text-align: center;
  }

  .form-container {
    min-width: auto;
  }

  .form-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .benefits-list {
    margin-bottom: 30px;
  }

  .benefit-item {
    justify-content: center;
    text-align: center;
    font-size: 1rem;
  }

  .registration-form {
    padding: 30px 25px;
    margin: 0 15px;
  }

  .form-group input {
    padding: 12px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .data-protection {
    text-align: center;
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.6rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .benefit-item {
    font-size: 0.95rem;
    gap: 10px;
  }

  .registration-form {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input {
    padding: 12px 15px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(
    ellipse at top left,
    #1a0033 0%,
    #000 40%,
    #001a33 100%
  );
  overflow: hidden;
  position: relative;
}

/* Animated Background Particles */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(74, 144, 226, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(226, 74, 144, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(144, 226, 74, 0.1) 1px,
      transparent 1px
    );
  background-size: 100px 100px, 150px 150px, 80px 80px;
  animation: particleFloat 20s ease-in-out infinite;
  z-index: 1;
}

/* Floating Geometric Shapes */
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(226, 74, 144, 0.1) 50%,
    rgba(144, 226, 74, 0.1) 100%
  );
  border-radius: 50%;
  filter: blur(1px);
  animation: floatGeometry 15s ease-in-out infinite;
  z-index: 1;
}

.geometric-shape {
  position: absolute;
  border: 1px solid rgba(74, 144, 226, 0.2);
  animation: rotate 25s linear infinite;
}

.geometric-shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
  animation-delay: -5s;
}

.geometric-shape:nth-child(2) {
  bottom: 30%;
  right: 20%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation-delay: -10s;
}

.geometric-shape:nth-child(3) {
  top: 50%;
  left: 5%;
  width: 80px;
  height: 80px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: -15s;
}

.hero-image {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(45, 45, 45, 0.8) 50%,
    rgba(26, 26, 26, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(74, 144, 226, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* Advanced Glow Effects */
.hero-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(74, 144, 226, 0.1) 90deg,
    rgba(226, 74, 144, 0.1) 180deg,
    rgba(144, 226, 74, 0.1) 270deg,
    transparent 360deg
  );
  animation: conicRotate 20s linear infinite;
  z-index: -1;
}

.hero-image-placeholder {
  width: 85%;
  height: 75%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 50px rgba(74, 144, 226, 0.2);
  overflow: hidden;
  position: relative;
}

.hero-image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: all 0.5s ease;
  filter: brightness(1.1) contrast(1.1);
}

.hero-image-placeholder:hover img {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2);
}

/* GPT Icon with Enhanced Glow */
.gpt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(51, 51, 51, 0.95) 100%
  );
  border: 2px solid rgba(74, 144, 226, 0.5);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 100px rgba(74, 144, 226, 0.4),
    0 0 200px rgba(74, 144, 226, 0.2);
  animation: enhancedFloat 8s ease-in-out infinite;
  backdrop-filter: blur(20px);
  z-index: 10;
}

.gpt-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(74, 144, 226, 0.6) 0%,
    rgba(226, 74, 144, 0.6) 25%,
    rgba(144, 226, 74, 0.6) 50%,
    rgba(74, 144, 226, 0.6) 75%,
    rgba(226, 74, 144, 0.6) 100%
  );
  border-radius: 27px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
}

.hero-content {
  flex: 1;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.95) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  position: relative;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* Advanced Grid Pattern */
.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(74, 144, 226, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask: radial-gradient(ellipse at center, black 40%, transparent 80%);
  animation: gridPulse 6s ease-in-out infinite;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(74, 144, 226, 0.3);
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(74, 144, 226, 0.8) 50%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 4s ease-in-out infinite;
}

.hero-content .subheading {
  font-size: 1.4rem;
  color: rgba(176, 176, 176, 0.9);
  margin-bottom: 60px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 95%;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* Enhanced CTA Button */
.cta-button {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.9) 0%,
    rgba(226, 74, 144, 0.9) 50%,
    rgba(144, 226, 74, 0.9) 100%
  );
  color: #ffffff;
  border: none;
  padding: 25px 60px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(74, 144, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(74, 144, 226, 0.4), 0 0 80px rgba(74, 144, 226, 0.3);
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 1) 0%,
    rgba(226, 74, 144, 1) 50%,
    rgba(144, 226, 74, 1) 100%
  );
}

.cta-button:active {
  transform: translateY(-2px) scale(0.98);
}

/* Animations */
@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}

@keyframes floatGeometry {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }
  66% {
    transform: translateY(-10px) translateX(-15px) scale(0.9);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes conicRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes enhancedFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 100px rgba(74, 144, 226, 0.4);
  }
  33% {
    transform: translate(-50%, -50%) translateY(-15px) rotate(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 120px rgba(226, 74, 144, 0.4);
  }
  66% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(-1deg);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 110px rgba(144, 226, 74, 0.4);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(74, 144, 226, 0.3);
  }
  50% {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(74, 144, 226, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    min-height: 50vh;
    border-right: none;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
  }

  .hero-content {
    padding: 60px 40px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .gpt-icon {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subheading {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 20px 40px;
    font-size: 1rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  padding: 25px;
  z-index: 10000;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-icon {
  font-size: 1.5rem;
}

.cookie-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-description a {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-description a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.cookie-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cookie-btn:hover::before {
  left: 100%;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cookie-btn-decline {
  background: linear-gradient(135deg, #f44336, #ef5350);
  color: white;
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.cookie-btn-decline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.cookie-btn-customize {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-btn-customize:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  position: relative;
}

.cookie-modal-overlay.show .cookie-modal {
  transform: scale(1) translateY(0);
}

.cookie-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: #f8f9fa;
  color: #495057;
}

.cookie-modal-body {
  padding: 20px 30px;
}

.cookie-description-full {
  color: #6c757d;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-category {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-category-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 25px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #4caf50;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(25px);
}

.cookie-toggle-slider.disabled {
  background: #e9ecef !important;
  cursor: not-allowed;
}

.cookie-toggle-slider.disabled:before {
  background: #6c757d;
}

.cookie-modal-footer {
  padding: 20px 30px 30px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #e9ecef;
}

.cookie-modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-modal-btn-save {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cookie-modal-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cookie-modal-btn-cancel {
  background: #6c757d;
  color: white;
}

.cookie-modal-btn-cancel:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Status Indicator */
.cookie-status {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 15000;
  display: none;
  font-size: 0.9rem;
  color: #2c3e50;
  border-left: 4px solid #4caf50;
}

.cookie-status.show {
  display: block;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-text {
    min-width: unset;
  }

  .cookie-actions {
    justify-content: center;
  }

  .cookie-modal {
    margin: 10px;
    max-height: 95vh;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .demo-content {
    padding: 20px;
  }

  .demo-content h1 {
    font-size: 2rem;
  }
}

/* Scrollbar Styling */
.cookie-modal::-webkit-scrollbar {
  width: 6px;
}

.cookie-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.cookie-modal::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.cookie-modal::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.cookie-toggle-slider {
  width: 40px;
  height: 20px;
  background: #555;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle-slider::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.3s;
}

.cookie-toggle-slider.active {
  background: #00cc66;
}

.cookie-toggle-slider.active::before {
  left: 22px;
}

/* Enhanced Quiz Sections */
.question-section {
  display: none;
  padding: 80px 40px;
  min-height: calc(100vh - 80px);
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    ellipse at top left,
    #1a0033 0%,
    #000 40%,
    #001a33 100%
  );
  overflow-y: auto;
  position: relative;
}

/* Animated Background Particles */
.question-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(74, 144, 226, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(226, 74, 144, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(144, 226, 74, 0.08) 1px,
      transparent 1px
    );
  background-size: 120px 120px, 180px 180px, 100px 100px;
  animation: particleDrift 25s ease-in-out infinite;
  z-index: 1;
}

/* Floating Geometric Elements */
.question-section::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    rgba(74, 144, 226, 0.05) 0%,
    rgba(226, 74, 144, 0.05) 50%,
    rgba(144, 226, 74, 0.05) 100%
  );
  border-radius: 50%;
  filter: blur(2px);
  animation: floatShape 20s ease-in-out infinite;
  z-index: 1;
}

.question-section.active {
  display: flex;
  animation: sectionFadeIn 0.8s ease-out;
}

.question-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Enhanced Question Title */
.question-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(74, 144, 226, 0.3);
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(74, 144, 226, 0.9) 50%,
    #ffffff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 4s ease-in-out infinite;
  position: relative;
}

.question-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
  animation: titleHalo 6s ease-in-out infinite;
}

/* Enhanced Question Subtitle */
.question-subtitle {
  font-size: 1.3rem;
  color: rgba(176, 176, 176, 0.95);
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  animation: subtitleFade 0.8s ease-out 0.3s both;
}

/* Enhanced Answer Options Container */
.answer-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  animation: optionsFadeIn 0.8s ease-out 0.5s both;
}

/* Stunning Answer Buttons */
.answer-btn {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(45, 45, 45, 0.8) 100%
  );
  color: #ffffff;
  border: 2px solid rgba(74, 144, 226, 0.2);
  padding: 25px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* Shimmer Effect */
.answer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

/* Glow Effect */
.answer-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.answer-btn:hover {
  border-color: rgba(74, 144, 226, 0.6);
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.9) 0%,
    rgba(74, 144, 226, 0.1) 50%,
    rgba(58, 58, 58, 0.9) 100%
  );
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(74, 144, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.answer-btn:hover::before {
  left: 100%;
}

.answer-btn:hover::after {
  width: 120%;
  height: 120%;
}

.answer-btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.15s ease;
}

/* Selected State with Enhanced Glow */
.answer-btn.selected {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.9) 0%,
    rgba(226, 74, 144, 0.7) 50%,
    rgba(144, 226, 74, 0.9) 100%
  );
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4),
    0 0 100px rgba(74, 144, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
  animation: selectedPulse 2s ease-in-out infinite;
}

.answer-btn.selected::after {
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
}

/* Enhanced Continue Button */
.continue-btn {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.9) 0%,
    rgba(226, 74, 144, 0.8) 50%,
    rgba(144, 226, 74, 0.9) 100%
  );
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 22px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3),
    0 0 60px rgba(74, 144, 226, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: continueBtnFadeIn 0.8s ease-out 0.7s both;
}

.continue-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.8s ease;
}

.continue-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: -1;
}

.continue-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 70px rgba(74, 144, 226, 0.4),
    0 0 100px rgba(74, 144, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 1) 0%,
    rgba(226, 74, 144, 0.9) 50%,
    rgba(144, 226, 74, 1) 100%
  );
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.continue-btn:hover::before {
  left: 100%;
}

.continue-btn:hover::after {
  width: 200%;
  height: 200%;
}

.continue-btn:active {
  transform: translateY(-3px) scale(1.02);
  transition: all 0.15s ease;
}

.continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Advanced Animations */
@keyframes sectionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particleDrift {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-40px) rotate(270deg);
    opacity: 0.7;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
  }
  33% {
    transform: translateY(-40px) translateX(30px) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translateY(-15px) translateX(-20px) scale(0.9) rotate(240deg);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(74, 144, 226, 0.3);
  }
  50% {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 60px rgba(74, 144, 226, 0.5);
  }
}

@keyframes titleHalo {
  0%,
  100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes subtitleFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.95;
    transform: translateY(0);
  }
}

@keyframes optionsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes continueBtnFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes selectedPulse {
  0%,
  100% {
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4),
      0 0 100px rgba(74, 144, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.5),
      0 0 120px rgba(74, 144, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .question-section {
    padding: 40px 20px;
  }

  .question-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .question-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .answer-btn {
    padding: 20px 25px;
    font-size: 1.1rem;
  }

  .continue-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
  }

  .answer-options {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .question-title {
    font-size: 1.8rem;
  }

  .question-subtitle {
    font-size: 1rem;
  }

  .answer-btn {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .continue-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* Additional Visual Enhancements */
.question-container {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

/* Progress Indicator Enhancement */
.progress-indicator {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(74, 144, 226, 0.8) 0%,
    rgba(226, 74, 144, 0.8) 50%,
    rgba(144, 226, 74, 0.8) 100%
  );
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.7);
  }
}
