<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>kodomut.com</title>
<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: linear-gradient(160deg, #fafafa 0%, #f1f1f3 45%, #e4e4e7 100%);
    color: #3f3f46;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .wrap { max-width: 520px; }

  /* Kum saati */
  .hourglass {
    width: 56px;
    height: 56px;
    margin: 0 auto 38px;
    animation: flip 2.4s ease-in-out infinite;
  }
  .hourglass svg { width: 100%; height: 100%; display: block; }
  @keyframes flip {
    0%, 40%   { transform: rotate(0deg); }
    50%, 90%  { transform: rotate(180deg); }
    100%      { transform: rotate(180deg); }
  }
  .sand-top { animation: drain 2.4s ease-in-out infinite; }
  @keyframes drain {
    0%   { opacity: 1; }
    40%  { opacity: 0.2; }
    50%  { opacity: 1; }
    100% { opacity: 1; }
  }

  h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #27272a;
    margin-bottom: 16px;
    word-break: break-word;
  }
  p {
    font-size: 16px;
    font-weight: 400;
    color: #71717a;
    line-height: 1.65;
  }
</style>
</head>
<body>
  <div class="wrap">
    <div class="hourglass">
      <svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
        <path d="M12 4h24M12 44h24" stroke="#a1a1aa" stroke-width="3" stroke-linecap="round"/>
        <path d="M14 4c0 10 8 14 10 20 2-6 10-10 10-20M14 44c0-10 8-14 10-20 2 6 10 10 10 20" stroke="#a1a1aa" stroke-width="2.5" stroke-linejoin="round"/>
        <path class="sand-top" d="M18 9h12c-0.5 4-4 6-6 9-2-3-5.5-5-6-9z" fill="#d4d4d8"/>
        <path d="M20 39h8c-0.4-3-3-4.5-4-6.5-1 2-3.6 3.5-4 6.5z" fill="#d4d4d8"/>
      </svg>
    </div>
    <p>kodomut.com</p>

  </div>
</body>
</html>