* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none;
      }
      body,
      html {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #232526, #414345);
        font-family: "Noto Sans KR", "Segoe UI", Tahoma, sans-serif;
      }
      #gameContainer {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 20px auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        background: #111;
      }
      #header {
        text-align: center;
        padding: 10px;
        color: #fff;
      }
      #header h1 {
        font-size: 28px;
      }
      #header p {
        font-size: 16px;
        color: #ddd;
      }
      #gameCanvas {
        display: block;
        width: 100%;
        height: auto;
      }
      #scoreUI {
        position: absolute;
        top: 10px;
        left: 0px;
        background: rgba(0, 0, 0, 0.5);
        padding: 6px 12px;
        border-radius: 6px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
      }
      #gameOverUI {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        color: #fff;
      }
      #gameOverMsg {
        font-size: 22px;
        font-weight: bold;
      }
      #gameOverUI button {
        width: 120px;
        background: linear-gradient(135deg, #ff6b6b, #f06595);
        color: #fff;
        border: none;
        padding: 11px;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
      }
      #gameOverUI button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }
      #otherBtn {
        display: block;
        margin: 20px auto;
        background: linear-gradient(135deg, #4facfe, #00f2fe);
        color: #fff;
        border: none;
        padding: 20px 20px;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        width: 90%;
        max-width: 400px;
        transition: transform 0.2s, box-shadow 0.2s;
      }
      #otherBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }
      /* Sección FAQ */
      section {
        width: 90%;
        max-width: 600px;
        margin: 60px auto;
        padding: 20px;
        background: #1e1e1e;
        color: #f1f1f1;
        font-family: "Noto Sans KR", sans-serif;
        font-size: 14px;
        line-height: 1.6;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      }
      section h2 {
        font-size: 20px;
        margin-bottom: 1rem;
        color: #4facfe;
        font-family: "Noto Sans KR", sans-serif;
      }