:root {
  --bg: #0a0818;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --gold: #ffd200;
  --gold2: #f7971e;
  --text: #f0eeff;
  --muted: #8888aa;
  --accent: #a855f7;
  --header-h: 62px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(
      ellipse 80% 50% at 50% -10%,
      rgba(168, 85, 247, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(247, 151, 30, 0.08) 0%,
      transparent 60%
    );
  font-family: "Nunito", sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 8, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  height: var(--header-h);
}
.brand {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 1rem;
  -webkit-text-fill-color: initial;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a {
  color: #aaaacc;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: var(--text);
  background: var(--surface2);
}
.desktop-nav .nav-cta {
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #1a0a00 !important;
  border-radius: 20px;
  padding: 7px 18px;
}
.desktop-nav .nav-cta:hover {
  opacity: 0.9;
  background: var(--surface2);
  color: var(--text) !important;
}
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-btn:hover {
  background: var(--surface2);
}
.hamburger-btn .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: slideDown 0.25s ease both;
}
.mobile-nav.open {
  display: block;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav a {
  color: #bbbbd0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 12px;
  border-radius: 10px;
  transition: all 0.18s;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--text);
  background: var(--surface2);
}
.mobile-nav .nav-cta {
  margin-top: 8px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #1a0a00 !important;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  border-bottom: none !important;
}

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 56px 20px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 210, 0, 0.1);
  border: 1px solid rgba(255, 210, 0, 0.25);
  color: var(--gold);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeDown 0.6s ease both;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--gold) 45%,
    var(--gold2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  animation: fadeDown 0.7s 0.1s ease both;
}
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 8px;
  animation: fadeDown 0.7s 0.2s ease both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 24px 0 0;
  animation: fadeDown 0.7s 0.3s ease both;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
         ★ AEO/GEO ADDITION — Quick Answer Box Styles
         The .quick-answer-box is the primary AI-extractable content block.
         It is referenced by SpeakableSpecification schema and styled to be
         immediately visible and clearly structured for both users and AI crawlers.
      ═══════════════════════════════════════════════════════════════ */
.quick-answer-section {
  padding: 0 20px 32px;
}
.quick-answer-box {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 210, 0, 0.07) 0%,
    rgba(168, 85, 247, 0.06) 100%
  );
  border: 1px solid rgba(255, 210, 0, 0.3);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.quick-answer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold), var(--accent));
  border-radius: 20px 20px 0 0;
}
.qa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.qa-icon {
  font-size: 1rem;
}
.qa-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 210, 0, 0.1);
  border: 1px solid rgba(255, 210, 0, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
}
.qa-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.quick-answer-box .speakable-definition {
  font-size: 0.95rem;
  color: #c8c8e8;
  line-height: 1.75;
  margin-bottom: 20px;
}
.qa-facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.qa-fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.84rem;
  color: #bbbbd5;
  line-height: 1.5;
}
.qa-fact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════
         ★ AEO/GEO ADDITION — GEO Definition Block Styles
      ═══════════════════════════════════════════════════════════════ */
