@charset "UTF-8";
/**
 * Site 003: Printable Sudoku
 * Site-specific styles (extends shared/main.css)
 *
 * Theme: Purple (Puzzle/Logic)
 */

/* ========================================
   Theme Variables Override
   ======================================== */
:root {
  /* Primary colors - Purple theme for puzzles */
  --site-primary: #7a35b2;
  --site-primary-hover: #3730a3;
  --site-primary-dark: #312e81;
  --site-primary-light: #f0f9ff;
  --site-primary-border: #c7d2fe;

  /* Accent colors */
  --site-accent: #10b981;
  --site-accent-hover: #059669;
}

/* ========================================
   Global Container
   ======================================== */
.detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
  background: white;
  padding: 2.5rem 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e1e4e8;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--site-primary);
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #586069;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #d1d5da;
}

.breadcrumb a {
  color: var(--site-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--site-primary-hover);
  text-decoration: underline;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #24292e;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Puzzle Stats */
.puzzle-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #586069;
}

.stat-value {
  font-weight: 600;
  color: var(--site-primary);
}

/* ========================================
   Set Switcher
   ======================================== */
.set-switcher {
  background: linear-gradient(to bottom, #ffffff, #f6f8fa);
  padding: 1.75rem 0;
  margin-bottom: 1.5rem;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.set-switcher-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #24292e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.set-switcher-label::before {
  content: '🧩';
  font-size: 1.125rem;
}

.set-buttons {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.set-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 0.875rem;
  background: white;
  border: 1.5px solid #e1e4e8;
  border-radius: 8px;
  color: #24292e;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

.set-btn:hover {
  background: #f6f8fa;
  border-color: var(--site-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(79,70,229,0.15);
}

.set-btn.active {
  background: var(--site-primary);
  color: white;
  border-color: var(--site-primary);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}

.set-info {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(79,70,229,0.05) 0%, rgba(16,185,129,0.05) 100%);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 8px;
  text-align: center;
}

.set-info small {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.set-info strong {
  color: var(--site-primary);
  font-weight: 700;
}

/* ========================================
   Actions
   ======================================== */
.actions {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: 1.5px solid #e1e4e8;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: white;
  color: #24292e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.btn:hover {
  background: #f6f8fa;
  border-color: #d1d5da;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.btn-primary {
  background: linear-gradient(180deg, var(--site-primary) 0%, var(--site-primary-hover) 100%);
  color: white;
  border-color: var(--site-primary);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--site-primary-hover) 0%, var(--site-primary-dark) 100%);
  border-color: var(--site-primary-hover);
  box-shadow: 0 3px 8px rgba(79,70,229,0.25);
}

.btn-success {
  background: linear-gradient(180deg, var(--site-accent) 0%, var(--site-accent-hover) 100%);
  color: white;
  border-color: var(--site-accent);
}

.btn-success:hover {
  background: linear-gradient(180deg, var(--site-accent-hover) 0%, #047857 100%);
  border-color: var(--site-accent-hover);
  box-shadow: 0 3px 8px rgba(16,185,129,0.25);
}

/* ========================================
   Intro Content
   ======================================== */
.intro {
  background: linear-gradient(135deg, var(--site-primary-light) 0%, #e0e7ff 100%);
  padding: 1.75rem 0;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--site-primary-border);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 1px 3px rgba(79,70,229,0.08);
}

.intro::before {
  content: '💡';
  position: absolute;
  top: 1.75rem;
  left: -0.75rem;
  font-size: 1.5rem;
  background: white;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(79,70,229,0.15);
}

.intro p {
  color: #24292e;
  line-height: 1.7;
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
}

.intro p:last-child {
  margin-bottom: 0;
}

.intro strong {
  color: var(--site-primary);
  font-weight: 600;
}

/* ========================================
   Sudoku Grid Container
   ======================================== */
.sudoku-container {
  background: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 2px solid #e1e4e8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sudoku-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e1e4e8;
}

.sudoku-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #24292e;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sudoku-title::before {
  content: '🧩';
  font-size: 1.5rem;
}

/* ========================================
   Sudoku Grid
   ======================================== */
.sudoku-grid {
  display: grid;
  border: 3px solid #24292e;
  background: #24292e;
  gap: 1px;
}

/* Grid size classes */
.sudoku-grid.size-4 { grid-template-columns: repeat(4, 1fr); }
.sudoku-grid.size-6 { grid-template-columns: repeat(6, 1fr); }
.sudoku-grid.size-9 { grid-template-columns: repeat(9, 1fr); }
.sudoku-grid.size-16 { grid-template-columns: repeat(16, 1fr); }
.sudoku-grid.size-25 { grid-template-columns: repeat(25, 1fr); }
.sudoku-grid.size-36 { grid-template-columns: repeat(36, 1fr); }

.sudoku-cell {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-weight: 600;
  aspect-ratio: 1;
  position: relative;
}

/* Cell sizes based on grid size */
.size-4 .sudoku-cell { width: 60px; font-size: 1.75rem; }
.size-6 .sudoku-cell { width: 50px; font-size: 1.5rem; }
.size-9 .sudoku-cell { width: 44px; font-size: 1.25rem; }
.size-16 .sudoku-cell { width: 32px; font-size: 0.875rem; }
.size-25 .sudoku-cell { width: 24px; font-size: 0.625rem; }
.size-36 .sudoku-cell { width: 18px; font-size: 0.5rem; }

.sudoku-cell.given {
  color: #24292e;
  background: #f6f8fa;
}

.sudoku-cell.blank {
  color: transparent;
}

.sudoku-cell.blank::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  border-bottom: 2px solid #d1d5da;
}

