File: /home/bashacomputer/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loading... | Redirecting Soon</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow: hidden;
position: relative;
}
.background-shapes {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}
.shape {
position: absolute;
border-radius: 50%;
opacity: 0.2;
}
.shape:nth-child(1) {
width: 200px;
height: 200px;
background: #ff7e5f;
top: 10%;
left: 5%;
animation: float 15s infinite ease-in-out;
}
.shape:nth-child(2) {
width: 300px;
height: 300px;
background: #feb47b;
bottom: 15%;
right: 10%;
animation: float 18s infinite ease-in-out reverse;
}
.shape:nth-child(3) {
width: 150px;
height: 150px;
background: #6a11cb;
top: 40%;
right: 20%;
animation: float 12s infinite ease-in-out;
}
.container {
text-align: center;
z-index: 10;
background: rgba(25, 25, 35, 0.7);
padding: 40px 60px;
border-radius: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
max-width: 90%;
width: 500px;
}
h1 {
color: white;
font-size: 2.5rem;
margin-bottom: 30px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.loading-container {
margin: 30px 0;
}
.loader {
position: relative;
width: 120px;
height: 120px;
margin: 0 auto;
}
.loader:before, .loader:after {
content: '';
border-radius: 50%;
position: absolute;
inset: 0;
box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.3) inset;
}
.loader:after {
box-shadow: 0 4px 0 #6a11cb inset;
animation: rotate 1s linear infinite;
}
.inner-circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) inset;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 14px;
font-weight: bold;
}
.countdown {
color: white;
font-size: 1.2rem;
margin-top: 20px;
font-weight: 500;
}
.countdown span {
color: #ff7e5f;
font-weight: bold;
font-size: 1.4rem;
}
.message {
color: rgba(255, 255, 255, 0.8);
margin-top: 25px;
font-size: 1.1rem;
line-height: 1.6;
}
.redirect-info {
margin-top: 30px;
background: rgba(255, 255, 255, 0.1);
padding: 15px;
border-radius: 10px;
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes float {
0% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-40px) rotate(180deg);
}
100% {
transform: translateY(0) rotate(360deg);
}
}
@media (max-width: 500px) {
.container {
padding: 30px;
}
h1 {
font-size: 2rem;
}
.loader {
width: 100px;
height: 100px;
}
.inner-circle {
width: 60px;
height: 60px;
font-size: 12px;
}
}
</style>
</head>
<body>
<div class="background-shapes">
<div class="shape"></div>
<div class="shape"></div>
<div class="shape"></div>
</div>
<div class="container">
<h1>Loading Content...</h1>
<div class="loading-container">
<div class="loader">
<div class="inner-circle">Processing</div>
</div>
</div>
<!-- Changed initial countdown value to 1 -->
<div class="countdown">Redirecting in <span id="timer">1</span> seconds</div>
<p class="message">Please wait while we prepare your destination page. You'll be automatically redirected soon.</p>
<div class="redirect-info">
Redirecting to: https://otieu.com/4/9456162
</div>
</div>
<script>
// Countdown timer
let seconds = 1; // Changed from 2 to 1
const timerElement = document.getElementById('timer');
function updateTimer() {
timerElement.textContent = seconds;
if(seconds === 0) {
// Redirect when timer reaches 0
window.location.href = "https://otieu.com/4/9456162";
} else {
seconds--;
setTimeout(updateTimer, 1000);
}
}
// Start the timer immediately (removed initial delay)
updateTimer();
// Redirect after 1 second even if timer fails
setTimeout(() => {
window.location.href = "https://otieu.com/4/9456162";
}, 1000); // Changed from 2000 to 1000
</script>
</body>
</html>