@font-face {
  font-family: 'Gordita Round Up';
  src: url('/fonts/GorditaRoundUp-Regular.woff2') format('woff2');
}

:root {
  --primary: rgb(249, 115, 22);
  --primary-hover: #090F32;
  --background: #f8f9fa;
  --text: #2d3748;
}

body {
  font-family: 'Gordita Round Up', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
}

/* Circle shape */
body::before {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 15%;
  right: 10%;
  opacity: 0.2;
}

/* Line shape */
body::after {
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  bottom: 20%;
  left: 15%;
  opacity: 0.2;
  transform: rotate(-45deg);
}

/* Additional shapes using the container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container::before,
.container::after {
  content: '';
  position: absolute;
  z-index: -1;
}

/* Number 7 shape */
.container::before {
  content: '7';
  font-size: 60px;
  color: var(--primary);
  opacity: 0.1;
  top: 10%;
  left: 5%;
  font-weight: bold;
}

/* Small circle */
.container::after {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  bottom: 15%;
  right: 8%;
  opacity: 0.15;
}

.question {
  display: none;
  text-align: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.question.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

input[type="number"] {
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}

.source {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 2rem;
}

.source a {
  color: var(--primary);
  text-decoration: none;
}

.source a:hover {
  text-decoration: underline;
}

.result-value {
  font-size: 1.25rem;
  margin: 2rem 0;
}

.result-value h3 {
  font-size: 3rem;
  margin: 1rem 0;
  color: var(--primary);
}

.redirect-section {
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  padding: 2rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 16px;
}

.redirect-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 1.5rem auto 0;
}

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

@media (max-width: 768px) {
  body::before {
    right: 5%;
  }
  
  body::after {
    left: 8%;
  }
  
  .container::before {
    font-size: 40px;
  }
  
  .question {
    padding: 1.5rem;
  }
  
  .redirect-section {
    padding: 1.5rem;
    margin: 2rem auto;
  }
  
  .redirect-section p {
    font-size: 1rem;
  }
  
  .logo {
    width: 150px;
  }
}