cosmo / index.html
integ's picture
Add 2 files
6a33ab6 verified
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StellarX | Межкосмические транспортные системы</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
cosmic: {
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
},
nebula: {
100: '#f0f9ff',
200: '#e0f2fe',
300: '#bae6fd',
400: '#7dd3fc',
500: '#38bdf8',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
stardust: {
100: '#f5f3ff',
200: '#ede9fe',
300: '#ddd6fe',
400: '#c4b5fd',
500: '#a78bfa',
600: '#8b5cf6',
700: '#7c3aed',
800: '#6d28d9',
900: '#5b21b6',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
orbitron: ['Orbitron', 'sans-serif'],
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 5s infinite',
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0f172a;
color: #e2e8f0;
overflow-x: hidden;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.gradient-text {
background: linear-gradient(90deg, #38bdf8, #818cf8, #a78bfa);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.space-bg {
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}
.rocket-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3), 0 10px 10px -5px rgba(99, 102, 241, 0.1);
}
.stars {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.star {
position: absolute;
background: #fff;
border-radius: 50%;
animation: twinkle var(--duration) ease-in-out infinite;
}
@keyframes twinkle {
0%, 100% { opacity: 0.2; }
50% { opacity: 1; }
}
</style>
</head>
<body class="space-bg">
<!-- Stars background -->
<div class="stars" id="stars"></div>
<!-- Navigation -->
<nav class="relative z-50 backdrop-blur-md bg-opacity-80 bg-gray-900 border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold gradient-text font-orbitron">STELLAR<span class="text-white">X</span></span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-cosmic-700">Главная</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Ракеты</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Технологии</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Миссии</a>
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Контакты</a>
</div>
</div>
</div>
<div class="hidden md:block">
<div class="ml-4 flex items-center md:ml-6">
<button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
<span class="sr-only">Корзина</span>
<i class="fas fa-shopping-cart"></i>
</button>
<button class="ml-3 px-4 py-2 rounded-md text-sm font-medium bg-gradient-to-r from-cosmic-600 to-stardust-600 text-white hover:from-cosmic-700 hover:to-stardust-700 transition-all">
Войти
</button>
</div>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<span class="sr-only">Открыть меню</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-cosmic-700">Главная</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Ракеты</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Технологии</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Миссии</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Контакты</a>
</div>
<div class="pt-4 pb-3 border-t border-gray-700">
<div class="flex items-center px-5">
<button class="ml-auto flex-shrink-0 p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
<span class="sr-only">Корзина</span>
<i class="fas fa-shopping-cart"></i>
</button>
<button class="ml-3 px-4 py-2 rounded-md text-sm font-medium bg-gradient-to-r from-cosmic-600 to-stardust-600 text-white hover:from-cosmic-700 hover:to-stardust-700 transition-all">
Войти
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="relative z-10 text-center md:text-left">
<h1 class="text-4xl md:text-6xl font-bold font-orbitron mb-6">
<span class="gradient-text">Межзвездные</span> <br>
<span class="text-white">транспортные системы</span>
</h1>
<p class="mt-6 text-xl text-gray-300 max-w-3xl mx-auto md:mx-0">
Откройте для себя будущее космических путешествий с нашими революционными ракетными системами.
Быстро, безопасно и комфортно к любой точке галактики.
</p>
<div class="mt-10 flex flex-col sm:flex-row gap-4 justify-center md:justify-start">
<button class="px-8 py-4 rounded-lg text-lg font-medium bg-gradient-to-r from-cosmic-600 to-stardust-600 text-white hover:from-cosmic-700 hover:to-stardust-700 transition-all transform hover:scale-105 shadow-lg">
Выбрать ракету
</button>
<button class="px-8 py-4 rounded-lg text-lg font-medium bg-gray-800 text-white border border-gray-700 hover:bg-gray-700 transition-all transform hover:scale-105">
<i class="fas fa-play-circle mr-2"></i> Смотреть видео
</button>
</div>
</div>
<div class="relative mt-16 md:absolute md:right-0 md:top-1/2 md:-translate-y-1/2 md:mt-0 w-full md:w-1/2">
<div class="relative w-full h-96 md:h-[500px]">
<img src="https://images.unsplash.com/photo-1454789548928-9a90bdee35e7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Rocket"
class="absolute w-full h-full object-contain animate-float">
<div class="absolute inset-0 bg-gradient-to-r from-gray-900 via-transparent to-transparent md:bg-gradient-to-l md:from-gray-900 md:via-transparent md:to-transparent"></div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-orbitron mb-4">
<span class="gradient-text">Почему выбирают</span> <span class="text-white">StellarX?</span>
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Наши технологии превосходят все существующие аналоги по безопасности, скорости и комфорту
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700 hover:border-cosmic-500 transition-all">
<div class="w-16 h-16 rounded-full bg-cosmic-900 flex items-center justify-center mb-6">
<i class="fas fa-bolt text-2xl text-cosmic-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Скорость</h3>
<p class="text-gray-300">
Наши двигатели на антиматерии позволяют достигать 0.1 скорости света, сокращая время путешествия к ближайшим звездам до нескольких недель.
</p>
</div>
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700 hover:border-nebula-500 transition-all">
<div class="w-16 h-16 rounded-full bg-nebula-900 flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-2xl text-nebula-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Безопасность</h3>
<p class="text-gray-300">
Квантовые щиты и системы автономного управления обеспечивают 99.999% безопасность полета даже в экстремальных условиях.
</p>
</div>
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700 hover:border-stardust-500 transition-all">
<div class="w-16 h-16 rounded-full bg-stardust-900 flex items-center justify-center mb-6">
<i class="fas fa-couch text-2xl text-stardust-400"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Комфорт</h3>
<p class="text-gray-300">
Искусственная гравитация, голографические развлечения и биорегенеративные капсулы сна делают путешествие приятным и расслабляющим.
</p>
</div>
</div>
</div>
</section>
<!-- Rocket Models Section -->
<section class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-orbitron mb-4">
<span class="gradient-text">Наши</span> <span class="text-white">ракетные системы</span>
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Выберите идеальный транспорт для вашего межзвездного путешествия
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Rocket 1 -->
<div class="rocket-card bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:shadow-xl">
<div class="relative h-64">
<img src="https://images.unsplash.com/photo-1614728894747-a83421e2b9c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Voyager X1"
class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-4 left-4">
<span class="px-3 py-1 rounded-full text-xs font-semibold bg-cosmic-600 text-white">Бестселлер</span>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-2xl font-bold text-white font-orbitron">Voyager X1</h3>
<span class="text-xl font-bold text-cosmic-400">$4.2M</span>
</div>
<p class="text-gray-300 mb-4">Личный межпланетный транспорт для 2-4 пассажиров</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">0.05c</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">4 пассажира</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">10 световых лет</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">Искусственная гравитация</span>
</div>
<button class="w-full py-3 rounded-lg text-sm font-medium bg-gradient-to-r from-cosmic-600 to-stardust-600 text-white hover:from-cosmic-700 hover:to-stardust-700 transition-all">
Забронировать
</button>
</div>
</div>
<!-- Rocket 2 -->
<div class="rocket-card bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:shadow-xl">
<div class="relative h-64">
<img src="https://images.unsplash.com/photo-1502134249126-9f3755a50d78?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Galaxy Cruiser"
class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-4 left-4">
<span class="px-3 py-1 rounded-full text-xs font-semibold bg-nebula-600 text-white">Премиум</span>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-2xl font-bold text-white font-orbitron">Galaxy Cruiser</h3>
<span class="text-xl font-bold text-nebula-400">$12.8M</span>
</div>
<p class="text-gray-300 mb-4">Роскошный круизный лайнер для 12 пассажиров</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">0.08c</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">12 пассажиров</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">25 световых лет</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">Спа-комплекс</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">Ресторан</span>
</div>
<button class="w-full py-3 rounded-lg text-sm font-medium bg-gradient-to-r from-nebula-600 to-cosmic-600 text-white hover:from-nebula-700 hover:to-cosmic-700 transition-all">
Забронировать
</button>
</div>
</div>
<!-- Rocket 3 -->
<div class="rocket-card bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl overflow-hidden border border-gray-700 transition-all duration-300 hover:shadow-xl">
<div class="relative h-64">
<img src="https://images.unsplash.com/photo-1541873676-a18131494184?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80"
alt="Starlight Express"
class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="absolute bottom-4 left-4">
<span class="px-3 py-1 rounded-full text-xs font-semibold bg-stardust-600 text-white">Новинка</span>
</div>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-2xl font-bold text-white font-orbitron">Starlight Express</h3>
<span class="text-xl font-bold text-stardust-400">$8.5M</span>
</div>
<p class="text-gray-300 mb-4">Грузопассажирский транспорт для 6 пассажиров + 2 тонны груза</p>
<div class="flex flex-wrap gap-2 mb-6">
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">0.07c</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">6 пассажиров</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">15 световых лет</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">Грузовой отсек</span>
<span class="px-2 py-1 text-xs rounded bg-gray-700 text-gray-300">Лаборатория</span>
</div>
<button class="w-full py-3 rounded-lg text-sm font-medium bg-gradient-to-r from-stardust-600 to-cosmic-600 text-white hover:from-stardust-700 hover:to-cosmic-700 transition-all">
Забронировать
</button>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 rounded-lg text-lg font-medium bg-gray-800 text-white border border-gray-700 hover:bg-gray-700 transition-all">
Показать все модели <i class="fas fa-chevron-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Technology Section -->
<section class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<div class="relative h-96 w-full rounded-xl overflow-hidden border border-gray-700">
<img src="https://images.unsplash.com/photo-1457369804613-52c61a468e7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Technology"
class="w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
</div>
</div>
<div class="md:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold font-orbitron mb-6">
<span class="gradient-text">Революционные</span> <span class="text-white">технологии</span>
</h2>
<p class="text-gray-300 mb-8">
Наши ракеты оснащены передовыми технологиями, которые делают межзвездные путешествия реальностью уже сегодня.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full bg-cosmic-900 flex items-center justify-center">
<i class="fas fa-atom text-cosmic-400"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-white mb-1">Антиматериальные двигатели</h3>
<p class="text-gray-300">
В 1000 раз эффективнее традиционных термоядерных двигателей, обеспечивают беспрецедентную скорость и экономичность.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full bg-nebula-900 flex items-center justify-center">
<i class="fas fa-shield-virus text-nebula-400"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-white mb-1">Квантовые защитные поля</h3>
<p class="text-gray-300">
Защищают от космической радиации, микрометеоритов и других опасностей межзвездного пространства.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 rounded-full bg-stardust-900 flex items-center justify-center">
<i class="fas fa-brain text-stardust-400"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-white mb-1">Искусственный интеллект</h3>
<p class="text-gray-300">
Автономные системы управления с квантовыми процессорами обеспечивают безопасность и комфорт на протяжении всего полета.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold font-orbitron mb-4">
<span class="gradient-text">Отзывы</span> <span class="text-white">наших клиентов</span>
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Узнайте, что говорят первые межзвездные путешественники
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-cosmic-500 to-stardust-500 flex items-center justify-center text-white font-bold">JD</div>
<div class="ml-4">
<h4 class="text-white font-bold">John Doe</h4>
<p class="text-gray-400 text-sm">Основатель SpaceTech</p>
</div>
</div>
<p class="text-gray-300 italic">
"Путешествие на Voyager X1 превзошло все мои ожидания. От Земли до Альфы Центавра за 6 недель - это невероятно! Комфорт на высшем уровне, даже не почувствовал ускорения."
</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-nebula-500 to-cosmic-500 flex items-center justify-center text-white font-bold">ES</div>
<div class="ml-4">
<h4 class="text-white font-bold">Emma Smith</h4>
<p class="text-gray-400 text-sm">Глава Mars Colony</p>
</div>
</div>
<p class="text-gray-300 italic">
"Galaxy Cruiser - это настоящий космический отель. Спа, ресторан с видом на звезды и невероятные экскурсии на планеты по маршруту. Это не путешествие, это образ жизни!"
</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="bg-gray-800 bg-opacity-50 backdrop-blur-md rounded-xl p-8 border border-gray-700">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gradient-to-r from-stardust-500 to-nebula-500 flex items-center justify-center text-white font-bold">RJ</div>
<div class="ml-4">
<h4 class="text-white font-bold">Robert Johnson</h4>
<p class="text-gray-400 text-sm">Космический исследователь</p>
</div>
</div>
<p class="text-gray-300 italic">
"Starlight Express идеально подошел для нашей научной экспедиции. Грузовой отсек вместил все оборудование, а лаборатория на борту позволила начать исследования еще во время полета."
</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="bg-gradient-to-r from-cosmic-800 to-nebula-800 rounded-2xl p-12 text-center">
<h2 class="text-3xl md:text-4xl font-bold font-orbitron mb-6 text-white">
Готовы к своему первому межзвездному путешествию?
</h2>
<p class="text-xl text-gray-200 max-w-3xl mx-auto mb-8">
Забронируйте полет уже сегодня и получите эксклюзивный тур по нашей космической верфи!
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="px-8 py-4 rounded-lg text-lg font-medium bg-white text-gray-900 hover:bg-gray-100 transition-all transform hover:scale-105">
<i class="fas fa-calendar-alt mr-2"></i> Записаться на тур
</button>
<button class="px-8 py-4 rounded-lg text-lg font-medium bg-transparent text-white border border-white hover:bg-white hover:bg-opacity-10 transition-all transform hover:scale-105">
<i class="fas fa-phone-alt mr-2"></i> Связаться с нами
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="relative bg-gray-900 border-t border-gray-800 pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12">
<div>
<h3 class="text-2xl font-bold gradient-text font-orbitron mb-4">STELLAR<span class="text-white">X</span></h3>
<p class="text-gray-400 mb-4">
Лидер в области межзвездных транспортных технологий с 2157 года.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h4 class="text-white font-bold mb-4">Компания</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">О нас</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Карьера</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Новости</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Партнеры</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Блог</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Ресурсы</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Документация</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Техподдержка</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Сообщество</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Безопасность</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Контакты</h4>
<ul class="space-y-2">
<li class="text-gray-400"><i class="fas fa-map-marker-alt mr-2"></i> Космодром "Звездный", орбита Земли</li>
<li class="text-gray-400"><i class="fas fa-phone-alt mr-2"></i> +1 (555) STAR-TRP</li>
<li class="text-gray-400"><i class="fas fa-envelope mr-2"></i> info@stellarx.com</li>
<li class="text-gray-400"><i class="fas fa-clock mr-2"></i> 24/7</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2157 StellarX Technologies. Все права защищены.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Условия использования</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Политика конфиденциальности</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Политика cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Create stars
document.addEventListener('DOMContentLoaded', function() {
const starsContainer = document.getElementById('stars');
const starsCount = 200;
for (let i = 0; i < starsCount; i++) {
const star = document.createElement('div');
star.classList.add('star');
// Random size
const size = Math.random() * 3;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
// Random position
star.style.left = `${Math.random() * 100}%`;
star.style.top = `${Math.random() * 100}%`;
// Random animation duration
const duration = 5 + Math.random() * 10;
star.style.setProperty('--duration', `${duration}s`);
starsContainer.appendChild(star);
}
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=integ/cosmo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>