
:root{
  --bg: #f5e8df;
  --card: #ffffff;
  --text: #1e1e1e;
  --muted: #6b6b6b;
  --accent: #00d1a7;
  --shadow: 0 10px 25px rgba(0,0,0,0.08), inset 0 2px 0 rgba(255,255,255,0.6);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{
  max-width:760px;
  margin:0 auto;
  padding:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.header{
  text-align:center;
  margin-top:24px;
  margin-bottom:24px;
}

.logo-badge{
  width:90px;height:90px;
  border-radius:24px;
  background:#eaf7f3;
  display:flex;align-items:center;justify-content:center;
  box-shadow: var(--shadow);
  margin:12px auto 16px;
}
.logo-badge img{width:64px;height:64px;}

h1{margin:0;font-weight:800;font-size:40px;letter-spacing:0.4px;}
.subtitle{color:var(--muted);margin-top:10px;line-height:1.5;font-size:18px}

.links{width:100%;display:flex;flex-direction:column;gap:18px;margin-top:8px}

.link-card{
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  border-radius:20px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow: 0 18px 40px rgba(149, 157, 165, 0.15), inset 0 3px 0 rgba(255,255,255,0.8);
  position:relative;
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease;
  border:1px solid rgba(0,0,0,0.05);
}

.link-card:hover{transform: translateY(-3px); box-shadow: 0 24px 55px rgba(149,157,165,.22), inset 0 3px 0 rgba(255,255,255,0.9);}

.link-left{display:flex;align-items:center;gap:14px}
.link-left img{width:42px;height:42px;border-radius:12px}

.link-title{
  font-size:18px;
  font-weight:700;
  letter-spacing:.2px;
}

.chevron{
  width:36px;height:36px;border-radius:12px;background:#f1f5f9;display:flex;align-items:center;justify-content:center;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.7);
}

.chevron svg{width:18px;height:18px;}

.footer{
  margin:28px 0 14px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
}

.badges{display:flex;gap:18px;margin-top:8px;opacity:.85}
.badges img{height:26px;}

@media (max-width:560px){
  h1{font-size:32px}
  .subtitle{font-size:16px}
  .link-title{font-size:16px}
}
