/* Front modal — blocks background scroll */
html.gmc-modal-open, body.gmc-modal-open{overflow:hidden;height:100%}

#gmc-modal-root.gmc-hidden{display:none}
#gmc-modal-root.gmc-show{position:fixed;inset:0;z-index:999999;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.6);backdrop-filter: blur(2px);}

.gmc-modal{width:min(680px, 96vw); max-height:90vh; overflow:auto; border-radius:20px; background:#fff; box-shadow:0 20px 60px rgba(0,0,0,.35); padding:28px 22px; text-align:center;}
.gmc-modal .gmc-logo{margin-bottom:12px}
.gmc-modal .gmc-title{font-size:26px;font-weight:800;margin:0 0 10px}
.gmc-modal .gmc-text{font-size:15px;color:#333;margin:0 0 18px}
.gmc-modal .gmc-actions{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.gmc-modal .gmc-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 16px;border-radius:999px;border:2px solid #111;text-decoration:none;font-weight:800;color:#111;transition:transform .12s, box-shadow .12s, background-color .12s}
.gmc-modal .gmc-btn:hover{transform:translateY(-1px)}
.gmc-modal .gmc-btn.primary{background:#111;color:#fff}
