/* ==========================================================================
   THEME.CSS — Global Design System | The Isle Cheats
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ─── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --bg-main:          #07060d;
  --bg-card:          rgba(24, 20, 37, 0.72);
  --bg-card-hover:    rgba(30, 25, 50, 0.85);
  --accent-primary:   #A855F7;
  --accent-hover:     #9333EA;
  --accent-glow:      rgba(168, 85, 247, 0.35);
  --text-main:        #FFFFFF;
  --text-muted:       #A1A1AA;
  --text-body:        #d8d5e0;
  --border-color:     rgba(168, 85, 247, 0.22);
  --border-subtle:    rgba(255, 255, 255, 0.06);
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        18px;
  --radius-full:      9999px;
  --max-width:        1480px;
  --container-pad:    clamp(12px, 2.2vw, 32px);
  --section-pad-y:    clamp(52px, 6vw, 88px);
  --header-height:    72px;
  --transition:       all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:      0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-purple:    0 8px 32px rgba(168, 85, 247, 0.25);
  /* Fluid type scale */
  --fs-body:          clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --fs-h2:            clamp(1.55rem, 1.15rem + 1.8vw, 2.75rem);
  --fs-eyebrow:       clamp(0.78rem, 0.72rem + 0.35vw, 1.2rem);
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
  background: var(--bg-main);
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: var(--bg-main);
  /* Soft purple nebula atmosphere — sitewide */
  background-image:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(88, 28, 135, 0.38) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 18%, rgba(109, 40, 217, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(76, 29, 149, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(91, 33, 182, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(49, 20, 80, 0.18) 0%, transparent 70%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ─── Layout Container ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  box-sizing: border-box;
}

/* ─── Top Status Strip ────────────────────────────────────────────────────── */
.status-strip {
  background: linear-gradient(90deg,
    rgba(168, 85, 247, 0.12) 0%,
    rgba(168, 85, 247, 0.05) 50%,
    rgba(168, 85, 247, 0.12) 100%
  );
  border-bottom: 1px solid var(--border-color);
  padding: 9px 0;
}

.status-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 4px #22c55e;
  animation: pulse-green 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.78); }
}

.status-undetected { color: #22c55e; font-weight: 700; }
.status-label      { color: var(--text-muted); }
.status-value      { color: var(--text-main); font-weight: 600; }
.status-sep        { color: rgba(168, 85, 247, 0.4); }

/* ─── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(11, 9, 20, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo img { height: 34px; width: auto; }

.navbar-logo-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-menu a {
  display: block;
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--text-main);
  background: rgba(168, 85, 247, 0.12);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── Language Switcher ───────────────────────────────────────────────────── */
.lang-switcher-wrap { position: relative; }

#lang-switcher {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 28px 7px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

#lang-switcher:hover,
#lang-switcher:focus {
  border-color: var(--accent-primary);
  color: var(--text-main);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

#lang-switcher option { background: #181425; color: var(--text-main); }

/* ─── Hamburger ───────────────────────────────────────────────────────────── */
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 9px;
  color: var(--text-muted);
  transition: var(--transition);
  flex-direction: column;
  gap: 4px;
}
.navbar-toggle:hover { color: var(--text-main); border-color: rgba(168, 85, 247, 0.4); }
.hamburger-line { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #A855F7 0%, #8b3de8 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b56ef9 0%, #9333EA 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.btn-ghost:hover { border-color: var(--border-color); color: var(--text-main); }

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* ─── Section Shared ──────────────────────────────────────────────────────── */
section { padding: var(--section-pad-y) 0; }

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 56px);
}

