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

body {
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(255,202,129,0.18), transparent 10%),
              linear-gradient(135deg, #ffb07c 0%, #ff8a00 40%, #ff6a00 100%);
  min-height: 100vh;
  padding: 10px;
  width: 672px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

body::before, body::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.35;
  pointer-events: none;
}

body::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  top: -80px;
  left: -80px;
}

body::after {
  width: 560px;
  height: 560px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -120px;
  right: -120px;
}

.container {
  background-image: url('image/backround01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.18);
  background-blend-mode: normal;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  max-width: 800px;

  width: 100%;
  padding: 25px 40px;
  left: 10px;
  text-align: center;
  z-index: 10;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(231, 224, 213, 1)),
              radial-gradient(circle at 18% 28%, rgba(102, 126, 234, 0.06) 0%, transparent 18%),
              radial-gradient(circle at 82% 72%, rgba(255, 154, 158, 0.05) 0%, transparent 18%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: normal;
}

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

.logo {
  font-size: 60px;
  margin-bottom: 20px;
}

.logo img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 16px auto;
}

h1 {
  color: #333;
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight {
  color: #ff8a00;
  font-weight: 1700;
}

.features {
  background: #f5f9ff;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
}

.features h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.features ul {
  list-style: none;
  margin-left: 0;
}

.features li {
  color: #555;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
  font-size: 14px;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

.prize-box {
  background: radial-gradient(circle at 10% 10%, rgba(255,202,129,0.18), transparent 10%),
              linear-gradient(135deg, #ffb07c 0%, #ff8a00 40%, #ff6a00 100%);
  color: white;
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

.prize-box .icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.prize-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.prize-box p {
  font-size: 14px;
  line-height: 1.6;
}

.time-estimate {
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  padding: 15px;
  background: #fff9e6;
  border-radius: 8px;
  border-left: 4px solid #ff8a00;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50 0%, #00a86b 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

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

.footer-text {
  color: #999;
  font-size: 12px;
  margin-top: 20px;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.bold-italic {
  font-weight: 700;
  font-style: italic;
}

.text-normal {
  font-weight: 400;
  font-style: normal;
}

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

.header h1 {
  color: #333;
  margin-bottom: 3px;
  font-size: 22px;
}

.header p {
  color: #666;
  font-size: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 4px;
  color: #333;
  font-weight: 600;
  font-size: 19px;
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
  margin-right: 8px;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
}

.radio-group[style*="flex-direction: row"],
.checkbox-group[style*="flex-direction: row"] {
  flex-direction: row !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
}

.radio-item,
.checkbox-item {
  display: flex;
  align-items: center;
  padding: 4px 0;
  border-radius: 5px;
  transition: background 0.15s;
  margin-bottom: 0;
  width: 100%;
}

.radio-item:hover,
.checkbox-item:hover {
  background: #f5f5f5;
}

.radio-item label,
.checkbox-item label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  width: 100%;
  color: #555;
  font-weight: 400;
  line-height: 1.3;
}

.radio-item input,
.checkbox-item input {
  margin-right: 8px;
  flex: 0 0 auto;
}

.text-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 17px;
  transition: border-color 0.3s;
}

.text-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 5px rgba(102,126,234,0.3);
}

textarea.text-input {
  resize: vertical;
  min-height: 65px;
  font-family: Arial, sans-serif;
}

.rating-group {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.btn-reset {
  background: #e0e0e0;
  color: #333;
}

.btn-reset:hover {
  background: #d0d0d0;
}

.btn-cancel {
  background: #ff8a00;
  color: white;
}

.btn-cancel:hover {
  background: #ff6a00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,138,0,0.4);
}

.install-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98));
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  z-index: 9999;
}

.install-banner img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.install-banner .content {
  flex: 1;
  text-align: left;
}

.install-banner .title {
  font-weight: 700;
  color: #333;
  font-size: 15px;
}

.install-banner .subtitle {
  color: #666;
  font-size: 13px;
}

.install-banner .actions {
  display: flex;
  gap: 8px;
}

.install-banner .btn-install {
  background: linear-gradient(135deg,#4caf50 0%,#00a86b 100%);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.install-banner .btn-close {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.survey-header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 25px;
}

.survey-header .logo2 img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.survey-header .survey-title {
  text-align: left;
  max-width: calc(100% - 130px);
}

.survey-header .judul2 {
  font-size: 22px !important;
  margin: 0 0 0 0;
  color: #050505ff;
}

.survey-header .subjudul2 {
  font-size: 20px !important;
  margin: 0;
  color: #666;
}

h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 15px;
  margin-bottom: 25px;
}

.features {
  padding: 20px;
  margin: 25px 0;
}

.features li {
  font-size: 13px;
  margin-bottom: 10px;
}

#coverSection .judul {
  font-size: 30px;
}

