#ncmq-quiz {
  font-family: "Segoe UI", sans-serif;
  padding: 30px;
  background: #fff;
  max-width: 100%;
  border-top: 3px solid #d71920;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  margin: 0 auto;
}

.ncmq-question {
  margin-bottom: 30px;
}

.ncmq-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ncmq-options button {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: 20px 15px;
  background: #f7f7f7;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
}

.ncmq-options button:hover {
  background: #d71920;
  color: #fff;
  border-color: #d71920;
}

.ncmq-options.with-icons button img {
  margin-bottom: 10px;
  max-height: 40px;
}

.help-text {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
  text-align: center;
}

.ncmq-back {
  margin-top: 20px;
  background: none;
  color: #d71920;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
}

.ncmq-result {
  text-align: center;
}

.ncmq-result ul {
  text-align: left;
  max-width: 400px;
  margin: 10px auto;
}

.ncmq-result ul li {
  margin-bottom: 6px;
}

.ncmq-commercial-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #d71920;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.ncmq-commercial-btn:hover {
  background: #a00;
}

.ncmq-restart {
  display: inline-block;
  margin-top: 20px;
  background: #555;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.ncmq-restart:hover {
  background: #222;
}

.ncmq-options .ncmq-option-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 250px;
  max-width: 280px;
  min-height: 220px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.ncmq-option-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
}

.ncmq-option-card h4 {
  margin: 10px 0 5px;
  font-size: 1.05rem;
  text-align: center;
}

.ncmq-option-card .info {
  font-size: 0.85rem;
  color: #666;
  padding: 0 10px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.ncmq-option-card:hover {
  border-color: #d71920;
}

.ncmq-option-card:hover .info {
  opacity: 1;
  transform: translateY(0);
}

.ncmq-matches {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
.ncmq-match {
  flex: 1 1 250px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  max-width: 300px;
}
.ncmq-match img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}
.ncmq-match h4 {
  margin-bottom: 5px;
}
.view-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #d71920;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.view-button:hover {
  background: #a00;
}
.catcher-alert {
  font-size: 0.85em;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 5px 10px;
  border-radius: 4px;
  margin-top: 5px;
}
.ncmq-match .price-box {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}
.ncmq-form-wrapper {
    margin-top: 40px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 6px;
}

.ncmq-form-wrapper h3 {
    margin-top: 0;
}
.ncmq-form-container {
  display: none;
}