File: /var/www/www-root/data/www/sunmoon.click/meet/ex1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoveConnect - Find Your Soulmate</title>
<link rel="stylesheet" href="/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--primary: #ff4b7d;
--secondary: #6a11cb;
--accent: #ff8e53;
--dark: #333;
--light: #f8f9fa;
--gray: #6c757d;
}
body {
background-color: var(--light);
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, var(--secondary), var(--primary));
color: white;
padding: 15px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
display: flex;
align-items: center;
}
.logo i {
margin-right: 10px;
font-size: 2rem;
}
.language-switcher {
display: flex;
gap: 10px;
}
.language-switcher a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 8px 15px;
border-radius: 20px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.2);
}
.language-switcher a:hover, .language-switcher a.active {
background: rgba(255, 255, 255, 0.4);
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--secondary), var(--primary));
color: white;
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
background-size: cover;
background-position: center;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero p {
font-size: 1.3rem;
margin-bottom: 30px;
opacity: 0.9;
}
/* УПРОЩЕННАЯ КНОПКА - просто текстовая ссылка */
.simple-link {
color: white;
font-size: 1.4rem;
font-weight: 700;
text-decoration: underline;
display: inline-block;
margin: 20px 0;
background: transparent;
padding: 0;
border: none;
cursor: pointer;
}
.simple-link:hover {
color: #ff0;
}
/* Альтернативный вариант - если нужна кнопка но простая */
.simple-button {
display: inline-block;
background: white;
color: var(--primary);
padding: 12px 30px;
font-size: 1.4rem;
font-weight: 700;
text-decoration: none;
border-radius: 5px; /* Простые углы вместо круглых */
margin: 20px 0;
border: 2px solid white;
cursor: pointer;
}
.simple-button:hover {
background: transparent;
color: white;
}
/* Features Section */
.features {
padding: 100px 0;
background: white;
}
.section-title {
text-align: center;
margin-bottom: 60px;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--dark);
margin-bottom: 15px;
}
.section-title p {
color: var(--gray);
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.feature-card {
background: var(--light);
border-radius: 15px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
}
.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: white;
font-size: 2rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark);
}
.feature-card p {
color: var(--gray);
}
/* Testimonials */
.testimonials {
padding: 100px 0;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.testimonial-card {
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-content {
font-style: italic;
margin-bottom: 20px;
color: var(--dark);
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--accent));
margin-right: 15px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
}
.author-info h4 {
font-size: 1.1rem;
margin-bottom: 5px;
}
.author-info p {
color: var(--gray);
font-size: 0.9rem;
}
/* How It Works */
.how-it-works {
padding: 100px 0;
background: white;
}
.steps {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 50px;
}
.step {
flex: 1;
min-width: 200px;
text-align: center;
padding: 0 20px;
position: relative;
}
.step:not(:last-child)::after {
content: '';
position: absolute;
top: 40px;
right: -10px;
width: 50%;
height: 2px;
background: linear-gradient(to right, var(--primary), var(--accent));
}
.step-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: white;
font-size: 1.8rem;
font-weight: bold;
}
.step h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--dark);
}
.step p {
color: var(--gray);
}
/* Final CTA */
.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, var(--secondary), var(--primary));
color: white;
text-align: center;
}
.final-cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.final-cta p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 40px;
opacity: 0.9;
}
/* Footer */
footer {
background: var(--dark);
color: white;
padding: 60px 0 30px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-column h3 {
font-size: 1.3rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}
.footer-column h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: var(--primary);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: #bbb;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: white;
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid #444;
color: #bbb;
font-size: 0.9rem;
}
/* Mobile Styles */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.simple-link, .simple-button {
font-size: 1.2rem;
padding: 10px 20px;
width: 100%;
text-align: center;
}
.steps {
flex-direction: column;
gap: 40px;
}
.step:not(:last-child)::after {
display: none;
}
.language-switcher {
flex-direction: column;
gap: 5px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<i class="fas fa-heart"></i>
LoveConnect
</div>
<div class="language-switcher">
<a href="#" class="lang-ru">RU</a>
<a href="#" class="lang-en active">EN</a>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>Find Your Soulmate</h1>
<p>LoveConnect is a modern dating platform where thousands of lonely hearts find their love. Join our community today!</p>
<!-- ВАРИАНТ 1: Самая простая текстовая ссылка (подчеркнутая) -->
<a href="" class="simple-link">START DATING FOR FREE →</a>
<!-- ВАРИАНТ 2: Простая кнопка без сложных эффектов (раскомментируйте если нужен этот вариант) -->
<!-- <a href="" class="simple-button">START DATING FOR FREE</a> -->
<!-- ВАРИАНТ 3: Самый простой вариант - обычная ссылка -->
<!-- <a href="" style="color: white; font-weight: bold;">START DATING FOR FREE</a> -->
</div>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<div class="section-title">
<h2>Why Choose LoveConnect</h2>
<p>We created the perfect platform for finding serious relationships</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-users"></i>
</div>
<h3>Large Audience</h3>
<p>Over 500,000 active users across the country. Find someone with common interests and values.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Security</h3>
<p>All profiles are verified by moderators. Your personal data is protected and not shared with third parties.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-brain"></i>
</div>
<h3>Smart Matching</h3>
<p>Our algorithm analyzes your interests and preferences to suggest the most suitable partners.</p>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="how-it-works">
<div class="container">
<div class="section-title">
<h2>How It Works</h2>
<p>Just 4 simple steps to meet your soulmate</p>
</div>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<h3>Create Profile</h3>
<p>Register and tell about yourself, your interests and preferences in a partner.</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Find Matches</h3>
<p>Our algorithm will match you with people with similar interests and relationship goals.</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>Communicate</h3>
<p>Start chatting with people you like through our secure messenger.</p>
</div>
<div class="step">
<div class="step-number">4</div>
<h3>Meet Up</h3>
<p>Arrange a meeting in real life and start a new relationship.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="testimonials">
<div class="container">
<div class="section-title">
<h2>Success Stories</h2>
<p>Thousands of couples have already found their love thanks to LoveConnect</p>
</div>
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="testimonial-content">
"I had almost lost hope of finding a serious relationship until I registered on LoveConnect. A month later I met Andrew, and now we are planning a wedding!"
</div>
<div class="testimonial-author">
<div class="author-avatar">AS</div>
<div class="author-info">
<h4>Anna S.</h4>
<p>In a relationship for 1 year</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
"After moving to a new city, it was difficult to find new friends, let alone relationships. LoveConnect helped me not only find love but also expand my social circle."
</div>
<div class="testimonial-author">
<div class="author-avatar">MK</div>
<div class="author-info">
<h4>Maxim K.</h4>
<p>In a relationship for 8 months</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
"My husband and I met here 3 years ago. At first we just communicated as friends, but gradually we realized that we had found a kindred spirit in each other. Thank you LoveConnect!"
</div>
<div class="testimonial-author">
<div class="author-avatar">OL</div>
<div class="author-info">
<h4>Olga L.</h4>
<p>Married for 2 years</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="final-cta">
<div class="container">
<h2>Join LoveConnect Today</h2>
<p>Start your journey to a happy relationship right now. Registration takes only 2 minutes and is completely free.</p>
<!-- ВАРИАНТ 1: Самая простая текстовая ссылка -->
<a href="https://92orb.com/link?z=9417679&var=ex-pop&ymid={CLICK_ID}" class="simple-link">CREATE PROFILE →</a>
<!-- ВАРИАНТ 2: Простая кнопка -->
<!-- <a href="https://92orb.com/link?z=9417679&var=ex-pop&ymid={CLICK_ID}" class="simple-button">CREATE PROFILE</a> -->
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column">
<h3>LoveConnect</h3>
<p>A modern dating platform for finding serious relationships. We help people find love since 2018.</p>
</div>
<div class="footer-column">
<h3>Navigation</h3>
<ul class="footer-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Premium</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Legal Information</h3>
<ul class="footer-links">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Community Rules</a></li>
<li><a href="#">Cookie</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contacts</h3>
<ul class="footer-links">
<li><a href="mailto:support@loveconnect.com">support@loveconnect.com</a></li>
<li><a href="tel:+18001234567">+1 (800) 123-45-67</a></li>
<li><a href="#">New York, Example St, 15</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2023 LoveConnect. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Простая функция для переключения языков
document.querySelectorAll('.language-switcher a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
// Убираем активный класс у всех ссылок
document.querySelectorAll('.language-switcher a').forEach(a => {
a.classList.remove('active');
});
// Добавляем активный класс текущей ссылке
this.classList.add('active');
// Определяем выбранный язык
const lang = this.textContent.trim();
if (lang === 'RU') {
// Русская версия
document.querySelector('html').setAttribute('lang', 'ru');
document.querySelector('title').textContent = 'LoveConnect - Найди свою вторую половинку';
document.querySelector('.logo').innerHTML = '<i class="fas fa-heart"></i>LoveConnect';
document.querySelector('.hero h1').textContent = 'Найди свою вторую половинку';
document.querySelector('.hero p').textContent = 'LoveConnect - это современная платформа для знакомств, где тысячи одиноких сердец находят свою любовь. Присоединяйся к нашему сообществу сегодня!';
// Обновляем текст ссылок
document.querySelectorAll('.simple-link').forEach(link => {
if (link.closest('.hero')) {
link.textContent = 'НАЧАТЬ ЗНАКОМСТВА БЕСПЛАТНО →';
} else if (link.closest('.final-cta')) {
link.textContent = 'СОЗДАТЬ ПРОФИЛЬ →';
}
});
// Остальной текст (сократил для примера)
document.querySelectorAll('.section-title h2')[0].textContent = 'Почему выбирают LoveConnect';
document.querySelectorAll('.section-title p')[0].textContent = 'Мы создали идеальную платформу для поиска серьезных отношений';
} else {
// Английская версия (по умолчанию)
document.querySelector('html').setAttribute('lang', 'en');
document.querySelector('title').textContent = 'LoveConnect - Find Your Soulmate';
document.querySelector('.logo').innerHTML = '<i class="fas fa-heart"></i>LoveConnect';
document.querySelector('.hero h1').textContent = 'Find Your Soulmate';
document.querySelector('.hero p').textContent = 'LoveConnect is a modern dating platform where thousands of lonely hearts find their love. Join our community today!';
// Обновляем текст ссылок
document.querySelectorAll('.simple-link').forEach(link => {
if (link.closest('.hero')) {
link.textContent = 'START DATING FOR FREE →';
} else if (link.closest('.final-cta')) {
link.textContent = 'CREATE PROFILE →';
}
});
document.querySelectorAll('.section-title h2')[0].textContent = 'Why Choose LoveConnect';
document.querySelectorAll('.section-title p')[0].textContent = 'We created the perfect platform for finding serious relationships';
}
});
});
</script>
</body>
</html>