/* static/landing.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050816;
  font-family:Arial,sans-serif;
  height:100vh;
  overflow:hidden;
  color:white;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;
}

.bg-glow{
  position:absolute;
  width:500px;
  height:500px;

  background:#0A84FF;

  border-radius:50%;
  filter:blur(160px);

  opacity:0.25;
}

.container{
  position:relative;
  z-index:2;

  width:90%;
  max-width:500px;

  text-align:center;
}

.logo{
  width:110px;
  height:110px;

  object-fit:contain;

  margin-bottom:25px;

  border-radius:24px;
}

h1{
  font-size:58px;
  letter-spacing:6px;
  margin-bottom:12px;
}

.subtitle{
  color:#4DA3FF;
  font-size:22px;
  margin-bottom:22px;
}

.description{
  color:#d2d2d2;
  font-size:17px;
  line-height:1.8;

  margin-bottom:38px;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;

  padding:15px 28px;

  border-radius:18px;

  font-weight:bold;
  font-size:16px;

  transition:0.25s;
}

.instagram{
  background:#0A84FF;
  color:white;
}

.play{
  background:#161616;
  border:1px solid #333;
  color:white;
}

.btn:hover{
  transform:translateY(-4px);
  opacity:0.92;
}
