/* CSSカスタムプロパティ（変数） */
:root {
  --primary-color: #4a90e2;
  --secondary-color: #f5f5f5;
  --accent-color: #ff6b6b;
  --text-color: #333;
  --border-color: #ddd;
  --grid-border-color: #ADD8E6;
  --header-bg: rgba(255, 255, 255, 0.95);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* リセットとベーススタイル */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-color);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ヘッダー */
.app-header {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.control-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.button-group {
  display: flex;
  gap: 8px;
}

/* コントロール要素 */
.control-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}

.control-select {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: white;
  cursor: pointer;
  transition: var(--transition);
}

.control-select:hover {
  border-color: var(--primary-color);
}

.control-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* ボタン */
.control-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: white;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.control-btn:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.control-btn:active {
  transform: translateY(0);
}

.control-btn:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.toggle-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-icon {
  font-size: 16px;
  font-weight: bold;
}

/* メインコンテンツ */
.app-main {
  position: relative;
  width: 100%;
  height: 100%;
}

/* グリッド */
.grid-container {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.cell {
  box-sizing: border-box;
  border: 1px solid var(--grid-border-color);
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: #fff;
}

.cell:hover {
  background: #f5f5f5;
}

.cell.filled {
  border-color: rgba(0, 0, 0, 0.3);
}

/* キャンバス */
.draw-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.draw-canvas.active {
  pointer-events: auto;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .app-header {
    flex-direction: column;
    gap: 15px;
    padding: 12px 15px;
  }
  
  .control-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .button-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .control-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .control-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .app-header {
    top: 5px;
    left: 5px;
    right: 5px;
    padding: 10px;
  }
  
  .control-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .btn-icon {
    font-size: 14px;
  }
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-header {
  animation: fadeIn 0.5s ease-out;
}

/* フォーカス表示の改善 */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #e0e0e0;
    --secondary-color: #2a2a2a;
    --border-color: #444;
    --header-bg: rgba(40, 40, 40, 0.95);
  }
  
  .control-select,
  .control-btn {
    background: #333;
    color: #e0e0e0;
    border-color: #555;
  }
  
  .control-btn:hover {
    background: #444;
  }
}