/* Show answers mode */
.show-answers .sudoku-cell.blank {
  color: var(--site-primary);
  background: var(--site-primary-light);
}

.show-answers .sudoku-cell.blank::after {
  display: none;
}

/* Box borders */
.sudoku-cell.box-right {
  border-right: 2px solid #24292e;
}

.sudoku-cell.box-bottom {
  border-bottom: 2px solid #24292e;
}

/* ========================================
   Body Content
   ======================================== */
.body-content {
  background: white;
  padding: 2.5rem 0;
  margin-top: 2rem;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.body-content h2 {
  color: #24292e;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e1e4e8;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.body-content h2::before {
  content: '📚';
  font-size: 1.25rem;
}

.body-content h2:not(:first-child) {
  margin-top: 2.5rem;
}

.body-content p {
  color: #24292e;
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}

.body-content ul,
.body-content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: #24292e;
}

.body-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}

.body-content li strong {
  color: var(--site-primary);
  font-weight: 600;
}

/* ========================================
   Navigation
   ======================================== */
.page-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 2rem;
  border-top: 1px solid #e1e4e8;
  padding-top: 2rem;
}

.btn-nav {
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--site-primary);
  border: 1.5px solid #e1e4e8;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.btn-nav:hover {
  background: #f6f8fa;
  border-color: var(--site-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(79,70,229,0.15);
}

.btn-nav.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-nav.disabled:hover {
  background: white;
  border-color: #e1e4e8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.btn-nav.back-to-list {
  background: linear-gradient(180deg, var(--site-primary) 0%, var(--site-primary-hover) 100%);
  color: white;
  border-color: var(--site-primary);
}

.btn-nav.back-to-list:hover {
  background: linear-gradient(180deg, var(--site-primary-hover) 0%, var(--site-primary-dark) 100%);
  border-color: var(--site-primary-hover);
  box-shadow: 0 3px 8px rgba(79,70,229,0.25);
}

/* ========================================
   Print Styles - 已移至共享层
   打印样式在 platform/shared/assets/shared/main.css
   所有站点共享，一次调整全局生效
   ======================================== */

/* ========================================
   Homepage Styles
   ======================================== */
.homepage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.homepage .hero {
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-dark) 100%);
  color: white;
  padding: 3rem 2.5rem;
  margin: -1rem -2rem 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.homepage .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.homepage .hero h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.homepage .hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-top: 0.75rem;
  position: relative;
}

.homepage .intro {
  background: linear-gradient(135deg, var(--site-primary-light) 0%, #e0e7ff 100%);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border: 1.5px solid var(--site-primary-border);
  border-radius: 8px;
  border-left: 4px solid var(--site-primary);
}

.homepage .intro p {
  color: #24292e;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.homepage .categories {
  margin: 2.5rem 0;
}

.homepage .categories h2 {
  font-size: 1.5rem;
  color: #24292e;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e1e4e8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.homepage .categories h2::before {
  content: '🧩';
  font-size: 1.25rem;
}

.homepage .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.homepage .category-grid li a {
  display: block;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid #e1e4e8;
  position: relative;
  overflow: hidden;
}

.homepage .category-grid li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--site-primary);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.homepage .category-grid li a:hover {
  border-color: var(--site-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79,70,229,0.15);
}

.homepage .category-grid li a:hover::before {
  transform: scaleY(1);
}

.homepage .category-grid .name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #24292e;
  margin-bottom: 0.5rem;
}

.homepage .category-grid .description {
  display: block;
  font-size: 0.9rem;
  color: #586069;
  line-height: 1.5;
}

