<!doctype html>
<html lang="tr">

<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
TurkHacks — Hacklendi<title>TurkHacks — Hacklendi</title>
<style>
:root{
--accent: #c62828;
--muted: #e9e9e9;
--gold: #e0b200;
--card-bg: rgba(0,0,0,0.45);
}

/* Temel düzen */
html,body{
height:100%;
margin:0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: black url('https://i.hizliresim.com/czh0777.gif') center/cover no-repeat fixed;
color:var(--muted);
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

/* Ortala ve merkezle */
.wrap{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:24px;
box-sizing:border-box;
text-align:center;
/* hafif arka plan maskesi, metni arka plandan ayırır */
background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22));
}

/* Ana görsel */
.main-image{
width:360px;
max-width:86vw;
height:auto;
border-radius:8px;
border:1px solid rgba(255,255,255,0.06);
box-shadow: 0 6px 20px rgba(0,0,0,0.6);
display:block;
margin:0 auto 18px;
}

/* Başlık */
.title {
margin:6px 0 8px;
font-weight:700;
color: #fff;
font-size: clamp(20px, 4.5vw, 34px);
letter-spacing: 0.2px;
line-height:1.05;
}
.title .accent { color: var(--accent); }

/* İsimler / alt başlık */
.byline {
color: var(--gold);
font-size: clamp(14px, 2.8vw, 18px);
font-weight:600;
margin-bottom:10px;
}

/* Bilgi kartı */
.card {
width: min(980px, 95vw);
margin-top:20px;
display:flex;
gap:18px;
align-items:center;
justify-content:flex-start;
padding:12px 14px;
background: var(--card-bg);
border-radius:10px;
border:1px solid rgba(255,255,255,0.04);
box-shadow: 0 8px 30px rgba(0,0,0,0.5);
box-sizing:border-box;
}

.avatar{
width:140px;
height:140px;
border-radius:8px;
object-fit:cover;
flex:0 0 140px;
border:1px solid rgba(255,255,255,0.06);
}

.card-content{
flex:1 1 auto;
text-align:left;
min-width:0;
}

.name {
margin:0 0 6px;
font-size:18px;
color:#fff;
font-weight:700;
}

.desc {
margin:0;
color:#dcdcdc;
line-height:1.4;
font-size:14px;
}

/* Alt bilgi */
.meta {
margin-top:10px;
color:#bdbdbd;
font-size:13px;
}

/* Telegram butonu (sade) */
.tg {
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:var(--accent);
color:#fff;
padding:10px 16px;
border-radius:999px;
text-decoration:none;
font-weight:700;
font-size:13px;
border:1px solid rgba(255,255,255,0.06);
box-shadow:0 8px 24px rgba(0,0,0,0.45);
}

/* Mobil düzen */
@media (max-width:760px){
.card{ flex-direction:column; align-items:center; text-align:center; padding:10px; gap:12px; }
.card-content{ text-align:center; }
.avatar{ width:120px; height:120px; flex:0 0 120px; }
.main-image{ width:300px; }
}
</style>


<main class="wrap">
<img class="main-image" src="https://i.hizliresim.com/czh0777.gif" alt="Arka Görsel">

<h1 class="title"><span class="accent">TurkHacks</span> — Hacklendi
<div class="byline">DeepiMpaCt · Graves</div>

<section class="card" aria-label="Profil">
<img class="avatar" src="https://i.imgur.com/ecjblIH.gif" alt="Profil görseli">

<div class="card-content">
<h3 class="name">Mustafa Kemal Atatürk
<p class="desc">Ölüm dediğin nedir</p>
<div class="meta">TurkHacks.com</div>
</div>
</section>

<a class="tg" href="https://t.me/gravesths" target="_blank" rel="noopener noreferrer">t.me/gravesths</a>
</main>