* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0e27;
  --bg-elevated: rgba(15, 23, 42, 0.85);
  --accent: #38bdf8;
  --accent-strong: #22c55e;
  --text-primary: #e5e7eb;
  --text-muted: #9ca3af;
  --danger: #f97373;
}

body {
  font-family: 'SF Pro Display', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.app-root {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  overflow: hidden;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
  animation: gridFloat 20s ease-in-out infinite;
}

@keyframes gridFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.background-orbit {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: orbitFloat 8s ease-in-out infinite;
}

@keyframes orbitFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.background-orbit-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.6), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.background-orbit-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.5), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

/* Particle System */
.particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #fff, transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: particleBurst 1s ease-out forwards;
  z-index: 1000;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, -100px)) scale(0);
  }
}

.shell {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 95vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0.5rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(20px);
  animation: shellEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes shellEntry {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.25rem;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}

.panel-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
}

/* Character Styles */
.character {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: characterFloat 3s ease-in-out infinite;
}

@keyframes characterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.character-body {
  position: relative;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  box-shadow: 
    0 20px 40px rgba(102, 126, 234, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.character-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-eye {
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 40%;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.character-eye::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1f2937;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: eyeBlink 4s infinite;
}

@keyframes eyeBlink {
  0%, 96%, 100% { transform: translate(-50%, -50%) scaleY(1); }
  98% { transform: translate(-50%, -50%) scaleY(0.1); }
}

.character-eye-left {
  left: 35%;
}

.character-eye-right {
  right: 35%;
}

.character-mouth {
  position: absolute;
  width: 40px;
  height: 20px;
  border: 3px solid white;
  border-top: none;
  border-radius: 0 0 40px 40px;
  bottom: 35%;
  transition: all 0.3s ease;
}

.character-arm {
  position: absolute;
  width: 30px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  top: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.character-arm-left {
  left: -10px;
  transform: rotate(-20deg);
  transform-origin: top center;
}

.character-arm-right {
  right: -10px;
  transform: rotate(20deg);
  transform-origin: top center;
}

/* Character States */
.character-thinking .character-body {
  animation: thinkingBounce 0.6s ease-in-out infinite;
}

@keyframes thinkingBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.character-thinking .character-eye::after {
  animation: eyeThinking 1s infinite;
}

@keyframes eyeThinking {
  0%, 100% { transform: translate(-50%, -50%); }
  25% { transform: translate(-70%, -50%); }
  75% { transform: translate(-30%, -50%); }
}

.character-excited .character-body {
  animation: excitedJump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1.1);
}

@keyframes excitedJump {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.15) translateY(-20px); }
  100% { transform: scale(1.1) translateY(0); }
}

.character-excited .character-mouth {
  width: 50px;
  height: 25px;
  border-radius: 0 0 50px 50px;
}

.character-excited .character-arm-left {
  transform: rotate(-45deg);
}

.character-excited .character-arm-right {
  transform: rotate(45deg);
}

.character-celebrating .character-body {
  animation: celebrate 0.6s ease-in-out infinite;
}

@keyframes celebrate {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.character-celebrating .character-arm-left {
  animation: armWave 0.4s ease-in-out infinite;
}

.character-celebrating .character-arm-right {
  animation: armWave 0.4s ease-in-out infinite reverse;
}

@keyframes armWave {
  0%, 100% { transform: rotate(-45deg); }
  50% { transform: rotate(-80deg); }
}

/* Wrong Answer State */
.character-wrong .character-body {
  animation: headShake 0.5s ease-in-out;
}

@keyframes headShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.character-wrong .character-eye::after {
  animation: eyeShake 0.5s ease-in-out;
}

@keyframes eyeShake {
  0%, 100% { transform: translate(-50%, -50%); }
  20% { transform: translate(-80%, -50%); }
  40% { transform: translate(-20%, -50%); }
  60% { transform: translate(-80%, -50%); }
  80% { transform: translate(-20%, -50%); }
}

.character-wrong .character-mouth {
  width: 30px;
  height: 15px;
  border-radius: 15px 15px 0 0;
  border-top: 3px solid white;
  border-bottom: none;
  bottom: 32%;
}

/* Thought Bubble */
.thought-bubble {
  position: absolute;
  top: -60px;
  right: -40px;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 0.3rem;
  animation: bubblePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bubblePop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thought-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transform: scale(0.6);
}

.thought-bubble::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  transform: scale(0.4);
}

.thought-dot {
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  animation: thoughtDot 1s ease-in-out infinite;
}

.thought-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.thought-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes thoughtDot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-5px); opacity: 1; }
}

/* Speech Bubble */
.speech-bubble {
  position: absolute;
  top: -70px;
  right: -60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  animation: bubblePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 40px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #764ba2;
}

.panel-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(249, 250, 251, 0.8);
  border-radius: 1.5rem;
  padding: 1.25rem;
  padding-bottom: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.input-area {
  width: 100%;
  resize: vertical;
  min-height: 90px;
  max-height: 150px;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #1f2937;
  padding: 0.875rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.input-area::placeholder {
  color: #9ca3af;
}

.input-area:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border: none;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.primary-button:hover:not(:disabled)::before {
  opacity: 1;
}

.primary-button:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.primary-button:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.primary-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border: 2px solid rgba(102, 126, 234, 0.15);
}

