souldoit.com Ads.txt file
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting - Please wait!</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style media="screen">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
overflow: hidden;
height: 100vh;
}
.container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 1;
}
.background-pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
z-index: -1;
}
.content {
text-align: center;
max-width: 400px;
padding: 2rem;
}
.title {
font-size: 1.75rem;
font-weight: 300;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
}
.subtitle {
font-size: 1rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2.5rem;
letter-spacing: 0.02em;
}
/* Modern Spinner */
.spinner-container {
position: relative;
width: 80px;
height: 80px;
margin: 0 auto 2rem;
}
.spinner {
width: 100%;
height: 100%;
border: 2px solid rgba(255, 255, 255, 0.1);
border-top: 2px solid #6366f1;
border-radius: 50%;
animation: spin 1.5s linear infinite;
position: relative;
}
.spinner::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border: 2px solid transparent;
border-top: 2px solid #8b5cf6;
border-radius: 50%;
animation: spin 2s linear infinite reverse;
}
.spinner::after {
content: '';
position: absolute;
top: 4px;
left: 4px;
right: 4px;
bottom: 4px;
border: 2px solid transparent;
border-top: 2px solid #a855f7;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Progress bar */
.progress-container {
width: 200px;
height: 2px;
background: rgba(255, 255, 255, 0.1);
border-radius: 1px;
overflow: hidden;
margin: 0 auto;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
border-radius: 1px;
animation: progress 3s ease-in-out infinite;
width: 0%;
}
@keyframes progress {
0% { width: 0%; }
50% { width: 70%; }
100% { width: 100%; }
}
/* Floating particles */
.particles {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.particle {
position: absolute;
width: 2px;
height: 2px;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
animation: float 6s infinite linear;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }
@keyframes float {
0% {
transform: translateY(100vh) scale(0);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100px) scale(1);
opacity: 0;
}
}
/* Responsive design */
@media (max-width: 768px) {
.title {
font-size: 1.5rem;
}
.subtitle {
font-size: 0.9rem;
}
.spinner-container {
width: 60px;
height: 60px;
}
.progress-container {
width: 150px;
}
}
</style>
</head>
<body>
<div class="background-pattern"></div>
<div class="particles">
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
</div>
<div class="container">
<div class="content">
<h1 class="title">Redirecting to main page</h1>
<div class="spinner-container">
<div class="spinner"></div>
</div>
<p class="subtitle">Please wait</p>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
</div>
</div>
<script>
setTimeout(function() {
window.location.href = "http://info.souldoit.com";
}, 3000);
</script>
</body>
</html>