index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Games - ArozOS</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. body {
  14. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  15. background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  16. color: #e0e0e0;
  17. min-height: 100vh;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. .header {
  24. text-align: center;
  25. margin-bottom: 40px;
  26. }
  27. .header h1 {
  28. font-size: 2.5rem;
  29. background: linear-gradient(90deg, #ffd700, #ffcc00, #ffb300);
  30. -webkit-background-clip: text;
  31. -webkit-text-fill-color: transparent;
  32. background-clip: text;
  33. margin-bottom: 10px;
  34. }
  35. .header p {
  36. font-size: 1rem;
  37. color: #888888;
  38. }
  39. .header-icon {
  40. width: 48px;
  41. height: 48px;
  42. margin: 0 auto 12px;
  43. }
  44. .header-icon svg {
  45. width: 100%;
  46. height: 100%;
  47. }
  48. .game-grid {
  49. display: grid;
  50. grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  51. gap: 20px;
  52. max-width: 800px;
  53. width: 100%;
  54. padding: 0 20px;
  55. }
  56. .game-card {
  57. background: rgba(255, 255, 255, 0.03);
  58. border: 1px solid rgba(255, 215, 0, 0.15);
  59. border-radius: 12px;
  60. padding: 24px;
  61. text-align: center;
  62. cursor: pointer;
  63. transition: transform 0.2s, box-shadow 0.2s;
  64. }
  65. .game-card:hover {
  66. transform: translateY(-4px);
  67. box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
  68. border-color: rgba(255, 215, 0, 0.5);
  69. }
  70. .game-icon {
  71. width: 48px;
  72. height: 48px;
  73. margin: 0 auto 12px;
  74. }
  75. .game-icon svg {
  76. width: 100%;
  77. height: 100%;
  78. }
  79. .game-card h3 {
  80. font-size: 1rem;
  81. margin-bottom: 6px;
  82. color: #ffffff;
  83. }
  84. .game-card p {
  85. font-size: 0.8rem;
  86. color: #888888;
  87. }
  88. .hello-banner {
  89. background: rgba(255, 215, 0, 0.08);
  90. border: 1px solid rgba(255, 215, 0, 0.25);
  91. border-radius: 8px;
  92. padding: 16px 24px;
  93. margin-bottom: 30px;
  94. text-align: center;
  95. max-width: 500px;
  96. }
  97. .hello-icon {
  98. width: 32px;
  99. height: 32px;
  100. margin: 0 auto 8px;
  101. }
  102. .hello-icon svg {
  103. width: 100%;
  104. height: 100%;
  105. }
  106. .hello-banner p {
  107. font-size: 1.1rem;
  108. color: #ffd700;
  109. }
  110. .game-card.available {
  111. border-color: rgba(255, 215, 0, 0.4);
  112. }
  113. .game-card.available:hover {
  114. box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
  115. border-color: rgba(255, 215, 0, 0.7);
  116. }
  117. .badge {
  118. display: inline-block;
  119. background: rgba(255, 215, 0, 0.15);
  120. color: #ffd700;
  121. font-size: 0.65rem;
  122. padding: 2px 6px;
  123. border-radius: 3px;
  124. margin-top: 4px;
  125. }
  126. </style>
  127. </head>
  128. <body>
  129. <div class="header">
  130. <div class="header-icon">
  131. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  132. <rect x="6" y="14" width="36" height="20" rx="10" stroke="#ffd700" stroke-width="2" fill="none"/>
  133. <circle cx="16" cy="24" r="3" fill="#ffd700"/>
  134. <circle cx="32" cy="24" r="3" fill="#ffd700"/>
  135. <line x1="10" y1="32" x2="14" y2="34" stroke="#ffd700" stroke-width="2" stroke-linecap="round"/>
  136. <line x1="34" y1="34" x2="38" y2="32" stroke="#ffd700" stroke-width="2" stroke-linecap="round"/>
  137. <line x1="18" y1="18" x2="14" y2="12" stroke="#ffd700" stroke-width="2" stroke-linecap="round"/>
  138. <line x1="30" y1="18" x2="34" y2="12" stroke="#ffd700" stroke-width="2" stroke-linecap="round"/>
  139. </svg>
  140. </div>
  141. <h1>ArozOS Mini Games</h1>
  142. <p>Select a game to start playing!</p>
  143. </div>
  144. <div class="hello-banner">
  145. <div class="hello-icon">
  146. <svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
  147. <path d="M16 2L19 12L28 12L21 18L24 28L16 22L8 28L11 18L4 12L13 12Z" stroke="#ffd700" stroke-width="1.5" fill="none"/>
  148. </svg>
  149. </div>
  150. <p>Hello World! Welcome to the Games collection. More games coming soon!</p>
  151. </div>
  152. <div class="game-grid">
  153. <div class="game-card available" onclick="window.location.href='minesweeper.html'">
  154. <div class="game-icon">
  155. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  156. <rect x="8" y="10" width="32" height="28" rx="2" stroke="#ffd700" stroke-width="2" fill="none"/>
  157. <line x1="8" y1="18" x2="40" y2="18" stroke="#ffd700" stroke-width="1.5"/>
  158. <rect x="12" y="22" width="6" height="6" rx="1" fill="#ffd700" opacity="0.3"/>
  159. <rect x="20" y="22" width="6" height="6" rx="1" fill="#ffd700" opacity="0.6"/>
  160. <rect x="28" y="22" width="6" height="6" rx="1" fill="#ffd700"/>
  161. <rect x="12" y="30" width="6" height="6" rx="1" fill="#ffd700" opacity="0.6"/>
  162. <rect x="20" y="30" width="6" height="6" rx="1" fill="#ffd700" opacity="0.3"/>
  163. <rect x="28" y="30" width="6" height="6" rx="1" fill="#ffd700" opacity="0.9"/>
  164. <circle cx="34" cy="34" r="2" fill="#ff4444"/>
  165. </svg>
  166. </div>
  167. <h3>Minesweeper</h3>
  168. <p>Find all the mines</p>
  169. <span class="badge">PLAYABLE</span>
  170. </div>
  171. <div class="game-card available" onclick="window.location.href='tetris.html'">
  172. <div class="game-icon">
  173. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  174. <rect x="6" y="6" width="8" height="8" rx="1" fill="#ffd700"/>
  175. <rect x="18" y="6" width="8" height="8" rx="1" fill="#ffd700" opacity="0.7"/>
  176. <rect x="30" y="6" width="8" height="8" rx="1" fill="#ffd700" opacity="0.4"/>
  177. <rect x="12" y="18" width="8" height="8" rx="1" fill="#ffd700" opacity="0.7"/>
  178. <rect x="24" y="18" width="8" height="8" rx="1" fill="#ffd700" opacity="0.4"/>
  179. <rect x="6" y="30" width="8" height="8" rx="1" fill="#ffd700" opacity="0.4"/>
  180. <rect x="18" y="30" width="8" height="8" rx="1" fill="#ffd700" opacity="0.7"/>
  181. <rect x="30" y="30" width="8" height="8" rx="1" fill="#ffd700" opacity="0.4"/>
  182. </svg>
  183. </div>
  184. <h3>Tetris</h3>
  185. <p>Stack the blocks</p>
  186. <span class="badge">PLAYABLE</span>
  187. </div>
  188. <div class="game-card available" onclick="window.location.href='snake.html'">
  189. <div class="game-icon">
  190. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  191. <path d="M14 32C14 32 16 20 24 16C32 12 36 20 36 20" stroke="#ffd700" stroke-width="2" fill="none"/>
  192. <path d="M36 20C36 20 38 18 38 14C38 12 36 10 34 12" stroke="#ffd700" stroke-width="2" fill="none"/>
  193. <circle cx="30" cy="14" r="1.5" fill="#ffd700"/>
  194. <circle cx="34" cy="13" r="1.5" fill="#ffd700"/>
  195. <path d="M14 32L10 38H38L34 32" stroke="#ffd700" stroke-width="2" fill="none"/>
  196. <line x1="24" y1="32" x2="24" y2="38" stroke="#ffd700" stroke-width="2"/>
  197. <line x1="18" y1="32" x2="16" y2="38" stroke="#ffd700" stroke-width="2"/>
  198. <line x1="30" y1="32" x2="32" y2="38" stroke="#ffd700" stroke-width="2"/>
  199. </svg>
  200. </div>
  201. <h3>Snake</h3>
  202. <p>Classic snake game</p>
  203. <span class="badge">PLAYABLE</span>
  204. </div>
  205. <div class="game-card available" onclick="window.location.href='memory.html'">
  206. <div class="game-icon">
  207. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  208. <rect x="6" y="6" width="14" height="14" rx="2" stroke="#ffd700" stroke-width="2" fill="none"/>
  209. <rect x="28" y="6" width="14" height="14" rx="2" stroke="#ffd700" stroke-width="2" fill="none"/>
  210. <rect x="6" y="28" width="14" height="14" rx="2" stroke="#ffd700" stroke-width="2" fill="none"/>
  211. <rect x="28" y="28" width="14" height="14" rx="2" stroke="#ffd700" stroke-width="2" fill="none"/>
  212. <circle cx="13" cy="13" r="2" fill="#ffd700"/>
  213. <circle cx="35" cy="35" r="2" fill="#ffd700"/>
  214. </svg>
  215. </div>
  216. <h3>Memory</h3>
  217. <p>Match the pairs</p>
  218. <span class="badge">PLAYABLE</span>
  219. </div>
  220. <div class="game-card available" onclick="window.location.href='pong.html'">
  221. <div class="game-icon">
  222. <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
  223. <rect x="4" y="10" width="6" height="28" rx="2" fill="#ffd700"/>
  224. <rect x="38" y="10" width="6" height="28" rx="2" fill="#ffd700" opacity="0.6"/>
  225. <circle cx="24" cy="24" r="4" fill="#ffd700"/>
  226. <line x1="24" y1="4" x2="24" y2="44" stroke="rgba(255, 215, 0, 0.3)" stroke-width="1.5" stroke-dasharray="3 3"/>
  227. </svg>
  228. </div>
  229. <h3>Pong</h3>
  230. <p>Classic pong game</p>
  231. <span class="badge">PLAYABLE</span>
  232. </div>
  233. </div>
  234. </body>
  235. </html>