/* ===== GUESS THE COUNTRY — CSS ===== */
:root { --gtc-header-total: 120px; }

body { overflow-y: auto; }

#game-wrapper {
	position: relative;
	margin-top: var(--gtc-header-total);
	width: 100%;
	min-height: calc(100vh - var(--gtc-header-total));
	padding: 2rem 1rem 4rem;
	background: var(--bg);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
}

.game-screen { display: none; width: 100%; max-width: 680px; animation: fadeInUp 0.35s ease; }
.game-screen.active { display: block; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ── LOGIN / REGISTER ── */
.login-card {
	background: var(--card-bg);
	border: 2px solid var(--card-border);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.game-logo { font-size: 3.5rem; display: block; margin-bottom: 0.4rem; }
.game-title-big {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.3rem, 5vw, 2rem);
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.3rem;
}
.game-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.4rem; }

.auth-tabs {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1.4rem;
}
.auth-tab {
	padding: 0.5rem 1.4rem;
	border-radius: 8px;
	border: 1.5px solid var(--card-border);
	background: transparent;
	color: var(--text-muted);
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.18s;
}
.auth-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.auth-tab:not(.active):hover { border-color: var(--primary); color: var(--primary); }

.auth-field { text-align: left; margin-bottom: 0.85rem; }
.auth-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.35rem; }

.pw-wrap { position: relative; display: flex; }
.pw-wrap .username-input { padding-right: 2.6rem; }
.pw-toggle {
	position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%);
	background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted);
	padding: 0.2rem; line-height: 1;
}

.remember-label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.85rem;
	color: var(--text-muted);
	cursor: pointer;
	margin-bottom: 0.8rem;
	text-align: left;
}
.remember-label input { accent-color: var(--primary); width: 15px; height: 15px; cursor: pointer; }