.homepage .content {
  margin: 2.5rem 0;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e1e4e8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.homepage .content h2 {
  color: #24292e;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.homepage .content p {
  color: #24292e;
  line-height: 1.7;
  margin: 0 0 1rem;
}

/* ========================================
   List Page Styles
   ======================================== */
.list-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.list-page .breadcrumb {
  margin-bottom: 1.5rem;
}

.list-page .breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #586069;
}

.list-page .breadcrumb li {
  display: flex;
  align-items: center;
}

.list-page .breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #d1d5da;
}

.list-page .breadcrumb a {
  color: var(--site-primary);
  text-decoration: none;
}

.list-page .breadcrumb a:hover {
  text-decoration: underline;
}

.list-page .page-header {
  background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-primary-dark) 100%);
  color: white;
  padding: 2rem 2.5rem;
  margin: -0.5rem -2rem 2rem;
  border-radius: 10px;
}

.list-page .page-header h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.list-page .page-header .subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.list-page .intro {
  background: linear-gradient(135deg, var(--site-primary-light) 0%, #e0e7ff 100%);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border: 1.5px solid var(--site-primary-border);
  border-radius: 8px;
  border-left: 4px solid var(--site-primary);
}

.list-page .intro p {
  color: #24292e;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.list-page .subcategories,
.list-page .content-pages {
  margin: 2rem 0;
}

.list-page .subcategories h2,
.list-page .content-pages h2 {
  font-size: 1.35rem;
  color: #24292e;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e1e4e8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list-page .subcategories h2::before {
  content: '📁';
}

.list-page .content-pages h2::before {
  content: '🧩';
}

.list-page .category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-page .category-list li a {
  display: block;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #e1e4e8;
  border-left: 4px solid var(--site-primary);
}

.list-page .category-list li a:hover {
  border-color: var(--site-primary);
  background: var(--site-primary-light);
  transform: translateX(4px);
}

.list-page .category-list .name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #24292e;
  margin-bottom: 0.35rem;
}

.list-page .category-list .description {
  display: block;
  font-size: 0.85rem;
  color: #586069;
  line-height: 1.5;
}

.list-page .worksheet-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-page .worksheet-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #e1e4e8;
  font-weight: 600;
  color: #24292e;
  font-size: 0.95rem;
}

.list-page .worksheet-list li a:hover {
  border-color: var(--site-primary);
  background: var(--site-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.2);
}

.list-page .body-content {
  margin: 2.5rem 0;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e1e4e8;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.list-page .body-content h2 {
  color: #24292e;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e1e4e8;
}

.list-page .body-content h2:not(:first-child) {
  margin-top: 2rem;
}

.list-page .body-content p {
  color: #24292e;
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.list-page .body-content ul,
.list-page .body-content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: #24292e;
}

.list-page .body-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .homepage,
  .list-page,
  .detail-page {
    padding: 0 1rem;
  }

  .homepage .hero {
    padding: 2rem 1.5rem;
    margin: -0.5rem -1rem 1.5rem;
  }

  .homepage .hero h1 {
    font-size: 1.75rem;
  }

  .homepage .category-grid {
    grid-template-columns: 1fr;
  }

  .list-page .page-header {
    padding: 1.5rem;
    margin: -0.5rem -1rem 1.5rem;
  }

  .list-page .page-header h1,
  .page-header h1 {
    font-size: 1.5rem;
  }

  .list-page .category-list {
    grid-template-columns: 1fr;
  }

  .list-page .worksheet-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.625rem;
  }

  .list-page .worksheet-list li a {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
  }

  .sudoku-container {
    padding: 1rem;
    overflow-x: auto;
  }

  .size-9 .sudoku-cell { width: 36px; font-size: 1rem; }
  .size-16 .sudoku-cell { width: 24px; font-size: 0.75rem; }
  .size-25 .sudoku-cell { width: 18px; font-size: 0.5rem; }
  .size-36 .sudoku-cell { width: 14px; font-size: 0.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   Phase 1 Interaction Styles
   ═══════════════════════════════════════════════════════════ */
.ia-resume-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid var(--ia-focus-color, #3b82f6);
  border-radius: var(--ia-radius, 8px);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.ia-resume-card span { font-weight: 500; }

.ia-grid-cell--correct,
.input-correct {
  border-color: var(--ia-success-color, #22c55e) !important;
  background: rgba(34, 197, 94, 0.08) !important;
}

.ia-grid-cell--incorrect,
.input-incorrect {
  border-color: var(--ia-error-color, #ef4444) !important;
  background: rgba(239, 68, 68, 0.08) !important;
}

.ia-game-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

@media print {
  .ia-resume-card,
  .ia-game-controls,
  .check-plugin-wrapper,
  .ia-data-panel,
  .ia-daily-challenge {
    display: none !important;
  }
}
