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

body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 800px;
}

.quiz-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.header i {
  font-size: 3em;
  color: #007bff;
  margin-bottom: 20px;
}

.subtitle {
  color: #666;
  font-size: 1.2em;
  margin-top: 10px;
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: bold;
}

.question h2 {
  color: #444;
  margin-bottom: 25px;
  font-size: 1.8em;
  text-align: center;
}

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

.option {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
}

.option i {
  font-size: 1.5em;
  color: #007bff;
  transition: color 0.3s ease;
}

.option:hover {
  background: #007bff;
  border-color: #007bff;
  transform: translateY(-2px);
}

.option:hover i,
.option:hover .option-text {
  color: white;
}

.option-text {
  color: #333;
  font-size: 1.2em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-button {
  background: #ff4d4d;
  color: white;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

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

.content p {
  font-size: 1.2em;
  margin: 20px 0;
  color: #fff;
}

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

  h1 {
    font-size: 2em;
  }

  .question h2 {
    font-size: 1.5em;
  }

  .option-text {
    font-size: 1.1em;
  }

  .header i {
    font-size: 2.5em;
  }

  .subtitle {
    font-size: 1.1em;
  }
}
