<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UK Chat Lounge | Connect with Brits Nationwide</title>
<style>
:root {
--primary: #6C63FF;
--secondary: #4D44DB;
--dark: #1A1A2E;
--light: #F1F1F1;
--accent: #FF6584;
--gray: #7F7F90;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background-color: var(--dark);
color: var(--light);
background-image:
radial-gradient(circle at 25% 25%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
radial-gradient(circle at 75% 75%, rgba(255, 101, 132, 0.15) 0%, transparent 50%);
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 100px 0;
min-height: 100vh;
display: flex;
align-items: center;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 25px 0;
z-index: 100;
transition: all 0.3s ease;
background: rgba(26, 26, 46, 0.8);
backdrop-filter: blur(10px);
}
header.scrolled {
padding: 15px 0;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-size: 28px;
font-weight: 700;
background: linear-gradient(90deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: flex;
align-items: center;
text-decoration: none;
}
.logo span {
display: inline-block;
width: 12px;
height: 12px;
background-color: var(--accent);
border-radius: 50%;
margin-right: 10px;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.3; }
100% { opacity: 1; }
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 30px;
}
nav ul li a {
color: var(--light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
font-size: 16px;
}
nav ul li a:hover {
color: var(--primary);
}
nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: var(--primary);
transition: width 0.3s ease;
}
nav ul li a:hover::after {
width: 100%;
}
.hero-content {
max-width: 600px;
}
h1 {
font-size: 52px;
margin-bottom: 20px;
line-height: 1.2;
}
h2 {
font-size: 42px;
margin-bottom: 40px;
background: linear-gradient(90deg, var(--primary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: inline-block;
}
h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary);
}
p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 30px;
opacity: 0.9;
}
.enter-btn {
display: inline-block;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 18px;
box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
cursor: pointer;
}
.enter-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(108, 99, 255, 0.4);
}
.enter-btn:active {
transform: translateY(1px);
}
.enter-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.enter-btn:hover::before {
left: 100%;
}
/* Features Section */
#features {
background: rgba(255, 255, 255, 0.02);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.feature-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
padding: 35px 30px;
border-radius: 15px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-card:hover {
transform: translateY(-10px);
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.feature-icon i {
font-size: 24px;
color: white;
}
/* Popular Rooms Section */
#rooms {
position: relative;
}
.rooms-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 50px;
}
.room-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.room-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.room-image {
height: 180px;
background-size: cover;
background-position: center;
}
.room-content {
padding: 25px;
}
.room-meta {
display: flex;
justify-content: space-between;
margin-top: 15px;
font-size: 14px;
color: var(--gray);
}
.room-users {
display: flex;
align-items: center;
}
.room-users i {
margin-right: 5px;
color: var(--accent);
}
/* Testimonials Section */
#testimonials {
background: rgba(255, 255, 255, 0.02);
}
.testimonials-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-content {
font-style: italic;
margin-bottom: 20px;
position: relative;
}
.testimonial-content::before {
content: '"';
font-size: 60px;
position: absolute;
top: -20px;
left: -15px;
color: rgba(255, 255, 255, 0.1);
font-family: serif;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
object-fit: cover;
}
.author-info h4 {
margin-bottom: 5px;
}
.author-info p {
margin-bottom: 0;
font-size: 14px;
color: var(--gray);
}
/* FAQ Section */
#faq {
position: relative;
}
.faq-container {
max-width: 800px;
margin: 0 auto;
margin-top: 50px;
}
.faq-item {
margin-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
padding: 20px 0;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 500;
}
.faq-question i {
transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 20px;
}
.faq-item.active .faq-answer {
max-height: 300px;
padding-bottom: 20px;
}
/* CTA Section */
#cta {
text-align: center;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
}
#cta h2 {
background: none;
-webkit-background-clip: initial;
background-clip: initial;
color: white;
}
#cta p {
max-width: 700px;
margin: 0 auto 40px;
opacity: 0.9;
}
.chat-bubble {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
filter: blur(30px);
z-index: -1;
}
.bubble-1 {
width: 300px;
height: 300px;
top: 10%;
right: 10%;
background: rgba(108, 99, 255, 0.2);
}
.bubble-2 {
width: 200px;
height: 200px;
bottom: 20%;
left: 10%;
background: rgba(255, 101, 132, 0.2);
}
.bubble-3 {
width: 150px;
height: 150px;
top: 50%;
right: 20%;
background: rgba(108, 99, 255, 0.15);
}
footer {
text-align: center;
padding: 30px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer p {
opacity: 0.6;
font-size: 14px;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
h1 {
font-size: 36px;
}
h2 {
font-size: 32px;
}
section {
padding: 80px 0;
}
nav ul {
display: none;
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header id="header">
<div class="header-container">
<a href="#home" class="logo">
<span></span>UK Chat Lounge
</a>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#rooms">Rooms</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="https://chat-buddy.com/entry" class="enter-btn">Enter Chat</a></li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Home Section -->
<section id="home">
<div class="container">
<div class="hero-content">
<h1>Connect with Brits across the <span style="background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent;">UK</span></h1>
<p>Join the UK's most vibrant chat community where thousands of Brits connect daily. From London to Edinburgh, find your tribe and chat about shared interests in real-time.</p>
<a href="https://chat-buddy.com/entry" class="enter-btn">Enter Chat Now</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features">
<div class="container">
<h2>Why You'll Love Our Platform</h2>
<p>Discover what makes UK Chat Lounge the premier destination for online conversations in the UK</p>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-bolt"></i>
</div>
<h3>Lightning Fast</h3>
<p>Our cutting-edge technology ensures messages are delivered instantly with no lag, keeping conversations flowing naturally.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Military-Grade Security</h3>
<p>End-to-end encryption and strict moderation keep your conversations private and your data secure.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-map-marked-alt"></i>
</div>
<h3>Regional Channels</h3>
<p>Connect with locals through our regional chat rooms for every corner of the UK, from Cornwall to the Scottish Highlands.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-robot"></i>
</div>
<h3>Smart Bots</h3>
<p>Our helpful chat bots provide weather updates, news briefings, and can even settle pub quiz disputes!</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Mobile Optimized</h3>
<p>Chat on the go with our fully responsive design that works perfectly on all your devices.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-language"></i>
</div>
<h3>Multilingual Support</h3>
<p>Automatic translation for conversations between Welsh, Gaelic, and English speakers.</p>
</div>
</div>
</div>
</section>
<!-- Popular Rooms Section -->
<section id="rooms">
<div class="container">
<h2>Popular Chat Rooms</h2>
<p>Browse some of our most active communities where you can jump right into the conversation</p>
<div class="rooms-container">
<div class="room-card">
<div class="room-image" style="background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');"></div>
<div class="room-content">
<h3>London Social</h3>
<p>For Londoners to discuss events, meetups, and city life in the capital.</p>
<div class="room-meta">
<span><i class="fas fa-comments"></i> 1,243 active</span>
<span>#london #events</span>
</div>
</div>
</div>
<div class="room-card">
<div class="room-image" style="background-image: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');"></div>
<div class="room-content">
<h3>Premier League Fan Zone</h3>
<p>Passionate discussions about all things English football with fans nationwide.</p>
<div class="room-meta">
<span><i class="fas fa-comments"></i> 892 active</span>
<span>#football #sports</span>
</div>
</div>
</div>
<div class="room-card">
<div class="room-image" style="background-image: url('https://images.unsplash.com/photo-1533929736458-ca588d08c8be?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80');"></div>
<div class="room-content">
<h3>UK Politics Live</h3>
<p>Civil discussions about British politics and current affairs from all perspectives.</p>
<div class="room-meta">
<span><i class="fas fa-comments"></i> 756 active</span>
<span>#politics #news</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials">
<div class="container">
<h2>What Our Users Say</h2>
<p>Don't just take our word for it - hear from our thriving community</p>
<div class="testimonials-container">
<div class="testimonial-card">
<div class="testimonial-content">
<p>I moved to Manchester from Poland and was feeling lonely. UK Chat Lounge helped me meet local friends who showed me around. Now I feel at home!</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Katarzyna" class="author-avatar">
<div class="author-info">
<h4>Katarzyna W.</h4>
<p>Manchester • Member since 2022</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
<p>As a shift worker, it's hard to maintain a social life. The 24/7 chat rooms mean I always have someone to talk to, no matter the hour.</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="James" class="author-avatar">
<div class="author-info">
<h4>James L.</h4>
<p>Birmingham • Nurse</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-content">
<p>I've made genuine friendships here that transitioned to real life. We even organized a UK-wide meetup with 50 members last summer!</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Sarah" class="author-avatar">
<div class="author-info">
<h4>Sarah K.</h4>
<p>Cardiff • Community Moderator</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq">
<div class="container">
<h2>Frequently Asked Questions</h2>
<p>Quick answers to common questions about our platform</p>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question">
<span>Is UK Chat Lounge free to use?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes! Our basic chat features are completely free. We offer premium subscriptions for additional features like custom emojis, larger file uploads, and exclusive rooms, but the core experience is free forever.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>How do you keep the chat rooms safe?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>We employ a combination of AI moderation and human moderators who monitor conversations 24/7. Users can report inappropriate behavior, and we have strict community guidelines. All moderators are UK-based and trained to handle sensitive situations.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>Can I create my own private chat room?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Absolutely! Any member can create a public or private room. Private rooms can be password protected or invite-only. Perfect for friend groups, work colleagues, or special interest communities.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<span>Do you have mobile apps available?</span>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>Yes, we have iOS and Android apps available in their respective app stores. Our web version is also fully responsive and works great on mobile browsers if you prefer not to download an app.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="cta">
<div class="container">
<h2>Ready to Join the Conversation?</h2>
<p>Thousands of Brits are waiting to welcome you to the UK's friendliest chat community. Sign up takes less than a minute!</p>
<a href="https://chat-buddy.com/entry" class="enter-btn">Start Chatting Now</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2023 UK Chat Lounge. All rights reserved. | <a href="#" style="color: var(--primary); text-decoration: none;">Privacy Policy</a> | <a href="#" style="color: var(--primary); text-decoration: none;">Terms of Service</a></p>
</div>
</footer>
<div class="chat-bubble bubble-1"></div>
<div class="chat-bubble bubble-2"></div>
<div class="chat-bubble bubble-3"></div>
<script>
// Header scroll effect
window.addEventListener('scroll', function() {
const header = document.getElementById('header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// FAQ accordion functionality
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', () => {
const item = question.parentElement;
item.classList.toggle('active');
// Close other open items
document.querySelectorAll('.faq-item').forEach(otherItem => {
if (otherItem !== item && otherItem.classList.contains('active')) {
otherItem.classList.remove('active');
}
});
});
});
</script>
</body>
</html>