.section-eyebrow {
  display: block;
  color: var(--accent-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-heading h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.75;
}

/* ─── Breadcrumbs ─────────────────────────────────────────────────────────── */
.breadcrumbs-bar { padding: 16px 0 0; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.breadcrumbs li a { color: var(--text-muted); }
.breadcrumbs li a:hover { color: var(--accent-primary); }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: rgba(255,255,255,0.2); font-size: 1.1rem; }
.breadcrumbs li:last-child { color: var(--text-main); font-weight: 500; }

/* ─── Tags ────────────────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tag-purple { background: rgba(168,85,247,.15); color: var(--accent-primary); border: 1px solid rgba(168,85,247,.3); }
.tag-green  { background: rgba(34,197,94,.1);  color: #22c55e;               border: 1px solid rgba(34,197,94,.25); }
.tag-blue   { background: rgba(96,165,250,.1); color: #60a5fa;               border: 1px solid rgba(96,165,250,.25); }
.tag-orange { background: rgba(249,115,22,.1); color: #f97316;               border: 1px solid rgba(249,115,22,.25); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0e0a16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 52px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: 40px 40px;
  align-items: start;
  margin-bottom: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.footer-wordmark-accent {
  color: #A855F7;
  background: linear-gradient(135deg, #A855F7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-wordmark-secondary {
  color: #ffffff;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-brand .footer-logo img { height: 30px; width: auto; }

.footer-brand > p {
  color: #8b87a0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #6a6680;
  transition: color 0.2s ease;
}
.footer-social:hover { color: #9b9ddb; }
.footer-social svg { display: block; width: 20px; height: 20px; }

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  color: #9b9ddb;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-legal,
.footer-bottom-left.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
}

.footer-legal a,
.footer-bottom-left a,
.footer-bottom-right a {
  color: #8b87a0;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover,
.footer-bottom-left a:hover,
.footer-bottom-right a:hover {
  color: #9b9ddb;
}

.footer-callout {
  color: #f59e0b;
  font-size: 0.8125rem;
  font-weight: 400;
}

.footer-copyright,
.footer-bottom-left p,
.footer-bottom-right p {
  color: #6a6680;
  font-size: 0.8125rem;
  font-weight: 400;
  margin: 0;
}

.footer-disclaimer {
  margin: 18px auto 0;
  max-width: 820px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 400;
  color: #6a6680;
  line-height: 1.6;
}

/* Legacy: disclaimer still nested in brand column on older pages */
.footer-brand .footer-disclaimer {
  margin: 0;
  text-align: left;
  max-width: 300px;
}

/* ─── Social proof action buttons ─────────────────────────────────────────── */
.social-proof-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 45%, #7c3aed 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.25),
    0 10px 28px rgba(124, 58, 237, 0.35);
  transition: var(--transition);
}
.preview-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  flex-shrink: 0;
}
.preview-btn-icon svg {
  margin-left: 2px;
}
.preview-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.35),
    0 14px 34px rgba(124, 58, 237, 0.5);
  filter: brightness(1.06);
}

