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

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #fbbf24;
  --accent: #fcd34d;
  --dark: #1a0f0a;
  --dark-light: #2d1810;
  --gray: #a1887f;
  --light: #fff8f0;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #1a0f0a 100%);
  background-image: 
    linear-gradient(rgba(251, 191, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #1a0f0a 100%);
  background-size: 50px 50px, 50px 50px, 100% 100%;
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 15, 10, 0.95);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.6s ease-out;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.4));
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5), 0 0 40px rgba(251, 191, 36, 0.2);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('attached_assets/stock_images/cryptocurrency_bitco_5dfee462.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.92) 0%, rgba(45, 24, 16, 0.88) 50%, rgba(26, 15, 10, 0.92) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  z-index: 2;
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.coin-decoration {
  position: absolute;
  animation: floatCoin 6s ease-in-out infinite;
}

.coin-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.coin-2 {
  top: 60%;
  right: 8%;
  animation-delay: 1s;
}

.coin-3 {
  top: 35%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes floatCoin {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.9;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000000;
  border: none;
  padding: 27px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5), 0 4px 15px rgba(251, 191, 36, 0.3);
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.7), 0 6px 25px rgba(251, 191, 36, 0.5);
}

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

.features-divider {
  width: 100%;
  max-width: 900px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  margin: 60px auto 40px;
  opacity: 0.7;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  padding: 18px 16px;
  border-radius: 0;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  text-align: center;
}

.feature-item::before,
.feature-item::after {
  display: none;
}

.feature-item:first-child {
  border-radius: 16px 0 0 16px;
}

.feature-item:last-child {
  border-radius: 0 16px 16px 0;
}

.feature-item:hover {
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.feature-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.feature-text span {
  font-size: 13px;
  color: #ffffff;
}

.quiz-section {
  padding: 53px 0 80px 0;
  position: relative;
}

.quiz-divider {
  width: 100%;
  max-width: 900px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  margin: -38px auto 40px;
  opacity: 0.7;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.form-divider {
  width: 100%;
  max-width: 900px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  margin: -38px auto 40px;
  opacity: 0.7;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.form-section {
  padding: 80px 0;
  position: relative;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.4));
  animation: float 3s ease-in-out infinite;
}

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

.section-title {
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-container,
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(45, 24, 16, 0.7);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2), 0 0 100px rgba(251, 191, 36, 0.1);
}

.quiz-progress {
  margin-bottom: 40px;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: width 0.4s ease;
  width: 33%;
}

.progress-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

.question {
  display: none;
  animation: fadeInQuestion 0.5s ease-out;
}

.question.active {
  display: block;
}

@keyframes fadeInQuestion {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--white);
}

.answers {
  display: grid;
  gap: 16px;
}

.answer-btn {
  background: rgba(45, 24, 16, 0.9);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--white);
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.answer-btn:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: var(--secondary);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.answer-btn:active {
  transform: translateX(8px) scale(0.98);
}

.answer-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.answer-text {
  flex: 1;
}

.form-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.form-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(251, 191, 36, 0.5));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.form-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
  color: var(--white);
}

.form-subtitle {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(45, 24, 16, 0.9);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(45, 24, 16, 1);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.form-group input::placeholder {
  color: var(--gray);
}

.submit-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000000;
  border: none;
  padding: 27px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5), 0 4px 15px rgba(251, 191, 36, 0.3);
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.7), 0 6px 25px rgba(251, 191, 36, 0.5);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 10px;
}

.link {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  background: rgba(26, 15, 10, 0.9);
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 60px 0 30px;
  margin-top: 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.4));
}

.brand-name {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.brand-tagline {
  font-size: 14px;
  color: var(--gray);
}

.footer-legal {
  text-align: center;
}

.legal-info {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 500;
}

.footer-disclaimer {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.disclaimer-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  text-align: center;
}

.disclaimer-text strong {
  color: var(--accent);
  font-weight: 700;
}

.footer-links {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.separator {
  color: var(--gray);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding-top: 30px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 968px) {
  .hero-title {
    font-size: 42px;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .quiz-container,
  .form-container {
    padding: 30px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-title-wrapper {
    gap: 12px;
  }
  
  .section-icon {
    width: 35px;
    height: 35px;
  }
  
  .form-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .brand-logo {
    justify-content: center;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  .coin-decoration {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .header {
    padding: 12px 0;
  }
  
  .hero {
    padding: 120px 0 50px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .features-divider,
  .quiz-divider,
  .form-divider {
    max-width: 600px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-text strong {
    font-size: 15px;
  }
  
  .feature-text span {
    font-size: 12px;
  }
  
  .section-subtitle,
  .form-subtitle {
    font-size: 16px;
  }
  
  .progress-text {
    font-size: 13px;
  }
  
  .coin-decoration.coin-1,
  .coin-decoration.coin-3 {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin: 20px 0 30px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 27px 40px;
    font-size: 15px;
  }
  
  .quiz-section {
    padding: 53px 0 23px 0;
  }
  
  .form-section {
    padding: 80px 0 4px 0;
  }
  
  .quiz-container,
  .form-container {
    padding: 20px;
  }
  
  .section-title {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .section-title-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-icon {
    width: 30px;
    height: 30px;
  }
  
  .form-icon {
    width: 35px;
    height: 35px;
  }
  
  .form-title {
    font-size: 22px;
    line-height: 0.94;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .section-subtitle,
  .form-subtitle {
    font-size: 14px;
  }
  
  .question-title {
    font-size: 18px;
  }
  
  .answer-btn {
    padding: 16px 18px;
    font-size: 14px;
  }
  
  .answer-text {
    font-size: 14px;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .legal-badge {
    font-size: 11px;
    padding: 6px 18px;
  }
  
  .features {
    gap: 16px;
  }
  
  .feature-item {
    padding: 16px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-text strong {
    font-size: 14px;
  }
  
  .feature-text span {
    font-size: 11px;
  }
  
  .form-group input {
    font-size: 15px;
    padding: 16px;
  }
  
  .submit-button {
    padding: 27px 40px;
    font-size: 15px;
  }
  
  .form-note {
    font-size: 11px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .separator {
    display: none;
  }
  
  .footer-disclaimer {
    padding: 18px;
  }
  
  .disclaimer-text {
    font-size: 12px;
  }
  
  .coin-decoration {
    display: none;
  }
  
  .features-divider,
  .quiz-divider,
  .form-divider {
    margin-left: -16px;
    margin-right: -16px;
    max-width: calc(100% + 32px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .question-title {
    font-size: 16px;
  }
  
  .quiz-container,
  .form-container {
    padding: 16px;
  }
  
  .cta-button {
    font-size: 14px;
    padding: 24px 36px;
  }
  
  .submit-button {
    font-size: 14px;
    padding: 24px 36px;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 22px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .legal-badge {
    font-size: 10px;
    padding: 5px 14px;
  }
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.thankyou-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 30px;
  animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
  filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.3));
}

.thankyou-heading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 968px) {
  .thankyou-heading {
    font-size: 24px;
  }
  
  .success-icon svg {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 640px) {
  .thankyou-heading {
    font-size: 20px;
  }
  
  .success-icon svg {
    width: 60px;
    height: 60px;
  }
}
