FAQ.cshtml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @{
  2. ViewData["Title"] = "Millions - FAQs";
  3. ViewData["ActiveTab"] = "FAQ";
  4. Layout = "~/Areas/Millions/Views/Shared/_Layout.cshtml";
  5. }
  6. @using LotteryWebApp.Languages;
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <link rel="stylesheet" href="/Millions/css/faq.css">
  9. <div class="main-container animate__animated animate__fadeIn bg-[#F5F5F5] min-h-screen relative flex flex-col pb-24 shadow-xl overflow-x-hidden">
  10. <!-- Header Block (Red) - Fixed -->
  11. <div class="fixed top-0 left-0 md:left-1/2 md:-translate-x-1/2 w-full md:max-w-[430px] bg-[#0062FF] h-[52px] flex items-center justify-between px-4 z-[100] shadow-sm">
  12. <!-- Back Button -->
  13. <button onclick="window.history.back()" class="w-10 h-10 flex items-center justify-center -ml-2 rounded-full active:bg-white/20 transition-colors z-10 text-white cursor-pointer">
  14. <i class="fa-solid fa-arrow-left text-[20px]"></i>
  15. </button>
  16. <!-- Title -->
  17. <div class="absolute inset-0 flex items-center justify-center pointer-events-none">
  18. <span class="text-white text-[24px] font-bold tracking-wide drop-shadow-sm">@Lang.faq</span>
  19. </div>
  20. </div>
  21. <!-- Header Spacer (~52px) -->
  22. <div class="h-[52px]"></div>
  23. <!-- Banner Graphic directly integrated with Grey background -->
  24. <div class="w-full relative flex justify-center mt-3 mb-1">
  25. <img src="/Millions/img/faq_banner_full.png" alt="FAQ Graphic" class="w-full max-h-48 object-contain z-10 px-4 pointer-events-none">
  26. </div>
  27. <!-- Messages / FAQ Chat Style List -->
  28. <div class="flex-1 w-full px-5 pt-8 pb-20 space-y-5" id="faq-list">
  29. <!-- Standard Row Bot Bubble (Question) -->
  30. <div class="flex justify-start">
  31. <div class="rounded-xl rounded-tl-sm px-5 py-3 shadow-sm w-[90%] bg-[#0062FF] text-white">
  32. <span class="text-sm font-bold leading-snug block">@Lang.faq_q1</span>
  33. </div>
  34. </div>
  35. <!-- Standard Row User Bubble (Answer) -->
  36. <div class="flex justify-end mt-2">
  37. <div class="rounded-xl rounded-tr-sm px-5 py-4 shadow-md w-[90%] bg-white text-[#212121] border border-gray-100">
  38. <span class="text-[13px] font-medium leading-relaxed block">@Lang.faq_a1</span>
  39. </div>
  40. </div>
  41. <!-- Standard Row Bot Bubble (Question) -->
  42. <div class="flex justify-start mt-8">
  43. <div class="rounded-xl rounded-tl-sm px-5 py-3 shadow-sm w-[90%] bg-[#0062FF] text-white">
  44. <span class="text-sm font-bold leading-snug block">@Lang.faq_q2</span>
  45. </div>
  46. </div>
  47. <!-- Standard Row User Bubble (Answer Long Text) -->
  48. <div class="flex justify-end mt-2">
  49. <div class="rounded-xl rounded-tr-sm px-5 py-4 shadow-md w-[90%] bg-white text-[#212121] border border-gray-100">
  50. <span class="text-[13px] font-medium leading-relaxed block mb-3">@Lang.faq_a2</span>
  51. <span class="text-sm font-bold text-[#0062FF] block mb-1">@Lang.faq_q3</span>
  52. <span class="text-[13px] font-medium leading-relaxed block">@Lang.faq_a3</span>
  53. </div>
  54. </div>
  55. <!-- Q4: BASIC PICK 10 Prizes -->
  56. <div class="flex justify-start pt-4">
  57. <div class="rounded-xl rounded-tl-sm px-5 py-3 shadow-sm w-[90%] bg-[#0062FF] text-white">
  58. <span class="text-sm font-bold leading-snug block">@Lang.faq_millions_q4</span>
  59. </div>
  60. </div>
  61. <div class="flex justify-end mt-2">
  62. <div class="rounded-xl rounded-tr-sm px-5 py-4 shadow-md w-[90%] bg-white text-[#212121] border border-gray-100">
  63. <span class="text-[13px] font-medium leading-relaxed block">@Html.Raw(Lang.faq_millions_a4)</span>
  64. </div>
  65. </div>
  66. <!-- Entries for other games removed as per request -->
  67. </div>
  68. <!-- Bottom Navbar shared component -->
  69. <partial name="_BottomNavbar" />
  70. </div>