<!DOCTYPE html>

<html lang="ru">

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>l08.ru</title>


<style>

:root{

    --primary:#0082c9;

    --text:#1f2937;

    --muted:#6b7280;

    --bg:#f6f9fc;

}


*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


body{

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

    background:var(--bg);

    color:var(--text);

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

}


.container{

    text-align:center;

    max-width:700px;

    padding:40px 20px;

}


.logo{

    width:120px;

    height:120px;

    margin:0 auto 30px;

}


h1{

    font-size:42px;

    font-weight:300;

    margin-bottom:15px;

}


p{

    font-size:18px;

    color:var(--muted);

    line-height:1.6;

}


.footer{

    margin-top:60px;

    font-size:14px;

    color:#9ca3af;

}


.status{

    display:inline-block;

    margin-top:25px;

    padding:10px 20px;

    border-radius:50px;

    background:#e8f4fb;

    color:var(--primary);

    font-weight:600;

}

</style>

</head>


<body>


<div class="container">


    <svg class="logo" viewBox="0 0 512 512">

        <path fill="#0082c9"

              d="M392 208c-8-88-80-160-176-160-80 0-152 56-168 136C20 192 0 220 0 256c0 64 52 112 112 112h272c72 0 128-56 128-128 0-56-48-104-120-112z"/>

    </svg>


    <h1>l08.ru</h1>


    <p>

        Сервис временно находится в процессе настройки.

        <br>

        Пожалуйста, зайдите позже.

    </p>


    <div class="status">

        System Status: Online

    </div>


    <div class="footer">

        © 2026 l08.ru

    </div>


</div>


</body>

</html>