.auth-note {
	background: rgba(245,158,11,0.1);
	border: 1px solid rgba(245,158,11,0.3);
	border-radius: 8px;
	padding: 0.6rem 0.9rem;
	font-size: 0.78rem;
	color: #92400e;
	margin-bottom: 1rem;
	text-align: left;
	line-height: 1.5;
}
[data-theme="dark"] .auth-note { color: #fbbf24; background: rgba(245,158,11,0.08); }

.auth-status { font-size: 0.85rem; margin-top: 0.6rem; min-height: 1.2rem; }

/* ── INPUTS ── */
.username-input {
	width: 100%;
	padding: 0.8rem 1rem;
	border-radius: 10px;
	border: 2px solid var(--card-border);
	background: var(--input-bg);
	color: var(--text);
	font-size: 0.95rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.username-input:focus { border-color: var(--primary); }

/* ── BUTTONS ── */
.btn-primary {
	width: 100%;
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 0.85rem 1.6rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.1s, background 0.2s, box-shadow 0.2s;
	font-family: inherit;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(14,165,233,0.28); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-back {
	background: transparent;
	border: 1.5px solid var(--card-border);
	color: var(--text-muted);
	padding: 0.45rem 0.95rem;
	border-radius: 8px;
	font-size: 0.82rem;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}
.btn-back:hover { border-color: var(--primary); color: var(--primary); }

/* ── MODE SELECT ── */
.mode-header { text-align: center; margin-bottom: 1.4rem; }
.mode-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: var(--primary); margin-bottom: 0.3rem; }
.welcome-text { color: var(--text-muted); font-size: 0.95rem; }
.welcome-name { color: var(--primary); font-weight: 700; }

.mode-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.4rem; }
.mode-card {
	background: var(--card-bg);
	border: 2px solid var(--card-border);
	border-radius: 18px;
	padding: 2rem 1rem;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.mode-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 8px 24px rgba(14,165,233,0.18); }
.mode-icon { font-size: 3rem; display: block; margin-bottom: 0.7rem; }
.mode-name { font-family: 'Orbitron', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.mode-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.score-info-box {
	background: var(--card-bg);
	border: 1.5px solid var(--card-border);
	border-radius: 12px;
	padding: 0.85rem 1.2rem;
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}
.score-info-box strong { color: var(--primary); }

/* ── GAME TOP BAR ── */
.game-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.9rem;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.score-badge {
	background: var(--primary);
	color: #fff;
	padding: 0.4rem 0.9rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.9rem;
	font-family: 'Orbitron', sans-serif;
}
.lives-wrap { display: flex; align-items: center; }
#lives-display { display: flex; gap: 2px; }
.question-counter { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; }

/* ── PROGRESS BAR ── */
.progress-wrap { background: var(--bg2); border-radius: 10px; height: 6px; margin-bottom: 1rem; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); border-radius: 10px; transition: width 0.4s ease; }

/* ── QUESTION CARD ── */
.question-card {
	background: var(--card-bg);
	border: 2px solid var(--card-border);
	border-radius: 20px;
	padding: 1.8rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
	margin-bottom: 1rem;
}
.question-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.flag-display {
	width: 200px; height: 130px;
	margin: 0 auto 0.8rem;
	border-radius: 10px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
	border: 2px solid rgba(0,0,0,0.08);
	display: flex; align-items: center; justify-content: center;
	background: #f1f5f9;
}
.flag-display img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flag-emoji-fallback { font-size: 5rem; line-height: 1; }

.leader-photo-wrap {
	width: 160px; height: 160px;
	margin: 0 auto 0.8rem;
	border-radius: 50%; overflow: hidden;
	border: 3px solid var(--primary);
	box-shadow: 0 4px 16px rgba(14,165,233,0.22);
	background: var(--bg2);
	display: flex; align-items: center; justify-content: center;
}
.leader-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.leader-photo-fallback { font-size: 4rem; }
.question-hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── OPTIONS ── */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.option-btn {
	background: var(--card-bg);
	border: 2px solid var(--card-border);
	border-radius: 12px;
	padding: 0.85rem 0.6rem;
	font-size: 0.87rem; font-weight: 600;
	color: var(--text);
	cursor: pointer;
	transition: all 0.15s;
	font-family: inherit; text-align: center; line-height: 1.35;
}
.option-btn:hover:not(:disabled) { border-color: var(--primary); background: rgba(14,165,233,0.07); transform: translateY(-2px); }
.option-btn.correct { background: rgba(34,197,94,0.14)!important; border-color: #22c55e!important; color: #15803d!important; }
.option-btn.wrong   { background: rgba(239,68,68,0.12)!important; border-color: #ef4444!important; color: #dc2626!important; }
.option-btn:disabled { cursor: not-allowed; opacity: 0.82; }

.answer-feedback {
	padding: 0.75rem 1rem; border-radius: 10px;
	font-weight: 600; font-size: 0.92rem; text-align: center;
	line-height: 1.5; margin-bottom: 0.5rem;
}
.answer-feedback.correct { background: rgba(34,197,94,0.12); color: #15803d; border: 1.5px solid #22c55e; }
.answer-feedback.wrong   { background: rgba(239,68,68,0.10); color: #dc2626; border: 1.5px solid #ef4444; }

.btn-next {
	width: 100%; padding: 0.9rem;
	background: var(--primary); color: #fff; border: none;
	border-radius: 12px; font-size: 1rem; font-weight: 700;
	cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-next:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-next.hidden { display: none; }

/* ── GAME OVER ── */
.gameover-wrap {
	background: var(--card-bg);
	border: 2px solid #ef4444;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 8px 32px rgba(239,68,68,0.18);
	animation: shakeIn 0.5s ease;
}
@keyframes shakeIn { 0%{transform:scale(0.85) rotate(-2deg);opacity:0} 60%{transform:scale(1.04) rotate(1deg);opacity:1} 100%{transform:scale(1) rotate(0)} }
.gameover-icon { font-size: 4.5rem; display: block; margin-bottom: 0.4rem; animation: pulse 0.9s ease infinite alternate; }
@keyframes pulse { from{transform:scale(1)} to{transform:scale(1.08)} }
.gameover-title { font-family: 'Orbitron', sans-serif; font-size: clamp(2rem,8vw,3rem); font-weight: 900; color: #ef4444; text-shadow: 0 2px 12px rgba(239,68,68,0.22); margin-bottom: 0.4rem; }
.gameover-sub { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.5rem; }
.gameover-stats { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.2rem; }
.go-stat { background: var(--bg2); border-radius: 12px; padding: 0.8rem 1.4rem; min-width: 80px; }
.go-stat-val { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.go-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.gameover-player { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.gameover-player strong { color: var(--primary); }
.gameover-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.gameover-actions .btn-primary { width: auto; }

/* ── CERTIFICATE ── */
.cert-wrap { text-align: center; }
.cert-title { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; color: var(--primary); margin-bottom: 0.3rem; }
.cert-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.certificate {
	background: linear-gradient(135deg,#fffbeb 0%,#fef3c7 50%,#fde68a 100%);
	border: 4px solid #f59e0b; border-radius: 16px;
	padding: 2rem 1.5rem; margin: 0 auto 1.5rem; max-width: 480px;
	box-shadow: 0 8px 32px rgba(245,158,11,0.28), inset 0 0 0 6px rgba(255,255,255,0.5);
	position: relative;
}
.cert-decoration { position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;border:2px dashed rgba(245,158,11,0.4);margin:8px;border-radius:10px; }
.cert-logo { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.cert-org { font-family: 'Orbitron',sans-serif; font-size: 0.62rem; color: #92400e; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.8rem; }
.cert-heading { font-size: 0.85rem; color: #78350f; margin-bottom: 0.5rem; }
.cert-username { font-family: 'Orbitron',sans-serif; font-size: clamp(1.3rem,5vw,2rem); font-weight: 900; color: #92400e; margin-bottom: 0.8rem; word-break: break-word; }
.cert-desc { font-size: 0.87rem; color: #78350f; line-height: 1.5; margin-bottom: 1rem; }
.cert-score-badge { display: inline-block; background: #f59e0b; color: #fff; font-family: 'Orbitron',sans-serif; font-size: 1rem; font-weight: 700; padding: 0.4rem 1.2rem; border-radius: 20px; margin-bottom: 1rem; }
.cert-date { font-size: 0.75rem; color: #92400e; margin-top: 0.5rem; }
.cert-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.btn-cert { padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-cert-primary { background: var(--primary); color: #fff; border: none; }
.btn-cert-primary:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-cert-secondary { background: transparent; color: var(--text); border: 2px solid var(--card-border); }
.btn-cert-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* ── MUSIC PLAYER ── */
#gtc-music-player {
	position: fixed; bottom: 1.2rem; right: 1rem; z-index: 990;
	background: var(--card-bg); border: 1.5px solid var(--card-border);
	border-radius: 40px; padding: 0.5rem 1rem;
	display: flex; align-items: center; gap: 0.6rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-width: 220px;
}
#gtc-music-track { flex:1; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; color:var(--text); font-weight:600; font-size:0.75rem; }
.music-ctrl-btn { background:none; border:none; cursor:pointer; font-size:1rem; padding:0.2rem; color:var(--primary); flex-shrink:0; }

/* ── MILESTONE TOAST ── */
.milestone-toast {
	position:fixed; top:50%; left:50%;
	transform:translate(-50%,-50%) scale(0.85);
	background:var(--card-bg); border:2px solid var(--primary);
	border-radius:16px; padding:1.5rem 2rem; text-align:center;
	z-index:9999; box-shadow:0 16px 48px rgba(0,0,0,0.22);
	opacity:0; transition:all 0.28s; pointer-events:none;
}
.milestone-toast.show { opacity:1; transform:translate(-50%,-50%) scale(1); pointer-events:auto; }
.mt-icon { font-size:2.8rem; display:block; margin-bottom:0.4rem; }
.mt-text { font-weight:700; color:var(--primary); font-size:1.05rem; }

/* ── RESPONSIVE ── */
@media(max-width:520px){
	#game-wrapper { padding:1.5rem 0.75rem 3rem; }
	.mode-cards { grid-template-columns:1fr; gap:0.9rem; }
	.options-grid { grid-template-columns:1fr; }
	.flag-display { width:160px; height:100px; }
	.leader-photo-wrap { width:130px; height:130px; }
	#gtc-music-player { max-width:170px; padding:0.4rem 0.8rem; }
	.auth-tabs { flex-direction:row; }
	.gameover-stats { gap:1rem; }
}

/* ===== LEADER TEXT QUESTION ===== */
.leader-text-question {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.8rem;
	padding: 1.5rem 2rem;
	background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(139,92,246,0.08));
	border: 2px solid var(--primary);
	border-radius: 16px;
	text-align: center;
	min-height: 120px;
	gap: 0.5rem;
}
.leader-text-label {
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 2.5px;
	text-transform: uppercase;
}
.leader-country-display {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.4rem, 5vw, 2.2rem);
	font-weight: 900;
	color: var(--text);
	line-height: 1.2;
}
.leader-text-sub {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.2rem;
}

/* ===== MODERN CERTIFICATE ===== */
.certificate {
	background: #0a0e1a;
	border: 1px solid rgba(34,211,165,0.3);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	margin: 0 auto 1.5rem;
	max-width: 500px;
	box-shadow:
		0 0 0 1px rgba(34,211,165,0.1),
		0 20px 60px rgba(0,0,0,0.5),
		inset 0 1px 0 rgba(255,255,255,0.05);
	position: relative;
	overflow: hidden;
}
.certificate::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at top, rgba(34,211,165,0.06) 0%, transparent 60%),
	            radial-gradient(ellipse at bottom right, rgba(139,92,246,0.06) 0%, transparent 60%);
	pointer-events: none;
}

/* Corner decorations */
.cert-corner {
	position: absolute;
	font-size: 1rem;
	color: rgba(34,211,165,0.5);
	font-weight: 700;
}
.cert-corner-tl { top: 14px; left: 18px; }
.cert-corner-tr { top: 14px; right: 18px; }
.cert-corner-bl { bottom: 14px; left: 18px; }
.cert-corner-br { bottom: 14px; right: 18px; }

.cert-inner {
	position: relative;
	text-align: center;
	z-index: 1;
}

.cert-top-badge {
	display: inline-block;
	background: linear-gradient(135deg, rgba(34,211,165,0.15), rgba(139,92,246,0.15));
	border: 1px solid rgba(34,211,165,0.3);
	border-radius: 30px;
	padding: 0.35rem 1.2rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #22d3a5;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.cert-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(34,211,165,0.4), transparent);
	margin: 0.8rem 0;
}
.cert-divider-thin {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
	margin: 0.8rem 0;
}

.cert-presents {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.45);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0.3rem;
}

.cert-heading-modern {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(0.85rem, 3vw, 1.1rem);
	font-weight: 900;
	color: #22d3a5;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	text-shadow: 0 0 20px rgba(34,211,165,0.4);
}

.cert-username-modern {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(1.5rem, 5vw, 2.2rem);
	font-weight: 900;
	color: #fff;
	margin: 0.5rem 0 0.8rem;
	word-break: break-word;
	text-shadow: 0 2px 20px rgba(34,211,165,0.2);
}

.cert-desc-modern {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.cert-score-modern {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #22d3a5, #8b5cf6);
	border-radius: 40px;
	padding: 0.55rem 1.5rem;
	margin-bottom: 0.6rem;
}
.cert-score-icon { font-size: 1.1rem; }
.cert-score-modern span:not(.cert-score-icon):not(.cert-score-label) {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.4rem;
	font-weight: 900;
	color: #fff;
}
.cert-score-label {
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(255,255,255,0.85);
	letter-spacing: 1.5px;
	align-self: flex-end;
	padding-bottom: 2px;
}

.cert-milestone-label {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.5);
	margin-bottom: 0.3rem;
}

.cert-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5rem;
}
.cert-footer-item { text-align: center; }
.cert-footer-label { font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.2rem; }
.cert-footer-val   { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7); }

/* Override old cert styles so they don't conflict */
.cert-decoration, .cert-logo, .cert-org, .cert-heading,
.cert-username, .cert-desc, .cert-score-badge, .cert-date { display: none !important; }

@media (max-width: 520px) {
	.certificate { padding: 1.8rem 1.2rem; }
	.cert-footer-row { flex-direction: column; gap: 0.8rem; }
}

/* ===== MODALS ===== */
.gtc-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.65);
	backdrop-filter: blur(3px);
	z-index: 9000;
}
.gtc-modal-overlay.active { display: block; }

.gtc-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	width: min(92vw, 380px);
	z-index: 9100;
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
	transition: transform 0.2s ease, opacity 0.2s ease;
	opacity: 0;
}
.gtc-modal.active {
	display: block;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.gtc-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.2rem 0.75rem;
	border-bottom: 1px solid var(--card-border);
	font-family: 'Orbitron', monospace;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.03em;
}

.gtc-modal-close {
	background: none;
	border: 1px solid var(--card-border);
	border-radius: 6px;
	color: var(--text-muted);
	cursor: pointer;
	font-size: 0.75rem;
	padding: 0.15rem 0.45rem;
	transition: all 0.15s;
	font-family: inherit;
}
.gtc-modal-close:hover { border-color: var(--error); color: var(--error); }

.gtc-modal-body {
	padding: 1.2rem 1.2rem 1.4rem;
}

/* Subtle link-style button */
.btn-link-subtle {
	background: none;
	border: none;
	color: var(--primary);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.78rem;
	opacity: 0.8;
	padding: 0.2rem 0;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.15s;
}
.btn-link-subtle:hover { opacity: 1; }
