1. <!DOCTYPE html>
  2. <html lang="tr">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Metin2 - Ejderha Krallığı</title>
  7. <style>
  8. @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Orbitron:wght@400;700;900&display=swap');
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. body {
  15. font-family: 'Cinzel', serif;
  16. overflow-x: hidden;
  17. background: #000;
  18. color: white;
  19. cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="2" fill="%23ffd700"/></svg>'), auto;
  20. }
  21. /* Sinematik Arka Plan */
  22. .cinematic-bg {
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. width: 100%;
  27. height: 100%;
  28. background:
  29. radial-gradient(ellipse at top, #1a0033 0%, transparent 50%),
  30. radial-gradient(ellipse at bottom, #330011 0%, transparent 50%),
  31. linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e, #0f3460);
  32. z-index: -3;
  33. }
  34. /* Karmaşık Parçacık Sistemi */
  35. .particle-system {
  36. position: fixed;
  37. top: 0;
  38. left: 0;
  39. width: 100%;
  40. height: 100%;
  41. z-index: -2;
  42. overflow: hidden;
  43. }
  44. .magical-orb {
  45. position: absolute;
  46. border-radius: 50%;
  47. background: radial-gradient(circle, rgba(255, 215, 0, 0.8), rgba(255, 140, 0, 0.4), transparent);
  48. box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  49. animation: float-magical 6s ease-in-out infinite;
  50. }
  51. .magical-orb:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
  52. .magical-orb:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 80%; animation-delay: -2s; }
  53. .magical-orb:nth-child(3) { width: 6px; height: 6px; top: 80%; left: 20%; animation-delay: -4s; }
  54. .magical-orb:nth-child(4) { width: 10px; height: 10px; top: 30%; left: 70%; animation-delay: -1s; }
  55. .magical-orb:nth-child(5) { width: 14px; height: 14px; top: 70%; left: 50%; animation-delay: -3s; }
  56. @keyframes float-magical {
  57. 0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  58. 25% { transform: translateY(-20px) scale(1.1); opacity: 1; }
  59. 50% { transform: translateY(-10px) scale(0.9); opacity: 0.8; }
  60. 75% { transform: translateY(-30px) scale(1.05); opacity: 0.9; }
  61. }
  62. /* Rüzgar Efekti */
  63. .wind-effect {
  64. position: absolute;
  65. width: 2px;
  66. height: 100px;
  67. background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
  68. animation: wind-blow 4s linear infinite;
  69. }
  70. .wind-effect:nth-child(6) { left: 15%; animation-delay: 0s; }
  71. .wind-effect:nth-child(7) { left: 35%; animation-delay: -1s; }
  72. .wind-effect:nth-child(8) { left: 55%; animation-delay: -2s; }
  73. .wind-effect:nth-child(9) { left: 75%; animation-delay: -0.5s; }
  74. @keyframes wind-blow {
  75. 0% { transform: translateY(100vh) rotate(10deg); opacity: 0; }
  76. 10% { opacity: 0.5; }
  77. 90% { opacity: 0.5; }
  78. 100% { transform: translateY(-100px) rotate(-10deg); opacity: 0; }
  79. }
  80. /* Merkez Aura Efekti */
  81. .center-aura {
  82. position: absolute;
  83. top: 50%;
  84. left: 50%;
  85. width: 600px;
  86. height: 600px;
  87. background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.03) 30%, transparent 70%);
  88. border-radius: 50%;
  89. transform: translate(-50%, -50%);
  90. animation: aura-pulse 8s ease-in-out infinite;
  91. z-index: -1;
  92. }
  93. @keyframes aura-pulse {
  94. 0%, 100% { transform: translate(-50%, -50%) scale(0.8) rotate(0deg); opacity: 0.3; }
  95. 25% { transform: translate(-50%, -50%) scale(1.1) rotate(90deg); opacity: 0.7; }
  96. 50% { transform: translate(-50%, -50%) scale(1.3) rotate(180deg); opacity: 0.5; }
  97. 75% { transform: translate(-50%, -50%) scale(1.0) rotate(270deg); opacity: 0.8; }
  98. }
  99. /* Ana Container */
  100. .main-container {
  101. position: relative;
  102. min-height: 100vh;
  103. display: flex;
  104. flex-direction: column;
  105. justify-content: center;
  106. align-items: center;
  107. padding: 20px;
  108. z-index: 1;
  109. }
  110. /* Dramatik Giriş Animasyonu */
  111. .dramatic-entrance {
  112. animation: dramatic-reveal 2s ease-out forwards;
  113. opacity: 0;
  114. }
  115. @keyframes dramatic-reveal {
  116. 0% {
  117. opacity: 0;
  118. transform: scale(0.5) rotateY(180deg);
  119. filter: blur(20px);
  120. }
  121. 50% {
  122. opacity: 0.5;
  123. transform: scale(1.1) rotateY(90deg);
  124. filter: blur(10px);
  125. }
  126. 100% {
  127. opacity: 1;
  128. transform: scale(1) rotateY(0deg);
  129. filter: blur(0px);
  130. }
  131. }
  132. /* Epic Logo */
  133. .logo-container {
  134. text-align: center;
  135. margin-bottom: 60px;
  136. position: relative;
  137. }
  138. .main-logo {
  139. font-family: 'Orbitron', monospace;
  140. font-size: 5rem;
  141. font-weight: 900;
  142. background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700, #ffed4e, #ffa500);
  143. background-size: 400% 400%;
  144. -webkit-background-clip: text;
  145. -webkit-text-fill-color: transparent;
  146. background-clip: text;
  147. animation: epic-glow 4s ease-in-out infinite;
  148. text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  149. position: relative;
  150. margin-bottom: 15px;
  151. letter-spacing: 3px;
  152. }
  153. .main-logo::before {
  154. content: 'METIN2';
  155. position: absolute;
  156. top: 0;
  157. left: 0;
  158. background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  159. -webkit-background-clip: text;
  160. -webkit-text-fill-color: transparent;
  161. background-clip: text;
  162. animation: shine-sweep 3s ease-in-out infinite;
  163. }
  164. @keyframes epic-glow {
  165. 0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)); }
  166. 25% { background-position: 100% 50%; filter: drop-shadow(0 0 20px rgba(255, 140, 0, 1)); }
  167. 50% { background-position: 200% 50%; filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1.2)); }
  168. 75% { background-position: 300% 50%; filter: drop-shadow(0 0 25px rgba(255, 165, 0, 1)); }
  169. }
  170. @keyframes shine-sweep {
  171. 0% { transform: translateX(-200%); }
  172. 100% { transform: translateX(200%); }
  173. }
  174. .subtitle-epic {
  175. font-size: 1.8rem;
  176. color: #ffd700;
  177. margin-bottom: 10px;
  178. font-weight: 600;
  179. text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  180. animation: subtitle-glow 3s ease-in-out infinite alternate;
  181. }
  182. @keyframes subtitle-glow {
  183. from { opacity: 0.8; transform: scale(1); }
  184. to { opacity: 1; transform: scale(1.02); }
  185. }
  186. .tagline-epic {
  187. font-size: 1rem;
  188. color: #cccccc;
  189. font-style: italic;
  190. opacity: 0.9;
  191. }
  192. /* 3D Menü Sistemi */
  193. .menu-grid {
  194. display: grid;
  195. grid-template-columns: repeat(3, 1fr);
  196. gap: 25px;
  197. max-width: 900px;
  198. width: 100%;
  199. perspective: 1000px;
  200. animation: menu-entrance 1.5s ease-out 0.8s both;
  201. }
  202. @keyframes menu-entrance {
  203. from {
  204. opacity: 0;
  205. transform: translateY(50px) rotateX(30deg);
  206. }
  207. to {
  208. opacity: 1;
  209. transform: translateY(0) rotateX(0deg);
  210. }
  211. }
  212. .menu-card {
  213. background: rgba(255, 255, 255, 0.05);
  214. border: 2px solid rgba(255, 215, 0, 0.3);
  215. border-radius: 20px;
  216. padding: 30px 20px;
  217. text-align: center;
  218. cursor: pointer;
  219. transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  220. backdrop-filter: blur(15px);
  221. position: relative;
  222. transform-style: preserve-3d;
  223. overflow: hidden;
  224. }
  225. .menu-card::before {
  226. content: '';
  227. position: absolute;
  228. top: 0;
  229. left: -100%;
  230. width: 100%;
  231. height: 100%;
  232. background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1), transparent);
  233. transition: left 0.6s ease;
  234. z-index: 1;
  235. }
  236. .menu-card::after {
  237. content: '';
  238. position: absolute;
  239. top: 50%;
  240. left: 50%;
  241. width: 0;
  242. height: 0;
  243. background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  244. border-radius: 50%;
  245. transform: translate(-50%, -50%);
  246. transition: width 0.4s ease, height 0.4s ease;
  247. z-index: 0;
  248. }
  249. .menu-card:hover::before {
  250. left: 100%;
  251. }
  252. .menu-card:hover::after {
  253. width: 300px;
  254. height: 300px;
  255. }
  256. .menu-card:hover {
  257. transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.05);
  258. border-color: #ffd700;
  259. box-shadow:
  260. 0 25px 50px rgba(255, 215, 0, 0.4),
  261. 0 0 0 1px rgba(255, 215, 0, 0.1),
  262. inset 0 1px 0 rgba(255, 255, 255, 0.1);
  263. background: rgba(255, 215, 0, 0.08);
  264. }
  265. .menu-card:active {
  266. transform: translateY(-10px) rotateX(5deg) scale(0.98);
  267. }
  268. .menu-icon-epic {
  269. font-size: 3rem;
  270. margin-bottom: 20px;
  271. display: block;
  272. position: relative;
  273. z-index: 2;
  274. transition: all 0.3s ease;
  275. filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  276. }
  277. .menu-card:hover .menu-icon-epic {
  278. transform: scale(1.1) rotateY(360deg);
  279. filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  280. }
  281. .menu-title-epic {
  282. font-size: 1.4rem;
  283. font-weight: 700;
  284. margin-bottom: 12px;
  285. color: #ffd700;
  286. position: relative;
  287. z-index: 2;
  288. transition: all 0.3s ease;
  289. }
  290. .menu-card:hover .menu-title-epic {
  291. text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  292. }
  293. .menu-desc-epic {
  294. font-size: 0.95rem;
  295. color: #cccccc;
  296. line-height: 1.5;
  297. position: relative;
  298. z-index: 2;
  299. transition: all 0.3s ease;
  300. }
  301. .menu-card:hover .menu-desc-epic {
  302. color: #ffffff;
  303. }
  304. /* Özel Büyük Kartlar */
  305. .menu-card.featured {
  306. grid-column: span 2;
  307. background: rgba(255, 215, 0, 0.05);
  308. border-color: rgba(255, 215, 0, 0.5);
  309. }
  310. .menu-card.featured .menu-title-epic {
  311. font-size: 1.6rem;
  312. }
  313. /* Alt Bilgi Alanı */
  314. .footer-section {
  315. position: absolute;
  316. bottom: 20px;
  317. width: 100%;
  318. text-align: center;
  319. color: rgba(255, 255, 255, 0.6);
  320. font-size: 0.9rem;
  321. animation: footer-fade 2s ease-out 1.5s both;
  322. }
  323. @keyframes footer-fade {
  324. from { opacity: 0; transform: translateY(20px); }
  325. to { opacity: 1; transform: translateY(0); }
  326. }
  327. /* Yanıp Sönen Efektler */
  328. .dragon-breath {
  329. position: absolute;
  330. top: 10%;
  331. right: 5%;
  332. width: 150px;
  333. height: 150px;
  334. background: radial-gradient(circle, rgba(255, 69, 0, 0.3), rgba(255, 140, 0, 0.2), transparent);
  335. border-radius: 50%;
  336. animation: dragon-breath 6s ease-in-out infinite;
  337. z-index: -1;
  338. }
  339. @keyframes dragon-breath {
  340. 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  341. 33% { transform: scale(1.3) rotate(120deg); opacity: 0.7; }
  342. 66% { transform: scale(0.8) rotate(240deg); opacity: 0.5; }
  343. }
  344. /* Responsive Tasarım */
  345. @media (max-width: 1024px) {
  346. .menu-grid {
  347. grid-template-columns: repeat(2, 1fr);
  348. max-width: 600px;
  349. }
  350. .menu-card.featured {
  351. grid-column: span 2;
  352. }
  353. }
  354. @media (max-width: 768px) {
  355. .main-logo {
  356. font-size: 3rem;
  357. }
  358. .menu-grid {
  359. grid-template-columns: 1fr;
  360. max-width: 400px;
  361. gap: 20px;
  362. }
  363. .menu-card.featured {
  364. grid-column: span 1;
  365. }
  366. .menu-card {
  367. padding: 25px 15px;
  368. }
  369. }
  370. </style>
  371. </head>
  372. <body>
  373. <div class="cinematic-bg"></div>
  374. <div class="particle-system">
  375. <div class="magical-orb"></div>
  376. <div class="magical-orb"></div>
  377. <div class="magical-orb"></div>
  378. <div class="magical-orb"></div>
  379. <div class="magical-orb"></div>
  380. <div class="wind-effect"></div>
  381. <div class="wind-effect"></div>
  382. <div class="wind-effect"></div>
  383. <div class="wind-effect"></div>
  384. </div>
  385. <div class="center-aura"></div>
  386. <div class="dragon-breath"></div>
  387. <div class="main-container">
  388. <div class="logo-container dramatic-entrance">
  389. <h1 class="main-logo">METIN2</h1>
  390. <p class="subtitle-epic">Ejderha Krallığı</p>
  391. <p class="tagline-epic">Efsane Seni Çağırıyor...</p>
  392. </div>
  393. <div class="menu-grid">
  394. <div class="menu-card featured" onclick="handleEpicClick('giris')">
  395. <span class="menu-icon-epic">🗡️</span>
  396. <h3 class="menu-title-epic">Savaşa Katıl</h3>
  397. <p class="menu-desc-epic">Hesabınla giriş yapın ve efsanevi maceranıza devam edin</p>
  398. </div>
  399. <div class="menu-card" onclick="handleEpicClick('kayit')">
  400. <span class="menu-icon-epic">⚡</span>
  401. <h3 class="menu-title-epic">Yeni Savaşçı</h3>
  402. <p class="menu-desc-epic">Krallığa katılın</p>
  403. </div>
  404. <div class="menu-card" onclick="handleEpicClick('haberler')">
  405. <span class="menu-icon-epic">📜</span>
  406. <h3 class="menu-title-epic">Krallık Haberleri</h3>
  407. <p class="menu-desc-epic">Son gelişmeler</p>
  408. </div>
  409. <div class="menu-card" onclick="handleEpicClick('rehber')">
  410. <span class="menu-icon-epic">🏰</span>
  411. <h3 class="menu-title-epic">Savaşçı Rehberi</h3>
  412. <p class="menu-desc-epic">Taktik ve strateji</p>
  413. </div>
  414. <div class="menu-card" onclick="handleEpicClick('topluluk')">
  415. <span class="menu-icon-epic">👥</span>
  416. <h3 class="menu-title-epic">Lonca</h3>
  417. <p class="menu-desc-epic">Savaşçılarla tanışın</p>
  418. </div>
  419. <div class="menu-card featured" onclick="handleEpicClick('indirme')">
  420. <span class="menu-icon-epic">⬇️</span>
  421. <h3 class="menu-title-epic">Ejderha İndirme Merkezi</h3>
  422. <p class="menu-desc-epic">Son sürümü indirin ve maceranıza başlayın</p>
  423. </div>
  424. </div>
  425. <div class="footer-section">
  426. <p>&copy; 2025 Metin2 Ejderha Krallığı | Savaşçılar İçin Tasarlandı</p>
  427. </div>
  428. </div>
  429. <script>
  430. // Gelişmiş tıklama efekti
  431. function handleEpicClick(section) {
  432. const clickedCard = event.target.closest('.menu-card');
  433. // Dramatic click effect
  434. clickedCard.style.transform = 'translateY(-10px) rotateX(5deg) scale(0.95)';
  435. clickedCard.style.filter = 'brightness(1.2) saturate(1.5)';
  436. // Particle explosion effect
  437. createParticleExplosion(event.clientX, event.clientY);
  438. setTimeout(() => {
  439. clickedCard.style.transform = '';
  440. clickedCard.style.filter = '';
  441. }, 200);
  442. // Section handling
  443. setTimeout(() => {
  444. switch(section) {
  445. case 'giris':
  446. showEpicMessage('🗡️ Savaşa Hazırlanıyorsunuz...', '#ffd700');
  447. break;
  448. case 'kayit':
  449. showEpicMessage('⚡ Yeni Savaşçı Kaydı Başlatılıyor...', '#ff8c00');
  450. break;
  451. case 'haberler':
  452. showEpicMessage('📜 Krallık Haberleri Açılıyor...', '#ffd700');
  453. break;
  454. case 'rehber':
  455. showEpicMessage('🏰 Savaşçı Rehberi Hazırlanıyor...', '#ff8c00');
  456. break;
  457. case 'topluluk':
  458. showEpicMessage('👥 Lonca Salonuna Giriş...', '#ffd700');
  459. break;
  460. case 'indirme':
  461. showEpicMessage('⬇️ Ejder İndirme Başlatılıyor...', '#ff8c00');
  462. break;
  463. }
  464. }, 300);
  465. }
  466. // Epic mesaj gösterimi
  467. function showEpicMessage(message, color) {
  468. const messageDiv = document.createElement('div');
  469. messageDiv.innerHTML = message;
  470. messageDiv.style.cssText = `
  471. position: fixed;
  472. top: 50%;
  473. left: 50%;
  474. transform: translate(-50%, -50%);
  475. background: rgba(0, 0, 0, 0.9);
  476. color: ${color};
  477. padding: 20px 40px;
  478. border-radius: 15px;
  479. font-size: 1.5rem;
  480. font-weight: bold;
  481. z-index: 9999;
  482. text-align: center;
  483. border: 2px solid ${color};
  484. box-shadow: 0 0 30px ${color}50;
  485. animation: epic-message 3s ease-out forwards;
  486. `;
  487. const style = document.createElement('style');
  488. style.textContent = `
  489. @keyframes epic-message {
  490. 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  491. 20% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
  492. 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  493. 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  494. }
  495. `;
  496. document.head.appendChild(style);
  497. document.body.appendChild(messageDiv);
  498. setTimeout(() => {
  499. document.body.removeChild(messageDiv);
  500. document.head.removeChild(style);
  501. }, 3000);
  502. }
  503. // Parçacık patlaması efekti
  504. function createParticleExplosion(x, y) {
  505. for (let i = 0; i < 15; i++) {
  506. const particle = document.createElement('div');
  507. particle.style.cssText = `
  508. position: fixed;
  509. width: 4px;
  510. height: 4px;
  511. background: #ffd700;
  512. border-radius: 50%;
  513. left: ${x}px;
  514. top: ${y}px;
  515. pointer-events: none;
  516. z-index: 9998;
  517. `;
  518. const angle = (i / 15) * Math.PI * 2;
  519. const velocity = 50 + Math.random() * 50;
  520. const vx = Math.cos(angle) * velocity;
  521. const vy = Math.sin(angle) * velocity;
  522. document.body.appendChild(particle);
  523. let opacity = 1;
  524. let px = x, py = y;
  525. const animate = () => {
  526. px += vx * 0.1;
  527. py += vy * 0.1;
  528. opacity -= 0.02;
  529. particle.style.left = px + 'px';
  530. particle.style.top = py + 'px';
  531. particle.style.opacity = opacity;
  532. if (opacity > 0) {
  533. requestAnimationFrame(animate);
  534. } else {
  535. document.body.removeChild(particle);
  536. }
  537. };
  538. animate();
  539. }
  540. }
  541. // Sayfa yüklendiğinde özel efektler
  542. window.addEventListener('load', function() {
  543. // Rastgele parçacık zamanlaması
  544. document.querySelectorAll('.magical-orb').forEach((orb, index) => {
  545. orb.style.animationDelay = `-${Math.random() * 6}s`;
  546. });
  547. // Mouse takip efekti
  548. document.addEventListener('mousemove', function(e) {
  549. const aura = document.querySelector('.center-aura');
  550. const mouseX = (e.clientX / window.innerWidth - 0.5) * 50;
  551. const mouseY = (e.clientY / window.innerHeight - 0.5) * 50;
  552. aura.style.transform = `translate(calc(-50% + ${mouseX}px), calc(-50% + ${mouseY}px)) scale(0.8)`;
  553. });
  554. // Hoş geldin efekti
  555. setTimeout(() => {
  556. showEpicMessage('🐉 Ejderha Krallığına Hoş Geldiniz!', '#ffd700');
  557. }, 2500);
  558. });
  559. </script>
  560. </body>
  561. </html>