.captcha-question-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-label {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
}

.captcha-label strong {
  color: #667eea;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0 0.25rem;
}

.captcha-input {
  flex: 1;
  min-width: 80px;
  max-width: 120px;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #1f2937;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  text-align: center;
}

.captcha-input::placeholder {
  color: #9ca3af;
}

.captcha-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.captcha-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f9fafb;
}

.captcha-error {
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 600;
  animation: shake 0.5s ease;
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.error-banner {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(248, 113, 113, 0.1);
  border: 2px solid rgba(248, 113, 113, 0.3);
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 600;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.output-card {
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.output-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.output-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-bottom: 2px solid #f3f4f6;
}

.output-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: white;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.icon-button:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.icon-button:active:not(:disabled) {
  transform: translateY(-1px) scale(1.05);
}

.icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Copy Icon */
.copy-btn::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 13px;
  border: 2px solid #667eea;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -55%);
}

.copy-btn::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 13px;
  border: 2px solid #667eea;
  border-radius: 2px;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -45%);
}

.copy-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
}

.copy-btn:hover:not(:disabled)::before,
.copy-btn:hover:not(:disabled)::after {
  border-color: white;
  background: transparent;
}

/* WhatsApp Icon */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 175.216 175.552'%3E%3Cpath fill='%2325D366' d='M87.184 25.227c-33.733 0-61.166 27.423-61.178 61.13a60.98 60.98 0 0 0 9.349 32.535l1.455 2.312-6.179 22.559 23.146-6.069 2.235 1.324c9.387 5.571 20.15 8.518 31.126 8.524h.023c33.707 0 61.14-27.426 61.153-61.135a60.75 60.75 0 0 0-17.895-43.251 60.75 60.75 0 0 0-43.235-17.929z'/%3E%3Cpath fill='%23FFF' d='M68.772 55.603c-1.378-3.061-2.828-3.123-4.137-3.176l-3.524-.043c-1.226 0-3.218.46-4.902 2.3s-6.435 6.287-6.435 15.332 6.588 17.785 7.506 19.013 12.718 20.381 31.405 27.75c15.529 6.124 18.689 4.906 22.061 4.6s10.877-4.447 12.408-8.74 1.532-7.971 1.073-8.74-1.685-1.226-3.525-2.146-10.877-5.367-12.562-5.981-2.91-.919-4.137.921-4.746 5.979-5.819 7.206-2.144 1.381-3.984.462-7.76-2.861-14.784-9.124c-5.465-4.873-9.154-10.891-10.228-12.73s-.114-2.835.808-3.751c.825-.824 1.838-2.147 2.759-3.22s1.224-1.84 1.836-3.065.307-2.301-.153-3.22-4.032-10.011-5.666-13.647'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.whatsapp-btn:hover:not(:disabled) {
  background: #e8f5e9;
  border-color: #25d366;
}

.whatsapp-btn:hover:not(:disabled)::before {
  transform: translate(-50%, -50%) scale(1.1);
}

.output-body {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
  min-height: 70px;
  max-height: 120px;
  width: 100%;
  border: none;
  outline: none;
  resize: vertical;
  font-family: inherit;
  background: white;
  transition: all 0.2s ease;
}

.output-body:focus:not([readonly]) {
  background: #fefefe;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1) inset;
}

.output-body[readonly] {
  cursor: default;
  color: #9ca3af;
}

.copy-feedback {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  animation: feedbackSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

@keyframes feedbackSlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Footer Styles */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.25rem 0.3rem;
  margin-top: auto;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  font-size: 0.75rem;
  color: #6b7280;
  flex-shrink: 0;
  min-height: 0;
}

.footer-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #764ba2;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-feedback {
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.2s ease;
  font-size: 0.75rem;
}

.footer-feedback:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
  transform: translateY(-2px);
}

.footer-feedback::after {
  display: none;
}

@media (max-width: 900px) {
  .panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .panel-left {
    order: 0;
    padding: 1rem;
  }

  .panel-right {
    order: 1;
  }

  .character {
    width: 120px;
    height: 120px;
  }

  .character-body {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 640px) {
  .app-root {
    padding: 1rem;
  }

  .shell {
    padding: 1rem 1rem 0.75rem;
    border-radius: 1.5rem;
  }

  .footer {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    padding: 0.4rem 0.25rem 0.2rem;
  }

  .footer-text {
    text-align: left;
    font-size: 0.65rem;
  }
  
  .footer-feedback {
    padding: 0.25rem 0.4rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .character {
    width: 100px;
    height: 100px;
  }

  .character-body {
    width: 75px;
    height: 75px;
  }

  .character-arm {
    width: 20px;
    height: 45px;
  }

  .character-eye {
    width: 12px;
    height: 12px;
  }

  .character-eye::after {
    width: 6px;
    height: 6px;
  }

  .character-mouth {
    width: 30px;
    height: 15px;
  }

  .speech-bubble,
  .thought-bubble {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    top: -50px;
    right: -30px;
  }
}
