<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Мистические Миры - Легендарная Фэнтези RPG Игра | MRush</title>
<meta name="description" content="Погрузитесь в захватывающий мир фэнтези RPG! Эпические квесты, магические артефакты, древние тайны ждут вас в Мистических Мирах. Начните приключение сейчас!">
<meta name="keywords" content="фэнтези игра, RPG, ролевая игра, онлайн игра, мистика, приключения, квесты, магия">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Мистические Миры - Легендарная Фэнтези RPG Игра">
<meta property="og:description" content="Откройте для себя захватывающий мир магии и приключений в новой RPG игре">
<meta property="og:type" content="website">
<meta property="og:image" content="https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1200&h=630&fit=crop">
<link rel="canonical" href="http://mrush.mobi">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(0, 0, 0, 0.8);
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: #ffd700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero {
height: 100vh;
background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
}
.hero-content {
position: relative;
z-index: 2;
color: white;
max-width: 800px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
animation: fadeInUp 1s ease-out;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
animation: fadeInUp 1s ease-out 0.3s both;
}
.cta-button {
display: inline-block;
padding: 18px 40px;
background: linear-gradient(45deg, #ffd700, #ffed4e);
color: #1a1a2e;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.2rem;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
animation: fadeInUp 1s ease-out 0.6s both;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}
.features {
padding: 100px 0;
background: #1a1a2e;
}
.section-title {
text-align: center;
font-size: 2.5rem;
color: #ffd700;
margin-bottom: 50px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 50px;
}
.feature-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 40px;
border-radius: 20px;
text-align: center;
color: white;
transition: transform 0.3s ease;
border: 1px solid rgba(255, 215, 0, 0.2);
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
background: linear-gradient(45deg, #ffd700, #ffed4e);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: #1a1a2e;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: #ffd700;
}
.gallery {
padding: 100px 0;
background: #16213e;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 50px;
}
.gallery-item {
position: relative;
overflow: hidden;
border-radius: 15px;
height: 200px;
transition: transform 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.05);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.testimonials {
padding: 100px 0;
background: #0f3460;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.testimonial {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 15px;
color: white;
border-left: 4px solid #ffd700;
}
.testimonial-author {
color: #ffd700;
font-weight: bold;
margin-top: 15px;
}
.final-cta {
padding: 100px 0;
background: #1a1a2e;
text-align: center;
}
footer {
background: #000;
color: white;
text-align: center;
padding: 30px 0;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.features-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<nav class="container">
<div class="logo">⚔️ MRush Fantasy</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Мистические Миры Ждут Вас</h1>
<p>Окунитесь в захватывающий мир фэнтези RPG, где каждое решение формирует судьбу древних королевств. Станьте легендарным героем в эпическом приключении!</p>
<a href="https://mrush.mobi/?channelId=30936" class="cta-button" rel="sponsored">🎮 Начать Приключение</a>
</div>
</section>
<section class="features">
<div class="container">
<h2 class="section-title">Особенности Игры</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">⚔️</div>
<h3>Эпические Сражения</h3>
<p>Участвуйте в масштабных битвах с драконами, орками и другими мифическими существами. Развивайте боевые навыки и изучайте новые заклинания.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🏰</div>
<h3>Огромный Мир</h3>
<p>Исследуйте бескрайние территории, полные тайн и сокровищ. От заснеженных гор до тёмных подземелий - каждый уголок скрывает приключения.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🧙♂️</div>
<h3>Магическая Система</h3>
<p>Овладейте древними заклинаниями и создавайте мощные артефакты. Выберите свой путь: маг, воин или лучник - каждый класс уникален.</p>
</div>
</div>
</div>
</section>
<section class="gallery">
<div class="container">
<h2 class="section-title">Галерея Приключений</h2>
<div class="gallery-grid">
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=400&h=300&fit=crop" alt="Фэнтези замок" loading="lazy">
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1541961017774-22349e4a1262?w=400&h=300&fit=crop" alt="Магический лес" loading="lazy">
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1551972103-db0edf21e9c3?w=400&h=300&fit=crop" alt="Дракон" loading="lazy">
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=400&h=300&fit=crop" alt="Воин в доспехах" loading="lazy">
</div>
</div>
</div>
</section>
<section class="testimonials">
<div class="container">
<h2 class="section-title">Отзывы Игроков</h2>
<div class="testimonials-grid">
<div class="testimonial">
<p>"Невероятная глубина игрового мира! Я провёл сотни часов, исследуя каждый уголок этой вселенной. Графика и сюжет просто потрясающие!"</p>
<div class="testimonial-author">- Александр К., игрок с 2020 года</div>
</div>
<div class="testimonial">
<p>"Лучшая RPG игра, в которую я когда-либо играл. Система прокачки персонажа очень продуманная, а квесты всегда интересные и разнообразные."</p>
<div class="testimonial-author">- Мария С., гильдмастер</div>
</div>
<div class="testimonial">
<p>"Сообщество игроков очень дружелюбное, а разработчики постоянно добавляют новый контент. Игра не надоедает уже третий год!"</p>
<div class="testimonial-author">- Дмитрий Р., топ-игрок сервера</div>
</div>
</div>
</div>
</section>
<section class="final-cta">
<div class="container">
<h2 class="section-title">Готовы Стать Легендой?</h2>
<p style="color: white; font-size: 1.2rem; margin-bottom: 30px;">Присоединяйтесь к миллионам игроков по всему миру в самой захватывающей фэнтези RPG!</p>
<a href="https://mrush.mobi/?channelId=30936" class="cta-button" rel="sponsored">🚀 Играть Бесплатно Сейчас</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 MRush Fantasy RPG. Все права защищены. | <a href="#" style="color: #ffd700;">Политика конфиденциальности</a></p>
</div>
</footer>
<script>
// Плавная прокрутка
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Анимация при скролле
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
document.querySelectorAll('.feature-card, .testimonial').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
// Отслеживание кликов по партнёрским ссылкам
document.querySelectorAll('a[rel="sponsored"]').forEach(link => {
link.addEventListener('click', function() {
// Здесь можно добавить отслеживание аналитики
console.log('Клик по партнёрской ссылке:', this.href);
});
});
</script>
</body>
</html>