.geo-definition-block {
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  padding: 28px 28px;
  margin: 36px 0;
}
.geo-definition-block h2 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.definition-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.def-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}
.def-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.def-item dt {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.def-item dd {
  font-size: 0.9rem;
  color: #b0b0cc;
  line-height: 1.75;
  margin: 0;
}
dfn {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
         ★ AEO/GEO ADDITION — Comparison Table Styles
      ═══════════════════════════════════════════════════════════════ */
.geo-comparison-block {
  margin: 36px 0;
}
.geo-comparison-block h2 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.geo-comparison-block > p {
  color: #b0b0cc;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table thead tr {
  background: rgba(255, 210, 0, 0.07);
  border-bottom: 1px solid rgba(255, 210, 0, 0.2);
}
.comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #bbbbd5;
  vertical-align: middle;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.comparison-table td.yes {
  color: #2ecc71;
  font-weight: 700;
}
.comparison-table td.partial {
  color: #f7971e;
  font-weight: 700;
}
.comparison-table td.no {
  color: #ff6b6b;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
         ★ AEO/GEO ADDITION — Fact Block Styles
      ═══════════════════════════════════════════════════════════════ */
.geo-fact-block {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  margin: 36px 0;
}
.geo-fact-block h2 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.geo-facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.geo-facts-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #b0b0cc;
  line-height: 1.65;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
}
.geo-facts-list li::before {
  content: "▸";
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ─── TOOL SECTION ─── */
.tool-section {
  padding: 16px 20px 48px;
}
.tool-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: flex-start;
}
.wheel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.wheel-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}
#wheel {
  border-radius: 50%;
  box-shadow:
    0 0 50px rgba(255, 210, 0, 0.22),
    0 0 100px rgba(247, 151, 30, 0.12),
    0 0 200px rgba(168, 85, 247, 0.08);
  display: block;
}
.pointer {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 44px solid var(--gold);
  filter: drop-shadow(0 0 10px var(--gold));
  z-index: 10;
}
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff 0%,
    var(--gold) 60%,
    var(--gold2) 100%
  );
  box-shadow: 0 0 24px var(--gold);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.center-circle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.spin-btn {
  padding: 16px 56px;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #1a0800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(255, 210, 0, 0.35);
  width: 100%;
  max-width: 400px;
}
.spin-btn:hover:not(:disabled) {
  transform: scale(1.06);
  box-shadow: 0 8px 36px rgba(255, 210, 0, 0.55);
}
.spin-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.result-box {
  text-align: center;
  min-height: 64px;
}
.result-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.result-value {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 210, 0, 0.5));
  word-break: break-word;
  max-width: 420px;
  display: none;
  animation: popResult 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes popResult {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.side-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 320px;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
}
.card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.entries-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 210px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 4px;
}
.entries-list::-webkit-scrollbar {
  width: 3px;
}
.entries-list::-webkit-scrollbar-thumb {
  background: rgba(255, 210, 0, 0.4);
  border-radius: 3px;
}
.entry-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.88rem;
  animation: entryIn 0.2s ease;
}
@keyframes entryIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.entry-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.entry-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.entry-del {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0 3px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.entry-del:hover {
  opacity: 1;
}
.add-row {
  display: flex;
  gap: 8px;
}
.add-row input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: "Nunito", sans-serif;
  outline: none;
  transition: border 0.2s;
}
.add-row input:focus {
  border-color: var(--gold);
}
.add-row input::placeholder {
  color: var(--muted);
}
.add-btn {
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  border: none;
  border-radius: 8px;
  color: #1a0800;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.add-btn:hover {
  transform: scale(1.08);
}
.bulk-toggle-btn {
  width: 100%;
  background: none;
  border: 1px dashed rgba(255, 210, 0, 0.3);
  color: var(--gold);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.bulk-toggle-btn:hover {
  background: rgba(255, 210, 0, 0.06);
  border-color: rgba(255, 210, 0, 0.6);
}
.bulk-area {
  display: none;
  margin-top: 10px;
}
.bulk-area.open {
  display: block;
  animation: entryIn 0.2s ease;
}
.bulk-area textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.85rem;
  font-family: "Nunito", sans-serif;
  outline: none;
  resize: vertical;
  min-height: 90px;
  transition: border 0.2s;
}
.bulk-area textarea:focus {
  border-color: var(--gold);
}
.bulk-area textarea::placeholder {
  color: var(--muted);
}
.bulk-add-btn {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(
    90deg,
    rgba(168, 85, 247, 0.25),
    rgba(168, 85, 247, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
}
.bulk-add-btn:hover {
  background: rgba(168, 85, 247, 0.3);
}
.action-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.action-btn {
  flex: 1;
  min-width: 0;
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
  text-align: center;
  white-space: nowrap;
}
.action-btn:hover {
  color: var(--text);
  border-color: rgba(255, 210, 0, 0.3);
  background: rgba(255, 210, 0, 0.05);
}
.action-btn.success {
  color: #2ecc71;
  border-color: rgba(46, 204, 113, 0.4);
}
.action-btn.share-btn {
  background: linear-gradient(
    90deg,
    rgba(255, 210, 0, 0.08),
    rgba(247, 151, 30, 0.08)
  );
  border-color: rgba(255, 210, 0, 0.3);
  color: var(--gold);
}
.action-btn.share-btn:hover {
  background: rgba(255, 210, 0, 0.15);
  color: var(--gold);
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
  font-size: 0.88rem;
}
.setting-row label:first-child {
  color: #bbbbd0;
}
.setting-row input[type="range"] {
  -webkit-appearance: none;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.setting-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.setting-row select {
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text);
  padding: 4px 8px;
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}
.toggle {
  position: relative;
  width: 40px;
  height: 21px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #444;
  border-radius: 21px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle input:checked + .toggle-slider {
  background: var(--gold);
}
.toggle input:checked + .toggle-slider::before {
  transform: translateX(19px);
}
.history-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 150px;
  overflow-y: auto;
}
.history-list::-webkit-scrollbar {
  width: 3px;
}
.history-list::-webkit-scrollbar-thumb {
  background: rgba(255, 210, 0, 0.4);
  border-radius: 3px;
}
.history-item {
  font-size: 0.82rem;
  color: #aaa;
  padding: 4px 8px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  gap: 8px;
}
.hi-num {
  color: var(--gold);
  font-weight: 700;
  min-width: 20px;
  font-size: 0.75rem;
}
.hi-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clear-history {
  margin-top: 10px;
  background: none;
  border: 1px solid rgba(255, 100, 100, 0.35);
  color: #ff7070;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
}
.clear-history:hover {
  background: rgba(255, 100, 100, 0.08);
}

.related-tools-strip {
  padding: 32px 20px 20px;
  background: linear-gradient(
    180deg,
    rgba(168, 85, 247, 0.06) 0%,
    transparent 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.related-tools-header {
  text-align: center;
  margin-bottom: 20px;
}
.related-tools-header .strip-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.related-tools-header h2 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.related-tools-header p {
  font-size: 0.82rem;
  color: var(--muted);
}
.carousel-outer {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track-wrap {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.rtool-card {
  flex: 0 0 160px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
}
.rtool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.22s;
}
.rtool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 0, 0.4);
  box-shadow: 0 10px 32px rgba(255, 210, 0, 0.1);
}
.rtool-card:hover::before {
  opacity: 1;
}
.rtool-card.featured {
  border-color: rgba(255, 210, 0, 0.3);
  background: rgba(255, 210, 0, 0.04);
}
.rtool-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: #1a0800;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rtool-icon {
  font-size: 1.9rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.rtool-card:hover .rtool-icon {
  transform: scale(1.15) rotate(-5deg);
}
.rtool-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.rtool-card span {
  font-size: 0.68rem;
  color: var(--muted);
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.carousel-arrow {
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: rgba(255, 210, 0, 0.1);
  border-color: rgba(255, 210, 0, 0.4);
  color: var(--gold);
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s;
  cursor: pointer;
}
.c-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}
.try-strip {
  max-width: 1080px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.try-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.try-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Nunito", sans-serif;
}
.try-pill:hover {
  background: rgba(255, 210, 0, 0.08);
  border-color: rgba(255, 210, 0, 0.35);
  color: var(--gold);
  transform: scale(1.04);
}

.quick-tools-section {
  padding: 56px 20px;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.section-header p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.tool-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 0, 0.3);
  box-shadow: 0 8px 30px rgba(255, 210, 0, 0.08);
}
.tool-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.tool-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.tool-card span {
  font-size: 0.73rem;
  color: var(--muted);
}

.features-section {
  padding: 72px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(255, 210, 0, 0.2);
}
.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.howto-section {
  padding: 72px 20px;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.howto-inner {
  max-width: 960px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 44px;
  counter-reset: steps;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px 22px 22px;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -16px;
  left: 22px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #1a0800;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.3);
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.usecases-section {
  padding: 72px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.usecase-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.2s;
}
.usecase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.3);
}
.uc-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.usecase-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.usecase-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.content-section {
  padding: 72px 20px;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.content-inner h2 {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--gold);
}
.content-inner h2:first-child {
  margin-top: 0;
}
.content-inner p {
  color: #b0b0cc;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-inner ul {
  list-style: none;
  margin: 10px 0 20px 0;
}
.content-inner ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #b0b0cc;
  font-size: 0.93rem;
  line-height: 1.7;
}
.content-inner ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 10px;
}
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.faq-section {
  padding: 72px 20px;
  max-width: 840px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 20px 22px;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--gold);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.testimonials-section {
  padding: 72px 20px;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: #bbbbd5;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.reviewer-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-section {
  padding: 80px 20px;
  text-align: center;
}
.cta-box {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(255, 210, 0, 0.06)
  );
  border: 1px solid rgba(255, 210, 0, 0.15);
  border-radius: 28px;
  padding: 60px 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "🎡";
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1rem;
}
.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  color: #1a0800;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(255, 210, 0, 0.3);
  border: none;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 36px rgba(255, 210, 0, 0.5);
}

footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 32px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--text);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: #0e0a1e;
  border: 1px solid rgba(255, 210, 0, 0.25);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-emoji {
  font-size: 4rem;
  margin-bottom: 14px;
  display: block;
}
.modal-title {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.modal-result {
  font-family: "Cinzel", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  word-break: break-word;
  margin-bottom: 20px;
  line-height: 1.3;
}
.modal-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.modal-close {
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  border: none;
  border-radius: 50px;
  color: #1a0800;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover {
  transform: scale(1.05);
}
.modal-remove-btn {
  background: none;
  border: 1px solid rgba(255, 100, 100, 0.4);
  color: #ff7070;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-remove-btn:hover {
  background: rgba(255, 100, 100, 0.1);
}
.share-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1440;
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #2ecc71;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.share-toast.show {
  transform: translateX(-50%) translateY(0);
}
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  width: 100vw;
  height: 100vh;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.related-wheels-section {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.related-wheels-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.75rem;
}
.related-wheels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.wheel-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.wheel-chip:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.35);
  color: #ffd700;
}
.view-all-tools {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: rgba(255, 215, 0, 0.7);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.view-all-tools:hover {
  color: #ffd700;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .side-panel {
    width: 300px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .header-inner {
    padding: 0 16px;
    justify-content: space-between;
    width: 100%;
  }
  .wheel-wrapper {
    width: 320px;
    height: 320px;
  }
  #wheel {
    width: 320px !important;
    height: 320px !important;
  }
  .tool-wrap {
    gap: 28px;
  }
  .side-panel {
    width: 100%;
    max-width: 480px;
  }
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero {
    padding: 40px 16px 16px;
  }
  .hero-stats {
    gap: 20px;
  }
  .carousel-track {
    gap: 10px;
  }
  .rtool-card {
    flex: 0 0 140px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}
@media (max-width: 600px) {
  .wheel-wrapper {
    width: 280px;
    height: 280px;
  }
  #wheel {
    width: 280px !important;
    height: 280px !important;
  }
  .pointer {
    right: -18px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 34px solid var(--gold);
  }
  .center-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .spin-btn {
    padding: 14px 32px;
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .result-value {
    font-size: 1.4rem;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid,
  .steps-grid,
  .usecases-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .cta-box h2 {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  footer {
    padding: 36px 20px 24px;
  }
  .rtool-card {
    flex: 0 0 130px;
  }
  .try-strip {
    gap: 7px;
  }
  .qa-facts-row {
    grid-template-columns: 1fr;
  }
  .quick-answer-box {
    padding: 20px;
  }
  .geo-definition-block,
  .geo-fact-block {
    padding: 20px;
  }
}
@media (max-width: 380px) {
  .wheel-wrapper {
    width: 250px;
    height: 250px;
  }
  #wheel {
    width: 250px !important;
    height: 250px !important;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tool-card {
    padding: 14px 10px;
  }
  .tool-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .brand {
    font-size: 1rem;
  }
  .rtool-card {
    flex: 0 0 120px;
  }
}
