/* Madeirart - Under construction (Netlify static) */
:root{
  --bg:#0b0b0b;
  --card:#121212;
  --muted:#b7b7b7;
  --text:#f4f4f4;
  --line:rgba(255,255,255,.10);
  --accent:#f2c14e; /* warm wood tone */
  --accent2:#d18f2c;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(242,193,78,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(209,143,44,.12), transparent 60%),
    radial-gradient(700px 500px at 30% 90%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #070707, var(--bg));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.wrap{width:100%; max-width:760px;}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 30% 0%, rgba(242,193,78,.18), transparent 70%);
  pointer-events:none;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
  position:relative;
}
.mark{
  width:54px;height:54px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
}
.title{
  margin:0;
  font-size:28px;
  letter-spacing:.2px;
}
.subtitle{
  margin:2px 0 0;
  color:var(--muted);
  font-size:14px;
}

.msg{
  margin:18px 0 22px;
  color: rgba(244,244,244,.92);
  font-size:16px;
  line-height:1.5;
  position:relative;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  position:relative;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(242,193,78,.28);
  background: rgba(242,193,78,.12);
  color: var(--text);
  text-decoration:none;
  font-weight:650;
  letter-spacing:.1px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(242,193,78,.18); border-color: rgba(242,193,78,.42);}
.btn:active{transform: translateY(0px);}
.btn .ico{display:inline-flex; color: var(--accent);}

.btn.ghost{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.btn.ghost:hover{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22);}
.btn.ghost .ico{color: #ffffff;}

.foot{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.70);
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  font-size:13px;
  position:relative;
}
.dot{opacity:.6}

@media (max-width:420px){
  .card{padding:22px}
  .title{font-size:24px}
  .btn{width:100%; justify-content:center}
}