#coverSection .logox img {
  width: 150px;
  height: 150px;
}

#coverSection .icon {
  font-size: 60px;
  margin-bottom: 15px;
}

#coverSection .anigif img {
  width: 200px;
  height: 200px;
  margin-top: -10px;
}

#coverSection .anigif-bg img {
  width: 200px;
  height: 200px;
  margin-top: -270px;
}

#coverSection .subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #1a1919ff;
}

#coverSection .highlight2 {
  font-size: 19px;
  font-weight: 500;
  color: #e94b0dff;
}

@media (max-width: 200px) and (orientation: portrait) {
  #coverSection .judul {
    font-size: 30px;
  }

    #coverSection .container {
    width: 300px;
    height: 300px;
    margin-bottom: 25px;
    margin-top: 400px;
    left: 100px;
    top: 100px;

 

  }
  #coverSection .logox img {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    margin-top: 40px;
  }

  #coverSection .icon {
    font-size: 60px;
    margin-bottom: 15px;
  }

  #coverSection .subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #1a1919ff;
  }

  #coverSection .highlight2 {
    font-size: 19px;
    font-weight: 500;
    color: #e94b0dff;
  }

  #coverSection .prize-box {
    background: radial-gradient(circle at 10% 10%, rgba(255,202,129,0.18), transparent 10%),
                linear-gradient(135deg, #ffb07c 0%, #ff8a00 40%, #ff6a00 100%);
    color: white;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    height: 300px;
  }

  #coverSection .icon {
    font-size: 60px;
    margin-bottom: 15px;
  }

  #coverSection .anigif img {
    width: 200px;
    height: 200px;
    margin-top: -10px;
  }

  #coverSection .anigif-bg img {
    width: 200px;
    height: 200px;
    margin-top: -270px;
  }

  #coverSection .subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #1a1919ff;
  }

  #coverSection .highlight2 {
    font-size: 19px;
    font-weight: 500;
    color: #e94b0dff;
  }

  #resultsSection .logox img {
    width: 400px;
    height: 400px;
    margin-bottom: 25px;
    margin-top: -100px;
  }
}

#surveySection,
#resultsSection .container {
  text-align: left;
}

#surveySection .form-group,
#resultsSection .container .form-group {
  text-align: left;
}

#surveySection .radio-group,
#surveySection .checkbox-group,
#surveySection .rating-group,
#resultsSection .container .radio-group,
#resultsSection .container .checkbox-group,
#resultsSection .container .rating-group {
  align-items: flex-start;
  text-align: left;
}

#surveySection .survey-header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
}

#surveySection .survey-header .logo2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

#surveySection .survey-header .survey-title {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

#surveySection .radio-group.inline-row {
  flex-direction: row !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

#surveySection .radio-group.inline-row .radio-item,
#surveySection .radio-group.inline-row .checkbox-item {
  width: auto !important;
  white-space: nowrap !important;
}

#resultsSection,
#resultsSection .container {
  text-align: center;
  height: 420px;
}

#resultsSection .form-group,
#resultsSection .container .form-group {
  text-align: left;
}

#resultsSection .radio-group,
#resultsSection .checkbox-group,
#resultsSection .rating-group,
#resultsSection .container .radio-group,
#resultsSection .container .checkbox-group,
#resultsSection .container .rating-group {
  align-items: flex-start;
  text-align: left;
}

#resultsSection .survey-header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
}

#resultsSection .survey-header .logo2 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

#resultsSection .survey-header .survey-title {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

#resultsSection .radio-group.inline-row {
  flex-direction: row !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

#resultsSection .radio-group.inline-row .radio-item,
#resultsSection .radio-group.inline-row .checkbox-item {
  width: auto !important;
  white-space: nowrap !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 5px 40px;
  }
}