index.html
index.html
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>LuxVPN - DDoS Protected VPN</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #0d0d0d;
color: #ffffff;
overflow-x: hidden;
}
.fade-in.active {
opacity: 1;
transform: translateY(0);
}
.slide-in-left {
opacity: 0;
transform: translateX(-100px);
transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-in-right {
opacity: 0;
transform: translateX(100px);
transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-in-left.active, .slide-in-right.active {
opacity: 1;
transform: translateX(0);
}
.scale-in {
opacity: 0;
transform: scale(0.8);
transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275),
transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.scale-in.active {
opacity: 1;
transform: scale(1);
}
.stagger-item:nth-child(2) {
transition-delay: 0.1s;
}
.stagger-item:nth-child(3) {
transition-delay: 0.2s;
}
.stagger-item:nth-child(4) {
transition-delay: 0.3s;
}
.stagger-item:nth-child(5) {
transition-delay: 0.4s;
}
.stagger-item:nth-child(6) {
transition-delay: 0.5s;
}
/* Added animations */
.pulse {
animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
0% {
box-shadow: 0 0 0 0 rgba(147, 112, 219, 0.4);
}
70% {
box-shadow: 0 0 0 15px rgba(147, 112, 219, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(147, 112, 219, 0);
}
}
.float {
animation: float-animation 6s ease-in-out infinite;
}
@keyframes float-animation {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}
.glow {
animation: glow-animation 2s ease-in-out infinite alternate;
}
@keyframes glow-animation {
from {
text-shadow: 0 0 10px rgba(147, 112, 219, 0.3);
}
to {
text-shadow: 0 0 20px rgba(147, 112, 219, 0.6),
0 0 30px rgba(147, 112, 219, 0.4);
}
}
.reveal-bg {
position: relative;
overflow: hidden;
}
.reveal-bg:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #9370DB;
transform: translateX(-100%);
transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
z-index: 1;
}
.reveal-bg.active:after {
transform: translateX(100%);
}
.reveal-bg > * {
opacity: 0;
transition: opacity 0.1s linear 0.3s;
position: relative;
z-index: 2;
}
.reveal-bg.active > * {
opacity: 1;
}
/* Hero Section */
.hero {
text-align: center;
padding: 120px 20px;
background: linear-gradient(135deg, #232323, #0d0d0d);
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" width="100" height="100" viewBox="0 0 100
100"><rect fill="none" width="100" height="100"/><path fill="rgba(147,112,219,0.1)"
d="M30,30L70,30L70,70L30,70Z"/></svg>');
opacity: 0.05;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 20px;
background: linear-gradient(90deg, #9370DB, #B19CD9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 2px 10px rgba(147, 112, 219, 0.3);
}
.hero p {
font-size: 1.4rem;
margin-top: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}
.hero .btn {
display: inline-block;
margin-top: 30px;
background: linear-gradient(135deg, #9370DB, #8A2BE2);
color: #fff;
padding: 16px 35px;
font-size: 1.3rem;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
cursor: pointer;
z-index: 10;
position: relative;
}
.hero .btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(147, 112, 219, 0.5);
}
/* Features */
.features {
padding: 100px 20px;
text-align: center;
background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
position: relative;
}
.features:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, rgba(147, 112, 219,
0.3), transparent);
}
.features h2 {
font-size: 2.8rem;
margin-bottom: 50px;
position: relative;
display: inline-block;
}
.features h2:after {
content: '';
position: absolute;
width: 80px;
height: 4px;
background: #9370DB;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.feature-boxes {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
.feature-box {
background: linear-gradient(145deg, #2e2e2e, #1a1a1a);
padding: 40px 30px;
width: 30%;
min-width: 280px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(147, 112, 219, 0.1);
position: relative;
overflow: hidden;
}
.feature-box:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: #9370DB;
opacity: 0.3;
}
.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.feature-box:hover:before {
opacity: 0.6;
}
.feature-box h3 {
font-size: 1.6rem;
margin-bottom: 20px;
color: #9370DB;
}
.feature-box p {
font-size: 1.1rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
}
/* Location Section */
.location-section {
padding: 100px 20px;
background: #1a1a1a;
text-align: center;
position: relative;
}
.location-section: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" width="20" height="20" viewBox="0 0 20 20"><rect
fill="none" width="20" height="20"/><circle fill="rgba(255,255,255,0.03)" cx="10"
cy="10" r="2"/></svg>');
}
.location-section h2 {
font-size: 2.8rem;
margin-bottom: 30px;
font-weight: bold;
position: relative;
display: inline-block;
}
.location-section h2:after {
content: '';
position: absolute;
width: 80px;
height: 4px;
background: #9370DB;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.location-section > p {
max-width: 800px;
margin: 0 auto 50px;
font-size: 1.2rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
}
.location-list {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
margin-top: 30px;
max-width: 1200px;
margin: 0 auto;
}
.location-box {
background: linear-gradient(145deg, #2e2e2e, #232323);
padding: 30px;
width: 22%;
min-width: 250px;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(147, 112, 219, 0.1);
position: relative;
overflow: hidden;
}
.location-box:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #9370DB, transparent);
}
.location-box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.location-box p:first-child {
font-size: 1.5rem;
color: #9370DB;
font-weight: bold;
margin-bottom: 10px;
}
.location-box p:last-child {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.8);
}
/* Contact Section */
.contact {
padding: 80px 20px;
text-align: center;
background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
position: relative;
}
.contact:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, rgba(147, 112, 219,
0.3), transparent);
}
.contact h2 {
font-size: 2.8rem;
margin-bottom: 40px;
position: relative;
display: inline-block;
}
.contact h2:after {
content: '';
position: absolute;
width: 60px;
height: 4px;
background: #9370DB;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.contact a {
display: inline-block;
transition: transform 0.3s ease;
position: relative;
}
.contact a:after {
content: 'Join our Discord';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
color: #9370DB;
font-weight: bold;
white-space: nowrap;
opacity: 0;
transition: opacity 0.3s ease;
}
.contact a:hover {
transform: scale(1.1);
}
.contact a:hover:after {
opacity: 1;
}
.contact img {
margin-top: 20px;
width: 60px;
height: 60px;
filter: drop-shadow(0 5px 15px rgba(147, 112, 219, 0.3));
}
footer {
text-align: center;
padding: 30px;
background: #1a1a1a;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.7);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.navbar {
padding: 20px 30px;
flex-direction: column;
gap: 15px;
}
.hero h1 {
font-size: 3rem;
}
.feature-box, .location-box {
width: 100%;
min-width: auto;
}
.feature-boxes, .location-list {
gap: 20px;
}
}
/* Particles Background */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 2;
}
</style>
</head>
<body>
<!-- Main Website Content -->
<div class="navbar">
<div class="logo glow">LuxVPN</div>
<ul class="nav-links">
<li><a href="private.html">Private Server Access</a></li>
<li><a href="https://www.instagram.com/1337.iot/">Instagram</a></li>
<li><a href="http://191.101.81.189/tos.html">Terms</a></li>
</ul>
</div>
<div class="hero">
<div id="particles-js"></div>
<div class="hero-content">
<h1 class="fade-in">Stateful DDoS Protection</h1>
<p class="fade-in">Project Inspired By Courvix aka Ry. Gone but never
forgotten.</p>
<a href="http://191.101.81.189/downloads.html" class="btn fade-in
pulse">Download VPN Configurations</a>
</div>
</div>
<div class="features">
<h2 class="fade-in glow">Why Choose LuxVPN?</h2>
<div class="feature-boxes">
<div class="feature-box fade-in reveal-bg stagger-item">
<h3>Stateful DDoS Protection</h3>
<p>We combine powerful eBPF & XDP (eXpress Data Path) application
filtering for top-tier DDoS protection.</p>
</div>
<div class="feature-box fade-in reveal-bg stagger-item">
<h3>High Quality Support</h3>
<p>We take pride on providing outstanding support via discord, even
with our service being free.</p>
</div>
<div class="feature-box fade-in reveal-bg stagger-item">
<h3>Free VPN Access</h3>
<p>We dont pride ourselves on taking money from clients. Instead,
we make you save it.</p>
</div>
</div>
</div>
<div class="location-section">
<h2 class="fade-in glow">Available Locations</h2>
<p class="fade-in">Our VPN service is available in multiple locations
around the world, offering you high-speed connections and secure browsing no matter
where you are.</p>
<div class="location-list">
<div class="location-box slide-in-left stagger-item float">
<p>London [UK]</p>
<p>Provider: OVH Hosting</p>
</div>
<div class="location-box slide-in-left stagger-item float">
<p>Germany [DE]</p>
<p>Provider: OVH Hosting</p>
</div>
<div class="location-box slide-in-left stagger-item float">
<p>Canada [CA]</p>
<p>Provider: OVH Hosting</p>
</div>
<div class="location-box slide-in-right stagger-item float">
<p>Oregon [US]</p>
<p>Provider: OVH Hosting</p>
</div>
<div class="location-box slide-in-right stagger-item float">
<p>Dallas [US]</p>
<p>Provider: Path Networks</p>
</div>
<div class="location-box slide-in-right stagger-item float">
<p>Australia [AU]</p>
<p>Provider: Digital Ocean</p>
</div>
</div>
</div>
<div class="contact">
<h2 class="fade-in glow">Contact Us</h2>
<a href="https://discord.gg/x59KRA32Fh" class="scale-in pulse">
<img src="http://191.101.81.189/discord-logo.png" alt="Instagram"
style="width: 140px; height: 120px;">
</a>
</div>
<footer>
<p>2025 LuxVPN. All rights reserved.</p>
</footer>
<script>
// Ensure the VPN download button works
document.addEventListener('DOMContentLoaded', function() {
const downloadButton = document.querySelector('.hero .btn');
if (downloadButton) {
downloadButton.addEventListener('click', function(e) {
e.preventDefault();
window.location.href = 'http://191.101.81.189/downloads.html';
});
}
box.addEventListener('mouseleave', function() {
this.classList.remove('pulse');
});
});
});
</script>
</body>
</html>