#arvopeli { all: initial; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; }
#arvopeli * { box-sizing: border-box; }

.arvo-wrap { max-width: 860px; margin: 20px auto; padding: 16px; background: linear-gradient(180deg, #fff5f6, #ffffff 40%); border: 1px solid #ffd6db; border-radius: 18px; }
.arvo-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.arvo-header h2 { all: initial; font-family: inherit; font-size: 24px; font-weight: 700; color: #222; }

.arvo-card { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 14px; margin-top: 14px; }
.arvo-choices h3 { all: initial; font-family: inherit; font-weight: 700; color: #222; display: block; margin: 0 0 10px; font-size: 16px; }
.arvo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 600px){ .arvo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.arvo-btn { appearance: none; border: 1px solid #e5e7eb; background: #fff; padding: 14px 16px; border-radius: 14px; font-size: 16px; cursor: pointer; text-align: center; transition: transform .05s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.arvo-btn:hover { background: #f9fafb; }
.arvo-btn:active { transform: translateY(1px); }
.arvo-btn-secondary { background: #fff; border-color: #e5e7eb; font-size: 14px; padding: 8px 12px; }

.arvo-result-title { font-weight: 600; color: #111; margin-bottom: 4px; }
.arvo-result-choice { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.arvo-result-text { margin: 6px 0 10px; font-size: 16px; color: #1f2937; }

.arvo-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 4px; }
.arvo-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 999px; border: 1px solid #e5e7eb; text-decoration: none; color: #111; background: #fff; }
.arvo-link:hover { background: #f9fafb; }

.arvo-actions { margin-top: 12px; }
.arvo-footer { margin-top: 12px; font-size: 12px; color: #6b7280; text-align: center; }

@media (max-width: 480px) {
  .arvo-header h2 { font-size: 20px; }
}