File: /home/e9ohhh9viiv2/public_html/orangecapinipl.in/index.php
<?php
?>
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hoş Geldin 👋</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
overflow: hidden;
}
.bg-glow {
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0,255,200,0.35), transparent 70%);
top: -150px;
right: -150px;
filter: blur(80px);
}
.bg-glow.second {
background: radial-gradient(circle, rgba(0,150,255,0.35), transparent 70%);
bottom: -150px;
left: -150px;
}
.welcome-box {
position: relative;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(14px);
border-radius: 18px;
padding: 50px 45px;
max-width: 420px;
width: 90%;
text-align: center;
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
animation: fadeUp 0.9s ease forwards;
}
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.badge {
display: inline-block;
background: rgba(0, 255, 200, 0.15);
color: #00ffd5;
padding: 6px 14px;
border-radius: 999px;
font-size: 13px;
letter-spacing: 0.5px;
margin-bottom: 20px;
}
h1 {
font-size: 32px;
margin: 0 0 15px;
line-height: 1.2;
}
p {
font-size: 16px;
color: #d6e3ea;
line-height: 1.6;
margin-bottom: 35px;
}
.actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 12px 26px;
border-radius: 10px;
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: all 0.25s ease;
}
.btn.primary {
background: linear-gradient(135deg, #00ffd5, #00b3ff);
color: #002b36;
box-shadow: 0 10px 30px rgba(0, 255, 213, 0.35);
}
.btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(0, 255, 213, 0.5);
}
.btn.secondary {
background: rgba(255,255,255,0.1);
color: #fff;
border: 1px solid rgba(255,255,255,0.2);
}
.btn.secondary:hover {
background: rgba(255,255,255,0.18);
}
footer {
margin-top: 35px;
font-size: 13px;
color: rgba(255,255,255,0.6);
}
@media (max-width: 480px) {
h1 {
font-size: 26px;
}
}
</style>
</head>
<body>
<div class="bg-glow"></div>
<div class="bg-glow second"></div>
<div class="welcome-box">
<div class="badge">🚀 Sistem Aktif</div>
<h1>Hoş Geldin</h1>
<p>
Doğru yerdesin.
Aradığın deneyim burada başlıyor.
</p>
<div class="actions">
<a href="/about" class="btn praimary">Keşfet</a>
<a href="/contact" class="btn secondary">İletişim</a>
</div>
<footer>
© <?= date('Y') ?> Tüm hakları saklıdır
</footer>
</div>
</body>
</html>