.game-complete { font-family: Arial, sans-serif; background: #ffffff; margin: 0; padding: 20px; display: flex; justify-content: center; }
.game {
      width: 100%;
      max-width: 420px;
    }

    .progress {
      height: 10px;
      background: #eee;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #4caf50, #81c784);
      transition: width 0.3s ease;
    }

    .sentence {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
      align-items: center;
    }

    .tag {
      padding: 8px 12px;
      border-radius: 14px;
      font-weight: bold;
      color: #fff;
      font-size: 14px;
    }

    .yesterday { background: #ff7043; }
    .today { background: #42a5f5; }
    .tomorrow { background: #66bb6a; }
    .pronoun { background: #ab47bc; }

    .blank {
      min-width: 90px;
      padding: 8px 12px;
      border: 2px dashed #ccc;
      border-radius: 14px;
      text-align: center;
      font-weight: bold;
      color: #777;
      transition: all 0.2s ease;
    }

    .blank.correct {
      border-color: #4caf50;
      background: #e8f5e9;
      color: #2e7d32;
    }

    .blank.wrong {
      border-color: #e53935;
      background: #ffebee;
      color: #b71c1c;
    }

    .options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .option {
      padding: 14px;
      border-radius: 16px;
      background: #f5f5f5;
      border: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.1s ease, background 0.2s ease;
    }

    .option:hover {
      background: #e0e0e0;
      transform: scale(1.02);
    }

    .option:disabled {
      cursor: default;
      opacity: 0.7;
    }

    .restart {
      text-align: center;
    }
