        /* إلغاء التحديد الأزرق عند الضغط في جميع الصفحات */
        * {
          -webkit-tap-highlight-color: transparent;
          /* للموبايل (Chrome, Safari) */
          -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
          /* زيادة تأكيد للموبايل */
        }

        /* إلغاء الإطار الأزرق (Outline) الذي يظهر عند الضغط بالماوس أو الكيبورد */
        *:focus {
          outline: none !important;
        }

        /* منع اختيار النصوص في الأزرار ليعطي إحساس تطبيق حقيقي */
        button,
        .menu-btn,
        .choice-card,
        .menu-card {
          user-select: none;
          -webkit-user-select: none;
        }

        :root {
          --main: #8e6d1c;
          --gold: #d4af37;
          --bg: #f4ece1;
        }

        body {
          font-family: 'Segoe UI', sans-serif;
          background: var(--bg);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          height: 100vh;
          margin: 0;
        }

        .challenge-card {
          background: white;
          padding: 35px 25px;
          border-radius: 25px;
          box-shadow: 0 15px 35px rgba(142, 109, 28, 0.1);
          width: 85%;
          max-width: 380px;
          text-align: center;
          border: 1px solid rgba(212, 175, 55, 0.3);
        }

        h2 {
          color: var(--main);
          margin-bottom: 30px;
          font-size: 1.8rem;
        }

        .btn-container {
          display: flex;
          flex-direction: column;
          gap: 15px;
          /* مسافة بين الأزرار */
        }

        .choice-btn {
          background: white;
          color: var(--main);
          border: 2px solid var(--gold);
          border-radius: 15px;
          padding: 18px 25px;
          font-size: 1.2rem;
          font-weight: bold;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: space-between;
          transition: all 0.3s ease;
          text-decoration: none;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        /* تأثير عند التحريك أو الضغط */
        .choice-btn:hover {
          background: #fdfaf0;
          transform: translateY(-2px);
          box-shadow: 0 6px 12px rgba(142, 109, 28, 0.1);
        }

        .choice-btn:active {
          transform: scale(0.97);
        }

        .choice-btn i {
          font-size: 1.5rem;
        }

        .back-home {
          display: inline-block;
          margin-top: 30px;
          color: var(--main);
          text-decoration: none;
          font-weight: bold;
          font-size: 0.95rem;
          opacity: 0.8;
          transition: 0.3s;
        }

        .back-home:hover {
          opacity: 1;
          text-decoration: underline;
        }
