        /* إلغاء التحديد الأزرق عند الضغط في جميع الصفحات */
        * {
          -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);
          margin: 0;
          padding: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .header {
          text-align: center;
          margin-bottom: 30px;
        }

        .header h1 {
          color: var(--main);
          margin-bottom: 5px;
        }

        .user-stats {
          background: white;
          padding: 10px 20px;
          border-radius: 50px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          color: var(--main);
          font-weight: bold;
        }

        .tasks-grid {
          width: 100%;
          max-width: 500px;
          display: grid;
          gap: 15px;
        }

        .task-card {
          background: white;
          padding: 20px;
          border-radius: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          border-right: 6px solid var(--gold);
          transition: 0.3s;
        }

        .task-info h3 {
          margin: 0;
          color: var(--main);
          font-size: 1.1rem;
        }

        .task-info p {
          margin: 5px 0 0;
          color: #777;
          font-size: 0.9rem;
        }

        .done-btn {
          background: var(--main);
          color: white;
          border: none;
          padding: 10px 20px;
          border-radius: 12px;
          cursor: pointer;
          font-weight: bold;
          transition: 0.3s;
        }

        .done-btn:active {
          transform: scale(0.9);
        }

        .done-btn:disabled {
          background: #ccc;
          cursor: not-allowed;
        }

        .back-link {
          margin-top: 30px;
          text-decoration: none;
          color: var(--main);
          font-weight: bold;
        }

