main[data-v-91e393] {
  flex-direction: column;
  padding: 40px 20px;
  display: flex;
}

.welcome-container[data-v-91e393] {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

h1[data-v-91e393] {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.welcome-container > p[data-v-91e393] {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sections-container[data-v-91e393] {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.sections-grid[data-v-91e393] {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  display: grid;
}

.section-card[data-v-91e393] {
  cursor: pointer;
  text-align: center;
  color: inherit;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 8px #0000000d;
}

.section-card[data-v-91e393]:hover {
  border-color: #4caf50;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #4caf5026;
}

.section-card[data-v-91e393]:active {
  transform: translateY(-2px);
}

.section-icon[data-v-91e393] {
  font-size: 3rem;
  display: block;
}

.section-card h3[data-v-91e393] {
  color: #333;
  margin: 0;
  font-size: 1.2rem;
}

.section-card p[data-v-91e393] {
  color: #666;
  margin: 0;
  font-size: .9rem;
}

@media (width <= 768px) {
  main[data-v-91e393] {
    padding: 20px;
  }

  .welcome-container[data-v-91e393] {
    margin-bottom: 30px;
  }

  h1[data-v-91e393] {
    font-size: 1.8rem;
  }

  .welcome-container > p[data-v-91e393] {
    font-size: 1rem;
  }

  .sections-grid[data-v-91e393] {
    grid-template-columns: 1fr;
  }

  .section-card[data-v-91e393] {
    padding: 20px 15px;
  }

  .section-icon[data-v-91e393] {
    font-size: 2.5rem;
  }

  .section-card h3[data-v-91e393] {
    font-size: 1.1rem;
  }
}

.family[data-v-41d807] {
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.image-container[data-v-41d807] {
  flex: 1;
  max-width: 60%;
}

.text-container[data-v-41d807] {
  flex: 1;
  max-width: 40%;
  padding-top: 20px;
}

h1[data-v-41d807] {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
}

.responsive-image[data-v-41d807] {
  width: 100%;
  height: auto;
  display: block;
}

@media (width <= 768px) {
  .family[data-v-41d807] {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .image-container[data-v-41d807], .text-container[data-v-41d807] {
    max-width: 100%;
    padding-top: 0;
  }

  .text-container[data-v-41d807] {
    padding: 0 10px;
  }

  h1[data-v-41d807] {
    text-align: center;
    font-size: 1.5rem;
  }

  p[data-v-41d807] {
    text-align: center;
    padding: 0 5px;
  }
}

main {
  padding: 20px;
}

.game-container {
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.button-container {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.results-list {
  background-color: #fffc;
  border-radius: 8px;
  flex: 1;
  margin-top: 20px;
  padding: 20px;
  box-shadow: 0 2px 4px #0000001a;
}

.results-list h3 {
  color: #4caf50;
  text-align: center;
  margin-bottom: 15px;
}

.results-list table {
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
}

.results-list th, .results-list td {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding: 12px;
}

.results-list th {
  color: #fff;
  background-color: #4caf50;
  font-weight: 500;
}

.results-list tr:hover {
  background-color: #f5f5f5;
}

.results-list tr:last-child td {
  border-bottom: none;
}

.star {
  font-size: 1.2rem;
}

@media (width <= 768px) {
  .game-container {
    flex-direction: column;
    align-items: center;
  }

  .button-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .results-list {
    width: 100%;
  }

  .results-list th, .results-list td {
    padding: 8px;
    font-size: .9rem;
  }

  .counter-button {
    margin: 0 auto;
  }
}

.counter-button {
  color: #fff;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #dc3545;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  padding: 20px;
  font-size: 2rem;
  display: flex;
}

.counter-button:hover {
  background-color: #c82333;
}

.counter-button:disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

.button-instruction {
  text-align: center;
  color: #4caf50;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.timer-text {
  color: #4caf50;
  margin-top: 15px;
  font-size: 2rem;
  font-weight: bold;
}

.no-results {
  color: #666;
  font-style: italic;
  padding: 20px !important;
}

main[data-v-2ce60f] {
  padding: 20px;
}

h1[data-v-2ce60f] {
  color: #333;
  margin-bottom: 10px;
  font-size: 2rem;
}

main > p[data-v-2ce60f] {
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}

.games-container[data-v-2ce60f] {
  margin-top: 30px;
}

h2[data-v-2ce60f] {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.games-grid[data-v-2ce60f] {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  display: grid;
}

.game-card[data-v-2ce60f] {
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 8px #0000000d;
}

.game-card[data-v-2ce60f]:hover {
  border-color: #4caf50;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px #4caf5026;
}

.game-card[data-v-2ce60f]:active {
  transform: translateY(-2px);
}

.game-icon[data-v-2ce60f] {
  font-size: 3rem;
  display: block;
}

.game-card h3[data-v-2ce60f] {
  color: #333;
  margin: 0;
  font-size: 1.2rem;
}

.game-card p[data-v-2ce60f] {
  color: #666;
  margin: 0;
  font-size: .9rem;
}

@media (width <= 768px) {
  h1[data-v-2ce60f] {
    font-size: 1.5rem;
  }

  h2[data-v-2ce60f] {
    font-size: 1.2rem;
  }

  .games-grid[data-v-2ce60f] {
    grid-template-columns: 1fr;
  }

  .game-card[data-v-2ce60f] {
    padding: 20px 15px;
  }

  .game-icon[data-v-2ce60f] {
    font-size: 2.5rem;
  }

  .game-card h3[data-v-2ce60f] {
    font-size: 1.1rem;
  }
}

main[data-v-6f4a1e] {
  padding: 10px;
}

.game-container[data-v-6f4a1e] {
  justify-content: center;
  display: flex;
}

.game-info[data-v-6f4a1e] {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  display: flex;
}

.score-board[data-v-6f4a1e] {
  gap: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
}

.score[data-v-6f4a1e], .high-score[data-v-6f4a1e] {
  color: #2ecc71;
  margin-left: 5px;
}

.canvas-wrapper[data-v-6f4a1e] {
  touch-action: none;
  justify-content: center;
  width: 100%;
  display: flex;
}

.game-canvas[data-v-6f4a1e] {
  cursor: pointer;
  background-color: #f0f0f0;
  border: 2px solid #333;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 6px #0000001a;
}

.game-buttons[data-v-6f4a1e] {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.btn[data-v-6f4a1e] {
  cursor: pointer;
  border: none;
  border-radius: 5px;
  min-width: 100px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color .3s;
}

.btn-primary[data-v-6f4a1e] {
  color: #fff;
  background-color: #2ecc71;
}

.btn-primary[data-v-6f4a1e]:hover, .btn-primary[data-v-6f4a1e]:active {
  background-color: #27ae60;
}

.btn-secondary[data-v-6f4a1e] {
  color: #fff;
  background-color: #3498db;
}

.btn-secondary[data-v-6f4a1e]:hover, .btn-secondary[data-v-6f4a1e]:active {
  background-color: #2980b9;
}

.game-over[data-v-6f4a1e] {
  color: #e74c3c;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.start-message[data-v-6f4a1e] {
  color: #7f8c8d;
  margin: 0;
  font-size: .9rem;
}

.mobile-controls[data-v-6f4a1e] {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.arrow-buttons[data-v-6f4a1e] {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.horizontal-arrows[data-v-6f4a1e] {
  gap: 10px;
  display: flex;
}

.arrow-btn[data-v-6f4a1e] {
  color: #fff;
  cursor: pointer;
  user-select: none;
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all .2s;
  display: flex;
}

.arrow-btn[data-v-6f4a1e]:hover {
  background-color: #2980b9;
  transform: scale(1.1);
}

.arrow-btn[data-v-6f4a1e]:active {
  background-color: #1a5276;
  transform: scale(.95);
}

.instructions[data-v-6f4a1e] {
  text-align: center;
  color: #7f8c8d;
  margin: 0;
  font-size: .85rem;
}

.instructions p[data-v-6f4a1e] {
  margin: 4px 0;
}

@media (width <= 768px) {
  main[data-v-6f4a1e] {
    padding: 70px 8px 8px;
  }

  .score-board[data-v-6f4a1e] {
    gap: 20px;
    font-size: 1rem;
  }

  .game-canvas[data-v-6f4a1e] {
    max-width: 100%;
  }

  .btn[data-v-6f4a1e] {
    min-width: 80px;
    padding: 10px 20px;
    font-size: .95rem;
  }

  .arrow-btn[data-v-6f4a1e] {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .instructions[data-v-6f4a1e] {
    font-size: .8rem;
  }
}

@media (width <= 480px) {
  main[data-v-6f4a1e] {
    padding: 75px 4px 4px;
  }

  h1[data-v-6f4a1e] {
    font-size: 1.2rem;
  }

  .score-board[data-v-6f4a1e] {
    flex-direction: column;
    gap: 8px;
    font-size: .9rem;
  }

  .btn[data-v-6f4a1e] {
    min-width: 70px;
    padding: 8px 16px;
    font-size: .9rem;
  }

  .arrow-btn[data-v-6f4a1e] {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }

  .horizontal-arrows[data-v-6f4a1e], .arrow-buttons[data-v-6f4a1e] {
    gap: 8px;
  }

  .instructions[data-v-6f4a1e] {
    font-size: .75rem;
  }
}

main[data-v-df6fee] {
  padding: 10px;
}

.game-container[data-v-df6fee] {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  min-height: 0;
  display: flex;
}

.captured-section[data-v-df6fee] {
  background-color: #f5f5f5;
  border: 2px solid #ccc;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  min-height: 60px;
  padding: 8px 12px;
  display: flex;
}

.captured-label[data-v-df6fee] {
  color: #333;
  white-space: nowrap;
  margin: 0;
  font-size: .75rem;
  font-weight: bold;
  line-height: 1.2;
}

.captured-list[data-v-df6fee] {
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  width: 100%;
  min-height: 32px;
  display: flex;
}

.captured-piece[data-v-df6fee] {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 2px;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
}

.black-captured[data-v-df6fee] {
  border-color: #333;
  margin-top: 8px;
}

.white-captured[data-v-df6fee] {
  border-color: #888;
  margin-bottom: 8px;
}

.game-left-column[data-v-df6fee] {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-height: 0;
  display: flex;
}

.game-right-column[data-v-df6fee] {
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  min-height: 0;
  display: flex;
}

.game-controls-panel[data-v-df6fee] {
  background-color: #f5f5f5;
  border: 2px solid #ccc;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.game-buttons[data-v-df6fee] {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  display: flex;
}

.game-status[data-v-df6fee] {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  display: flex;
}

.game-status p[data-v-df6fee] {
  text-align: center;
  margin: 0;
  font-size: .9rem;
}

.board-section[data-v-df6fee] {
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-height: 0;
  display: flex;
}

.game-status[data-v-df6fee] {
  align-items: center;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
}

.status[data-v-df6fee] {
  color: #333;
  margin: 0;
}

.check-warning[data-v-df6fee] {
  color: #ff9800;
  margin: 0;
  font-size: 1rem;
}

.checkmate-warning[data-v-df6fee] {
  color: #e74c3c;
  margin: 0;
  font-size: 1.2rem;
}

.canvas-wrapper[data-v-df6fee] {
  touch-action: none;
  flex: 1;
  justify-content: center;
  width: 100%;
  min-height: 0;
  display: flex;
}

.game-canvas[data-v-df6fee] {
  cursor: pointer;
  aspect-ratio: 1;
  background-color: #f0d9b5;
  border: 2px solid #333;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 6px #0000001a;
}

.btn[data-v-df6fee] {
  cursor: pointer;
  border: none;
  border-radius: 5px;
  min-width: 100px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color .3s;
}

.btn-primary[data-v-df6fee] {
  color: #fff;
  background-color: #27ae60;
}

.btn-primary[data-v-df6fee]:hover, .btn-primary[data-v-df6fee]:active {
  background-color: #229954;
}

.btn-secondary[data-v-df6fee] {
  color: #fff;
  background-color: #3498db;
}

.btn-secondary[data-v-df6fee]:hover, .btn-secondary[data-v-df6fee]:active {
  background-color: #2980b9;
}

.not-started-warning[data-v-df6fee] {
  color: #e67e22;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.instructions[data-v-df6fee] {
  text-align: center;
  color: #7f8c8d;
  margin: 0;
  font-size: .85rem;
}

.instructions p[data-v-df6fee] {
  margin: 4px 0;
}

.moves-panel[data-v-df6fee] {
  box-sizing: border-box;
  background-color: #f5f5f5;
  border: 2px solid #ccc;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 12px;
  display: flex;
}

.moves-panel h3[data-v-df6fee] {
  color: #333;
  flex-shrink: 0;
  margin: 0 0 10px;
  font-size: 1rem;
}

.moves-list[data-v-df6fee] {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.move-entry[data-v-df6fee] {
  color: #333;
  background-color: #fff;
  border-left: 3px solid #3498db;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  padding: 6px 8px;
  font-size: .9rem;
  display: flex;
}

.move-number[data-v-df6fee] {
  color: #666;
  min-width: 28px;
  font-weight: bold;
}

.white-move[data-v-df6fee] {
  flex: 1;
  min-width: 40px;
}

.black-move[data-v-df6fee] {
  color: #666;
  flex: 1;
  min-width: 40px;
}

.clocks-panel[data-v-df6fee] {
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  display: flex;
}

.clock[data-v-df6fee] {
  background-color: #f5f5f5;
  border: 2px solid #ccc;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 12px 24px;
  transition: all .3s;
  display: flex;
}

.clock.active[data-v-df6fee] {
  background-color: #e8f4f8;
  border-color: #3498db;
  box-shadow: 0 2px 8px #3498db4d;
}

.white-clock.active[data-v-df6fee] {
  background-color: #f5f5f5;
  border-color: #333;
}

.black-clock.active[data-v-df6fee] {
  background-color: #333;
  border-color: #333;
}

.clock-label[data-v-df6fee] {
  color: #333;
  margin: 0;
  font-size: .9rem;
  font-weight: bold;
}

.black-clock.active .clock-label[data-v-df6fee] {
  color: #fff;
}

.clock-time[data-v-df6fee] {
  color: #333;
  margin: 4px 0 0;
  font-family: Courier New, monospace;
  font-size: 1.5rem;
  font-weight: bold;
}

.black-clock.active .clock-time[data-v-df6fee] {
  color: #fff;
}

@media (width <= 1024px) {
  .game-container[data-v-df6fee] {
    flex-direction: column;
    align-items: center;
  }

  .game-right-column[data-v-df6fee] {
    width: 100%;
    min-height: 0;
  }

  .moves-panel[data-v-df6fee] {
    flex: 0 auto;
    width: 100%;
    min-height: auto;
    max-height: 300px;
  }
}

@media (width <= 768px) {
  main[data-v-df6fee] {
    padding: 70px 6px 6px;
  }

  .captured-section[data-v-df6fee] {
    min-height: 50px;
    padding: 6px 8px;
  }

  .captured-label[data-v-df6fee] {
    font-size: .65rem;
  }

  .captured-list[data-v-df6fee] {
    min-height: 28px;
  }

  .captured-piece[data-v-df6fee] {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .game-left-column[data-v-df6fee] {
    gap: 10px;
  }

  .game-controls-panel[data-v-df6fee] {
    padding: 10px;
  }

  .game-buttons[data-v-df6fee] {
    gap: 8px;
  }

  .game-status[data-v-df6fee] {
    gap: 8px;
    font-size: .85rem;
  }

  .game-status p[data-v-df6fee] {
    font-size: .85rem;
  }

  .btn[data-v-df6fee] {
    width: 100%;
    min-width: auto;
    padding: 10px 16px;
    font-size: .9rem;
  }

  .game-canvas[data-v-df6fee] {
    border: 3px solid #333;
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
  }

  .canvas-wrapper[data-v-df6fee] {
    max-height: 75vh;
    padding: 4px;
    overflow: auto;
  }

  .instructions[data-v-df6fee] {
    padding: 0 10px;
    font-size: .8rem;
  }

  .clocks-panel[data-v-df6fee] {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .clock[data-v-df6fee] {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
  }

  .clock-label[data-v-df6fee] {
    font-size: .8rem;
  }

  .clock-time[data-v-df6fee] {
    font-size: 1.2rem;
  }
}

@media (width <= 480px) {
  main[data-v-df6fee] {
    padding: 75px 4px 4px;
  }

  .game-canvas[data-v-df6fee] {
    aspect-ratio: 1;
    border: 3px solid #333;
    width: 100%;
    max-width: 100%;
    max-height: 65vh;
    box-shadow: 0 2px 4px #0003;
  }

  .canvas-wrapper[data-v-df6fee] {
    width: 100%;
    max-height: 70vh;
    padding: 2px;
    overflow: auto;
  }

  .game-buttons[data-v-df6fee] {
    width: 100%;
  }

  .btn[data-v-df6fee] {
    width: 100%;
    min-width: 100%;
    padding: 12px 16px;
    font-size: .9rem;
  }

  .instructions[data-v-df6fee] {
    padding: 0 8px;
    font-size: .7rem;
    line-height: 1.3;
  }

  .instructions p[data-v-df6fee] {
    margin: 2px 0;
  }
}

@media (width <= 768px) and (height <= 500px) and (orientation: landscape) {
  main[data-v-df6fee] {
    padding-top: 50px;
  }

  h1[data-v-df6fee] {
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .game-left-column[data-v-df6fee] {
    gap: 8px;
  }

  .game-status[data-v-df6fee] {
    gap: 4px;
    font-size: .8rem;
  }

  .game-canvas[data-v-df6fee] {
    width: 100%;
    max-height: 60vh;
  }

  .canvas-wrapper[data-v-df6fee] {
    max-height: 65vh;
  }

  .btn[data-v-df6fee] {
    min-width: 60px;
    padding: 6px 12px;
    font-size: .85rem;
  }

  .instructions[data-v-df6fee] {
    padding: 0 4px;
    font-size: .65rem;
  }

  .instructions p[data-v-df6fee] {
    margin: 1px 0;
  }
}

.menu-bar[data-v-5cd05b] {
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-sizing: border-box;
  background-color: #fffffff2;
  border-bottom: 1px solid #0000001a;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  transition: transform .3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.menu-title[data-v-5cd05b] {
  color: #333;
  letter-spacing: -.5px;
  text-align: left;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.menu-items[data-v-5cd05b] {
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  display: flex;
}

.menu-icon-btn[data-v-5cd05b] {
  cursor: pointer;
  opacity: .7;
  filter: grayscale(40%);
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.menu-icon-btn[data-v-5cd05b]:hover {
  opacity: 1;
  filter: grayscale(20%);
  background-color: #0000000f;
}

.menu-icon-btn.active[data-v-5cd05b] {
  opacity: 1;
  filter: grayscale(0%);
  background-color: #4caf5026;
}

.menu-icon-btn.active[data-v-5cd05b]:hover {
  background-color: #4caf5033;
}

.menu-divider[data-v-5cd05b] {
  background-color: #0003;
  width: 1px;
  height: 20px;
  margin: 0 4px;
}

.menu-hidden[data-v-5cd05b] {
  transform: translateY(-100%);
}

@media (width <= 768px) {
  .menu-bar[data-v-5cd05b] {
    height: 44px;
  }

  .menu-items[data-v-5cd05b] {
    gap: 16px;
  }

  .menu-icon-btn[data-v-5cd05b] {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

body {
  color: #333;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%) fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 44px;
}

@media (width <= 768px) {
  p {
    font-size: .9rem;
  }

  main {
    padding: 15px;
  }
}
/*# sourceMappingURL=index.4ebf9e4c.css.map */
