@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url("https://fonts.googleapis.com");
@import url("https://fonts.gstatic.com");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&amp;family=Plus+Jakarta+Sans:wght@400;500;600;700;800&amp;display=swap");

/* tc-scoped:tc-wp-tool-root */

.tc-wp-tool-root{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}.wpc-scope-7 .tc-wp-tool-root img, .wpc-scope-7 .tc-wp-tool-root video, .wpc-scope-7 .tc-wp-tool-root svg, .wpc-scope-7 .tc-wp-tool-root iframe{
  max-width: 100%;
  height: auto;
}.wpc-scope-7 .tc-wp-tool-root{
      --bg-deep: #f0f4ff;
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-elevated: #f1f5f9;
      --border: rgba(0, 0, 0, 0.08);
      --border-strong: rgba(0, 0, 0, 0.12);
      --text: #0f172a;
      --text-soft: #475569;
      --muted: #64748b;
      --primary: #4f46e5;
      --primary-light: #6366f1;
      --primary-soft: rgba(79, 70, 229, 0.12);
      --primary-glow: rgba(79, 70, 229, 0.25);
      --accent: #0891b2;
      --accent-soft: rgba(8, 145, 178, 0.12);
      --gold: #b45309;
      --gold-soft: rgba(245, 158, 11, 0.2);
      --success: #059669;
      --success-soft: rgba(5, 150, 105, 0.15);
      --error: #dc2626;
      --error-soft: rgba(220, 38, 38, 0.12);
      --warning: #d97706;
      --warning-soft: rgba(217, 119, 6, 0.15);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
      --radius: 20px;
      --radius-sm: 14px;
      --radius-pill: 999px;
    }.wpc-scope-7 .tc-wp-tool-root *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }.wpc-scope-7 .tc-wp-tool-root .game-wrapper{
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      background: linear-gradient(160deg, #eef2ff 0%, #f0f9ff 40%, #fefce8 100%);
      color: var(--text);
      min-height: 100vh;
      padding: 32px 20px;
      position: relative;
      overflow-x: hidden;
      -webkit-tap-highlight-color: transparent;
    }.wpc-scope-7 .tc-wp-tool-root .game-wrapper::before{
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 45% at 50% -15%, rgba(79, 70, 229, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 35% at 100% 40%, rgba(8, 145, 178, 0.12), transparent 50%),
        radial-gradient(ellipse 45% 30% at 0% 70%, rgba(245, 158, 11, 0.1), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }.wpc-scope-7 .tc-wp-tool-root .game-container{
      max-width: 940px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.6s ease-out;
      width: 100%;
    }@keyframes fadeUp{
      from {
        opacity: 0;
        transform: translateY(16px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }.wpc-scope-7 .tc-wp-tool-root .game-top-card{
      background: #fff;
      border-radius: var(--radius);
      padding: 0;
      margin-bottom: 20px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-bar{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 20px;
      flex-wrap: wrap;
      background: linear-gradient(180deg, #fafbff 0%, #f8fafc 100%);
      border-bottom: 1px solid var(--border);
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-bar-inner{
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-bar .mode-label{
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-select{
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 40px 10px 14px;
      min-width: 260px;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-select:hover{
      border-color: var(--primary);
      background-color: rgba(79, 70, 229, 0.04);
    }.wpc-scope-7 .tc-wp-tool-root .game-mode-select:focus{
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-soft);
    }.wpc-scope-7 .tc-wp-tool-root .game-header{
      text-align: center;
      margin-bottom: 32px;
    }.wpc-scope-7 .tc-wp-tool-root .game-logo{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
      box-shadow: 0 8px 24px var(--primary-glow);
    }.wpc-scope-7 .tc-wp-tool-root .game-logo svg{
      width: 30px;
      height: 30px;
      color: #fff;
    }.wpc-scope-7 .tc-wp-tool-root .game-title{
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: clamp(1.9rem, 4.5vw, 2.25rem);
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.03em;
    }.wpc-scope-7 .tc-wp-tool-root .game-subtitle{
      color: var(--text-soft);
      font-size: 1.05rem;
      font-weight: 500;
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.5;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar{
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      padding: 0;
      background: transparent;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .stat{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 18px 28px;
      min-width: 120px;
      flex: 1;
      min-width: 0;
      background: #fff;
      border-right: 1px solid var(--border);
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .stat:last-child{
      border-right: none;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .label{
      color: var(--muted);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .value{
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--primary);
      letter-spacing: -0.02em;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .value.target-name{
      color: #c2410c;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .guesses{
      color: var(--primary);
      font-size: 1.75rem;
    }.wpc-scope-7 .tc-wp-tool-root .game-bar .guesses.low{
      color: var(--error);
    }.wpc-scope-7 .tc-wp-tool-root .game-message{
      text-align: center;
      min-height: 48px;
      padding: 12px 20px;
      margin-bottom: 16px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.9375rem;
      border: 1px solid transparent;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }.wpc-scope-7 .tc-wp-tool-root .game-message.empty{
      background: transparent;
      color: transparent;
      border-color: transparent;
      min-height: 0;
      padding: 0;
      margin-bottom: 16px;
    }.wpc-scope-7 .tc-wp-tool-root .game-message.prompt{
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
      border-color: rgba(79, 70, 229, 0.2);
      color: #4338ca;
    }.wpc-scope-7 .tc-wp-tool-root .game-message.win{
      background: linear-gradient(135deg, rgba(5, 150, 105, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
      border-color: rgba(5, 150, 105, 0.35);
      color: #047857;
    }.wpc-scope-7 .tc-wp-tool-root .game-message.lose{
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.06) 100%);
      border-color: rgba(220, 38, 38, 0.3);
      color: #b91c1c;
    }.wpc-scope-7 .tc-wp-tool-root .game-message.wrong{
      background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
      border-color: rgba(217, 119, 6, 0.35);
      color: #b45309;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap{
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 28px;
      box-shadow: var(--shadow-lg);
      position: relative;
      touch-action: manipulation;
      -webkit-user-select: none;
      user-select: none;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap::after{
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap svg{
      display: block;
      width: 100%;
      height: auto;
      background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 35%, #bfdbfe 65%, #e0f2fe 100%);
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap path{
      cursor: pointer;
      fill: url(#stateFill);
      stroke: #4338ca;
      stroke-width: 1;
      transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
      touch-action: manipulation;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap path:hover{
      fill: url(#stateFillHover);
      stroke: #3730a3;
      filter: brightness(1.05);
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap path.wrong{
      fill: #f87171;
      stroke: #b91c1c;
      stroke-width: 1.25;
      cursor: default;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap path.correct{
      fill: #22c55e;
      stroke: #15803d;
      stroke-width: 1.25;
      cursor: default;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap path.wrong:hover, .wpc-scope-7 .tc-wp-tool-root .map-wrap path.correct:hover{
      filter: none;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap.game-over path{
      cursor: default;
      pointer-events: none;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap.game-over path.correct{
      fill: #22c55e;
      stroke: #15803d;
      pointer-events: auto;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap.path-highlight path.highlighted{
      fill: #f97316;
      stroke: #c2410c;
      stroke-width: 1.5;
      cursor: default;
    }.wpc-scope-7 .tc-wp-tool-root .map-wrap.path-highlight path:not(.highlighted){
      cursor: default;
      pointer-events: none;
    }.wpc-scope-7 .tc-wp-tool-root .options-panel{
      display: none;
      margin-top: 24px;
      margin-bottom: 24px;
    }.wpc-scope-7 .tc-wp-tool-root .options-panel.visible{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }.wpc-scope-7 .tc-wp-tool-root .option-btn{
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      background: #fff;
      border: 2px solid var(--border);
      border-radius: 14px;
      padding: 18px 20px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
      text-align: center;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      position: relative;
    }.wpc-scope-7 .tc-wp-tool-root .option-btn:hover:not(:disabled){
      border-color: var(--primary);
      background: rgba(79, 70, 229, 0.06);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
    }.wpc-scope-7 .tc-wp-tool-root .option-btn:disabled{
      cursor: default;
    }.wpc-scope-7 .tc-wp-tool-root .option-btn.correct{
      background: linear-gradient(135deg, rgba(5, 150, 105, 0.14) 0%, rgba(34, 197, 94, 0.1) 100%);
      border-color: #059669;
      color: #047857;
      box-shadow: 0 2px 12px rgba(5, 150, 105, 0.2);
    }.wpc-scope-7 .tc-wp-tool-root .option-btn.wrong{
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.06) 100%);
      border-color: #dc2626;
      color: #b91c1c;
      box-shadow: 0 2px 12px rgba(220, 38, 38, 0.15);
    }.wpc-scope-7 .tc-wp-tool-root .option-btn.reveal{
      background: linear-gradient(135deg, rgba(5, 150, 105, 0.14) 0%, rgba(34, 197, 94, 0.1) 100%);
      border-color: #059669;
      color: #047857;
      box-shadow: 0 2px 12px rgba(5, 150, 105, 0.2);
    }.wpc-scope-7 .tc-wp-tool-root .next-row{
      display: none;
      justify-content: center;
      margin-top: 24px;
    }.wpc-scope-7 .tc-wp-tool-root .next-row.visible{
      display: flex;
    }.wpc-scope-7 .tc-wp-tool-root .game-btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 32px;
      min-height: 48px;
      min-width: 140px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }.wpc-scope-7 .tc-wp-tool-root .game-btn:hover{
      transform: translateY(-2px);
    }.wpc-scope-7 .tc-wp-tool-root .game-btn:active{
      transform: translateY(0);
    }.wpc-scope-7 .tc-wp-tool-root .btn-primary{
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      color: #fff;
      box-shadow: 0 4px 16px var(--primary-glow);
    }.wpc-scope-7 .tc-wp-tool-root .btn-primary:hover{
      box-shadow: 0 6px 24px var(--primary-glow);
    }.wpc-scope-7 .tc-wp-tool-root .game-actions{
      text-align: center;
      margin-top: 12px;
      margin-bottom: 20px;
    }.wpc-scope-7 .tc-wp-tool-root .game-actions .game-btn{
      display: none;
      animation: fadeUp 0.4s ease-out;
    }.wpc-scope-7 .tc-wp-tool-root .game-actions .game-btn.visible{
      display: inline-flex;
    }.wpc-scope-7 .tc-wp-tool-root .congrats-overlay{
      position: fixed;
      inset: 0;
      z-index: 50;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }.wpc-scope-7 .tc-wp-tool-root .congrats-overlay.visible{
      opacity: 1;
      visibility: visible;
    }.wpc-scope-7 .tc-wp-tool-root .confetti{
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }.wpc-scope-7 .tc-wp-tool-root .confetti span{
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 2px;
      top: -10px;
      animation: confettiFall 2.8s ease-out forwards;
      opacity: 0;
    }.wpc-scope-7 .tc-wp-tool-root .congrats-overlay.visible .confetti span{
      opacity: 1;
    }@keyframes confettiFall{
      0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
      }
      100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
      }
    }@media (min-width: 1200px){.tc-wp-tool-root .game-container{
        max-width: 1140px;
      }}@media (max-width: 992px){.tc-wp-tool-root .game-wrapper{
        padding: 28px 18px;
      }.tc-wp-tool-root .game-title{
        font-size: clamp(1.8rem, 4.2vw, 2.1rem);
      }.tc-wp-tool-root .game-subtitle{
        font-size: 1rem;
      }.tc-wp-tool-root .game-mode-select{
        min-width: 240px;
      }.tc-wp-tool-root .game-bar .stat{
        padding: 16px 24px;
        min-width: 110px;
      }.tc-wp-tool-root .map-wrap{
        margin-bottom: 24px;
      }}@media (max-width: 768px){.tc-wp-tool-root .game-wrapper{
        padding: 20px 16px;
      }.tc-wp-tool-root .game-header{
        margin-bottom: 24px;
      }.tc-wp-tool-root .game-logo{
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
      }.tc-wp-tool-root .game-logo svg{
        width: 26px;
        height: 26px;
      }.tc-wp-tool-root .game-title{
        font-size: clamp(1.5rem, 5vw, 2rem);
      }.tc-wp-tool-root .game-subtitle{
        font-size: 0.95rem;
      }.tc-wp-tool-root .game-mode-bar{
        padding: 14px 16px;
      }.tc-wp-tool-root .game-mode-select{
        min-width: 100%;
      }.tc-wp-tool-root .game-bar .stat{
        padding: 14px 20px;
      }.tc-wp-tool-root .game-bar .value{
        font-size: 1.35rem;
      }.tc-wp-tool-root .game-bar .value.target-name{
        font-size: 1.2rem;
      }.tc-wp-tool-root .game-message{
        min-height: 48px;
        padding: 12px 16px;
        font-size: 0.95rem;
      }.tc-wp-tool-root .map-wrap{
        margin-bottom: 20px;
        border-radius: 16px;
      }}@media (max-width: 600px){.tc-wp-tool-root .game-wrapper{
        padding: 18px 14px;
      }.tc-wp-tool-root .game-header{
        margin-bottom: 22px;
      }.tc-wp-tool-root .game-logo{
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
      }.tc-wp-tool-root .game-logo svg{
        width: 24px;
        height: 24px;
      }.tc-wp-tool-root .game-title{
        font-size: 1.6rem;
      }.tc-wp-tool-root .game-subtitle{
        font-size: 0.92rem;
        max-width: 380px;
      }.tc-wp-tool-root .game-mode-bar{
        padding: 12px 14px;
      }.tc-wp-tool-root .game-mode-select{
        font-size: 0.875rem;
        padding: 9px 36px 9px 12px;
      }.tc-wp-tool-root .game-bar{
        flex-direction: row;
      }.tc-wp-tool-root .game-bar .stat{
        padding: 12px 16px;
        min-width: 100px;
      }.tc-wp-tool-root .game-bar .value, .tc-wp-tool-root .game-bar .value.target-name{
        font-size: 1.25rem;
      }.tc-wp-tool-root .game-message{
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.9rem;
      }.tc-wp-tool-root .map-wrap{
        margin-bottom: 18px;
        border-radius: 15px;
      }.tc-wp-tool-root .option-btn{
        padding: 16px 18px;
        font-size: 0.95rem;
      }.tc-wp-tool-root .game-btn{
        padding: 14px 28px;
        min-height: 48px;
        font-size: 0.95rem;
      }}@media (max-width: 400px){.tc-wp-tool-root .game-wrapper{
        padding: 16px 12px;
      }.tc-wp-tool-root .game-header{
        margin-bottom: 20px;
      }.tc-wp-tool-root .game-logo{
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
      }.tc-wp-tool-root .game-logo svg{
        width: 22px;
        height: 22px;
      }.tc-wp-tool-root .game-title{
        font-size: 1.5rem;
      }.tc-wp-tool-root .game-subtitle{
        font-size: 0.9rem;
        max-width: 320px;
      }.tc-wp-tool-root .game-mode-bar{
        padding: 12px 14px;
      }.tc-wp-tool-root .game-mode-select{
        min-width: 0;
        width: 100%;
        font-size: 0.85rem;
        padding: 8px 34px 8px 12px;
      }.tc-wp-tool-root .game-bar{
        flex-direction: column;
      }.tc-wp-tool-root .game-bar .stat{
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }.tc-wp-tool-root .game-bar .stat:last-child{
        border-bottom: none;
      }.tc-wp-tool-root .game-bar .label{
        font-size: 0.65rem;
      }.tc-wp-tool-root .game-bar .value, .tc-wp-tool-root .game-bar .value.target-name{
        font-size: 1.2rem;
      }.tc-wp-tool-root .game-message{
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.9rem;
      }.tc-wp-tool-root .map-wrap{
        margin-left: -4px;
        margin-right: -4px;
        border-radius: 14px;
      }.tc-wp-tool-root .map-wrap svg{
        min-height: 280px;
      }.tc-wp-tool-root .options-panel.visible{
        grid-template-columns: 1fr;
      }.tc-wp-tool-root .option-btn{
        padding: 14px 16px;
        font-size: 0.95rem;
      }.tc-wp-tool-root .game-btn{
        padding: 14px 24px;
        min-height: 48px;
        font-size: 0.95rem;
      }}@media (max-width: 375px){.tc-wp-tool-root .game-wrapper{
        padding: 14px 10px;
      }.tc-wp-tool-root .game-header{
        margin-bottom: 18px;
      }.tc-wp-tool-root .game-logo{
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
      }.tc-wp-tool-root .game-logo svg{
        width: 20px;
        height: 20px;
      }.tc-wp-tool-root .game-title{
        font-size: 1.4rem;
      }.tc-wp-tool-root .game-subtitle{
        font-size: 0.88rem;
        max-width: 300px;
      }.tc-wp-tool-root .game-mode-bar{
        padding: 10px 12px;
      }.tc-wp-tool-root .game-mode-select{
        font-size: 0.825rem;
        padding: 8px 32px 8px 10px;
      }.tc-wp-tool-root .game-bar .stat{
        padding: 12px 14px;
      }.tc-wp-tool-root .game-message{
        min-height: 42px;
        padding: 9px 12px;
        font-size: 0.88rem;
      }.tc-wp-tool-root .map-wrap{
        margin-left: -6px;
        margin-right: -6px;
        border-radius: 12px;
      }.tc-wp-tool-root .map-wrap svg{
        min-height: 260px;
      }.tc-wp-tool-root .option-btn{
        padding: 12px 14px;
        font-size: 0.9rem;
      }.tc-wp-tool-root .game-btn{
        padding: 12px 20px;
        min-height: 46px;
        font-size: 0.9rem;
      }}.wpc-scope-7 /* tc-layout-guard: stay in page body flow — do not overlap theme header/nav */
.tc-wp-tool-root{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 0 !important;
}