*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
}

body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#ff512f,#f09819,#ff0844);
  color:#fff;
}

.container{
  width:100%;
  max-width:420px;
  text-align:center;
  padding:40px 20px;
}

h1{
  font-size:28px;
  margin-bottom:20px;
  font-weight:600;
}

.logo-box{
  width:180px;
  height:180px;
  background:#fff;
  border-radius:50%;
  margin:0 auto 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:15px;
}

.tagline{
  font-size:16px;
  opacity:0.9;
  margin-bottom:35px;
  line-height:1.4;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  background:#fff;
  color:#ff0844;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  padding:16px;
  border-radius:40px;
  margin-bottom:18px;
  transition:0.3s ease;
}

.btn:hover{
  transform:scale(1.04);
}

.btn i{
  font-size:20px;
}

footer{
  margin-top:30px;
  font-size:13px;
  opacity:0.7;
}