.discord-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(88,101,242,.15); border: 1px solid rgba(88,101,242,.3);
  border-radius: var(--radius-md); color: #8b9ef8;
  font-size: 0.88rem; font-weight: 600; transition: var(--transition); text-decoration: none;
  line-height: 1.25; text-align: left;
}
.discord-btn svg { flex-shrink: 0; }
.discord-btn:hover { background: rgba(88,101,242,.28); color: #a5b4fc; transform: translateY(-2px); }

/* ─── RTL Support ─────────────────────────────────────────────────────────── */
[dir="rtl"] body                        { direction: rtl; text-align: right; }
[dir="rtl"] .navbar .container          { flex-direction: row-reverse; }
[dir="rtl"] .navbar-menu                { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid                { direction: rtl; }
[dir="rtl"] .footer-col ul li a:hover   { color: #ffffff; }
[dir="rtl"] .breadcrumbs                { flex-direction: row-reverse; }
[dir="rtl"] .breadcrumbs li:not(:last-child)::after { content: '‹'; }

/* ─── Responsive breakpoints ────────────────────────────────────────────────
   375  — Small mobile (iPhone SE / Galaxy Fold cover)
   430  — Standard mobile (iPhone 14/15 / Pixel)
   820  — Tablet portrait (iPad Air / Pro)
   960  — Nav collapse (hamburger)
   1100 — Footer mid layout
   1366 — Laptops / small desktops
   1920 — Ultra-wide / 4K (centered max-width, no stretch)
   ─────────────────────────────────────────────────────────────────────────── */

/* Ultra-wide / 4K — keep content centered; never stretch indefinitely */
@media (min-width: 1920px) {
  :root {
    --max-width: 1480px;
    --container-pad: 48px;
    --section-pad-y: 96px;
  }
}

/* Laptops & small desktops */
@media (max-width: 1366px) {
  :root {
    --max-width: 1280px;
    --container-pad: clamp(16px, 2vw, 28px);
    --section-pad-y: clamp(56px, 5.5vw, 80px);
  }
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: minmax(200px, 1fr) repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Nav hamburger (between tablet landscape and laptop) */
@media (max-width: 960px) {
  .navbar-menu            { display: none; }
  .navbar-toggle          { display: flex; }
  .navbar-right .btn      { display: none; }

  .navbar-menu.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: calc(var(--header-height) + 1px); left: 0; right: 0;
    background: rgba(11,9,20,.98); border-bottom: 1px solid var(--border-color);
    padding: 20px var(--container-pad); gap: 4px; z-index: 999;
    backdrop-filter: blur(24px);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .navbar-menu.is-open a { font-size: 1rem; padding: 14px 16px; min-height: 48px; }
}

/* Tablets (iPad Air / Pro portrait) */
@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --container-pad: clamp(14px, 3.5vw, 24px);
    --section-pad-y: clamp(48px, 7vw, 64px);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: 100%; }

  .status-strip .container { gap: 12px 16px; }
  .btn-lg { padding: 14px 28px; }
}

/* Standard mobile (iPhone 14/15, Pixel) */
@media (max-width: 430px) {
  :root {
    --container-pad: 14px;
    --section-pad-y: 48px;
    --header-height: 60px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-legal,
  .footer-bottom-left.footer-legal,
  .footer-bottom-right { justify-content: flex-start; }
  .status-sep { display: none; }
  .status-item { font-size: 0.7rem; }
  .navbar-logo-text { font-size: 0.62rem; letter-spacing: 0.1em; }
  #lang-switcher { font-size: 0.72rem; padding: 8px 26px 8px 8px; min-height: 40px; }
}

/* Small mobile (iPhone SE, Galaxy Fold cover) */
@media (max-width: 375px) {
  :root {
    --container-pad: 12px;
    --section-pad-y: 44px;
    --fs-h2: clamp(1.4rem, 6.5vw, 1.75rem);
  }

  .status-strip { padding: 7px 0; }
  .status-strip .container { gap: 8px 10px; justify-content: flex-start; }
  .navbar-logo img { height: 30px; }
  .btn, .btn-sm {
    min-height: 44px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ─── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 8px; }
::-webkit-scrollbar-track        { background: var(--bg-main); }
::-webkit-scrollbar-thumb        { background: rgba(168,85,247,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: rgba(168,85,247,.5); }

/* ─── Utilities ───────────────────────────────────────────────────────────── */
.text-purple  { color: var(--accent-primary) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-green   { color: #22c55e !important; }
.text-center  { text-align: center; }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }
.gradient-text {
  background: linear-gradient(135deg, #A855F7 0%, #E879F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--border-color),transparent); border: none; margin: 0; }
.icon-check { color: #22c55e; }
.icon-x     { color: #ef4444; }

/* ─── Premium Icon Box (rounded square + outline glyph) ───────────────────── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(192, 132, 252, 0.7);
  background: rgba(11, 9, 20, 0.55);
  color: #e9d5ff;
  box-shadow: none;
  flex-shrink: 0;
  transition: var(--transition);
}
.icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}
.icon-box--sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.icon-box--sm svg {
  width: 16px;
  height: 16px;
}
.icon-box--lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.icon-box--lg svg {
  width: 26px;
  height: 26px;
}
.icon-box--center {
  margin-left: auto;
  margin-right: auto;
}
