
/* style.css */
* { box-sizing: border-box; }
body,html { height:100%; margin:0; font-family: "Helvetica Neue", "Microsoft YaHei", Arial; }
.page {
  min-height:100vh;
  background-image: url('img_bg.jpg');
  background-size: cover;
  background-position: center;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#fff;
}
.top { width:100%; max-width:540px; padding:18px 12px 0; display:flex; justify-content:flex-start; }
.logo img { height:34px; }
.content { width:100%; max-width:540px; padding:12px; }
.top-buttons { margin-top:8px; }
.copy-row { display:flex; gap:10px; margin-bottom:10px; }
.copy-item { flex:1; display:flex; justify-content:space-between; align-items:center; background: rgba(255,255,255,0.9); color:#333; padding:8px 10px; border-radius:8px; }
.copy-item .label { font-size:14px; }
.copy-btn { background:#e6f5f4; color:#1b1b1b; border:none; padding:6px 8px; border-radius:6px; cursor:pointer; font-weight:600; }
.orange-row { display:flex; gap:12px; margin-top:10px; }
.orange-btn { flex:1; background:#ffb400; color:#000; border:none; padding:14px 10px; border-radius:8px; font-weight:700; cursor:pointer; box-shadow:0 4px 0 rgba(0,0,0,0.08); }
.hero { margin-top:18px; display:flex; align-items:center; gap:14px; }
.phone-box img { width:110px; box-shadow:0 10px 30px rgba(0,0,0,0.35); border-radius:12px; }
.club { color:#fff; text-align:left; }
.club-name { font-size:18px; opacity:0.95; }
.club-number { font-size:26px; color:#ffea3b; font-weight:800; margin-top:6px; text-shadow:0 2px 6px rgba(0,0,0,0.4); }
.actions { margin-top:20px; display:flex; flex-direction:column; gap:12px; }
.green-btn { background:linear-gradient(#5fb08d,#4a8d77); color:#fff; border:none; padding:12px; border-radius:10px; font-size:16px; cursor:pointer; font-weight:700; box-shadow:0 6px 12px rgba(0,0,0,0.15); }
.two-btns { display:flex; gap:12px; }
.green-small { flex:1; background:linear-gradient(#6fb59b,#4aa07f); color:#fff; border:none; padding:10px; border-radius:8px; font-weight:700; cursor:pointer; }
.support-btn { margin-top:6px; background:#e6f6f5; color:#0b6b63; border:none; padding:10px; border-radius:12px; font-weight:700; }
.toast { position:fixed; left:50%; transform:translateX(-50%); bottom:50px; background:rgba(0,0,0,0.8); color:#fff; padding:8px 14px; border-radius:20px; opacity:0; transition: all .25s ease; pointer-events:none; }
.toast.visible { opacity:1; bottom:70px; }
@media(max-width:420px){
  .copy-row { flex-direction:column; }
  .orange-row { flex-direction:column; }
  .hero { flex-direction:column; align-items:center; }
}
