/* ============================================================
   GIVEAWAY CLAIM PANEL — 5 variants (A-E)
   Extracted from mockup-v4 post template
   Tech aesthetic: Inter sans + cool zinc + orange gradient
   ============================================================ */

/* ====== DESIGN TOKENS ====== */
.hwgw-claim {
    /* Brand — orange with gradient version for high-tech feel */
    --accent: #ff4e0c;
    --accent-dark: #e63d00;
    --accent-light: #ff7a3d;
    --accent-soft: #fff4ee;
    --accent-tint: #ffd9c2;
    --accent-grad: linear-gradient(135deg, #ff4e0c 0%, #ff7a3d 100%);
    --accent-grad-hover: linear-gradient(135deg, #e63d00 0%, #ff5a1f 100%);

    /* Background — cool neutral (zinc-inspired) */
    --bg: #fafafa;
    --bg-card: #ffffff;
    --bg-sunken: #f4f4f5;
    --bg-elev: #ffffff;

    /* Ink — cool zinc palette */
    --ink-1: #09090b;     /* main heading */
    --ink-2: #18181b;     /* body */
    --ink-3: #3f3f46;     /* secondary */
    --ink-4: #71717a;     /* muted */
    --ink-5: #a1a1aa;     /* placeholder */
    --line: #e4e4e7;      /* divider */
    --line-soft: #f4f4f5;

    /* Semantic — cooler variants */
    --green: #16a34a;
    --green-soft: #f0fdf4;
    --red: #dc2626;
    --red-soft: #fef2f2;
    --amber: #d97706;

    /* Subtle effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px -8px rgba(0, 0, 0, 0.1), 0 4px 8px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 0 1px rgba(255, 78, 12, 0.1), 0 8px 20px -4px rgba(255, 78, 12, 0.25);

    /* Type — all sans, tighter spacing */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

    --container: 1240px;
    --gap: 40px;
    --sidebar: 320px;
}

/* ====== EYEBROW (used inside claim head) ====== */
.hwgw-claim .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    font-family: var(--font-mono);
}
.hwgw-claim .eyebrow::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}

/* ============================================================
   CLAIM PANEL — modular, supports 5+ variants
   ============================================================ */
.hwgw-claim.claim {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
    margin: 56px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.hwgw-claim.claim::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-grad);
    opacity: 0.9;
}
@media (max-width: 720px) { .hwgw-claim.claim { padding: 26px 22px; border-radius: 16px; } }

.hwgw-claim .claim-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
@media (max-width: 720px) { .hwgw-claim .claim-grid { grid-template-columns: 1fr; gap: 28px; } }

.hwgw-claim .claim-head {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 600px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-soft);
}
.hwgw-claim .claim-head .eyebrow {
    justify-content: center;
}
.hwgw-claim .claim-title {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.15;
    color: var(--ink-1);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin: 0 0 10px;
}
@media (max-width: 720px) { .hwgw-claim .claim-title { font-size: 24px; } }
.hwgw-claim .claim-sub {
    font-size: 14.5px;
    color: var(--ink-3);
    margin: 0;
    line-height: 1.55;
}
.hwgw-claim .micro-trust .hwgw-claimed {
    display: inline-flex;
    align-items: center;
    color: var(--accent-dark);
    font-family: var(--font-mono);
    font-weight: 700;
}
.hwgw-claim .micro-trust .hwgw-claimed strong { color: var(--ink-1); font-weight: 700; }

.hwgw-claim .countdown {
    display: flex; align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.hwgw-claim .countdown-cell {
    display: flex; flex-direction: column; align-items: center;
    min-width: 50px;
}
.hwgw-claim .countdown-num {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 600;
    color: var(--ink-1);
    line-height: 1;
    font-feature-settings: 'tnum';
    letter-spacing: -0.03em;
}
.hwgw-claim .countdown-label {
    font-size: 10.5px;
    color: var(--ink-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    font-weight: 600;
}
.hwgw-claim .countdown-sep {
    color: var(--ink-5);
    font-size: 28px;
    line-height: 1;
    align-self: flex-start;
    margin-top: 2px;
}

.hwgw-claim .def-list { list-style: none; margin: 0; padding: 0; }
.hwgw-claim .def-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14.5px;
    line-height: 1.5;
}
.hwgw-claim .def-list li:last-child { border-bottom: none; }
.hwgw-claim .def-list .label { color: var(--ink-4); font-weight: 500; }
.hwgw-claim .def-list .val { color: var(--ink-2); }
.hwgw-claim .def-list .val code {
    background: var(--bg-sunken);
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--accent-dark);
}
.hwgw-claim .def-list .val a { color: var(--accent); font-weight: 500; }

/* ----- RIGHT SIDE: variant-shared atoms ----- */
.hwgw-claim .claim-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
/* The form wrapper must carry its own rhythm: .claim-right's gap only spaces
   its direct children, and .hwgw-form is a single child — without this the
   inner blocks collapse together and theme margins (Rehub) shift the spacing. */
.hwgw-claim .hwgw-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hwgw-claim .hwgw-form > * { margin: 0; }
.hwgw-claim .hwgw-message:empty { display: none; }
.hwgw-claim .claim-variant-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-5);
    padding: 4px 10px;
    background: var(--bg-sunken);
    border-radius: 4px;
    align-self: flex-start;
}

.hwgw-claim .field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
}
.hwgw-claim .email-input-wrap { position: relative; }
.hwgw-claim .email-input {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--bg);
    padding: 0 16px 0 44px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink-1);
    outline: none;
    transition: all .15s;
}
.hwgw-claim .email-input { padding-left: 48px !important; }
.hwgw-claim .email-input::placeholder { color: var(--ink-5); }
.hwgw-claim .email-input:focus {
    background: #fff;
    border-color: var(--ink-3);
    box-shadow: 0 0 0 3px rgba(26, 24, 20, 0.08);
}
.hwgw-claim .email-input-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: var(--ink-4);
    pointer-events: none;
    z-index: 2;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hwgw-claim .email-hint {
    font-size: 12.5px;
    color: var(--ink-4);
    margin: 6px 0 0 !important;
    line-height: 1.45;
}
.hwgw-claim p.email-hint { margin: 6px 0 6px 0 !important; }
.hwgw-claim .email-check {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.5;
    cursor: pointer;
}
.hwgw-claim .email-check input {
    flex-shrink: 0;
    margin: 3px 0 0;
    accent-color: var(--accent);
    width: 15px; height: 15px;
}
.hwgw-claim .captcha-placeholder {
    height: 60px;
    background: var(--bg-sunken);
    border: 1px dashed var(--line);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-4);
    font-size: 12.5px;
    gap: 6px;
}
.hwgw-claim .btn-submit {
    height: 50px;
    background: var(--accent-grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    transition: all .2s;
    letter-spacing: -0.01em;
    width: 100%;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}
.hwgw-claim .btn-submit:hover { background: var(--accent-grad-hover); transform: translateY(-1px); text-decoration: none; color: #fff; box-shadow: 0 0 0 1px rgba(255, 78, 12, 0.15), 0 12px 28px -6px rgba(255, 78, 12, 0.4); }
.hwgw-claim .btn-submit:active { transform: scale(0.99); }
.hwgw-claim .btn-submit.is-dark { background: var(--ink-1); box-shadow: var(--shadow-md); }
.hwgw-claim .btn-submit.is-dark:hover { background: #000; box-shadow: var(--shadow-lg); }
.hwgw-claim .btn-submit:disabled,
.hwgw-claim .hwgw-share-btn:disabled,
.hwgw-claim .hwgw-email-unlock-btn:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}
.hwgw-claim .btn-submit:focus-visible,
.hwgw-claim .hwgw-share-btn:focus-visible,
.hwgw-claim .hwgw-email-unlock-btn:focus-visible,
.hwgw-claim .hwgw-share-modal__close:focus-visible,
.hwgw-claim .hwgw-proof:focus-visible,
.hwgw-claim .hwgw-external-link:focus-visible,
.hwgw-claim .email-check input:focus-visible {
    outline: 3px solid rgba(255, 78, 12, .32);
    outline-offset: 3px;
}
.hwgw-claim .hwgw-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.5);
    border-top-color: #fff;
    border-radius: 999px;
    display: inline-block;
    animation: hwgw-spin .75s linear infinite;
}
@keyframes hwgw-spin { to { transform: rotate(360deg); } }
.hwgw-claim .hwgw-success-panel {
    background: var(--green-soft);
    border: 1px solid rgba(22, 163, 74, .25);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.hwgw-claim .hwgw-success-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}
.hwgw-claim .hwgw-success-panel h3 {
    color: var(--ink-1);
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 8px;
}
.hwgw-claim .hwgw-success-panel p {
    color: var(--ink-3);
    margin: 0 0 10px;
}
.hwgw-claim .hwgw-success-email {
    background: #fff;
    border: 1px solid rgba(22, 163, 74, .22);
    border-radius: 9px;
    color: var(--ink-1);
    display: inline-flex;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 7px 10px;
}
.hwgw-claim .hwgw-success-note {
    color: var(--ink-4) !important;
    font-size: 12.5px;
    margin-top: 12px !important;
}

/* Share & Download modal (inline unlock B/D) — aligned to demo design system */
.hwgw-claim .hwgw-share-modal[hidden] { display: none; }
body.hwgw-modal-open { overflow: hidden; }
.hwgw-claim .hwgw-share-modal {
	inset: 0;
	position: fixed;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.hwgw-claim .hwgw-share-modal__backdrop {
	background: rgba(9, 9, 11, 0.55);
	inset: 0;
	position: absolute;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.hwgw-claim .hwgw-share-modal__panel {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	max-width: 480px;
	padding: 34px 32px 26px;
	position: relative;
	width: 100%;
	overflow: hidden;
	text-align: center;
	animation: hwgw-modal-in .18s ease-out;
}
.hwgw-claim .hwgw-share-modal__panel::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: var(--accent-grad);
	opacity: 0.9;
}
@keyframes hwgw-modal-in {
	from { opacity: 0; transform: translateY(8px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hwgw-claim .hwgw-share-modal__close {
	background: transparent;
	border: 0;
	color: var(--ink-5);
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 12px;
	transition: color .15s;
}
.hwgw-claim .hwgw-share-modal__close:hover { color: var(--ink-2); }
.hwgw-claim .hwgw-share-modal__panel h3 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.15;
	color: var(--ink-1);
	margin: 4px 0 10px;
}
.hwgw-claim .hwgw-share-modal__panel p {
	color: var(--ink-3);
	font-size: 14.5px;
	line-height: 1.55;
	margin: 0 auto 22px;
	max-width: 360px;
}
.hwgw-claim .hwgw-share-modal__actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr;
	margin: 0 0 18px;
}
.hwgw-claim .hwgw-share-btn {
	height: 50px;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: transform .15s, box-shadow .2s, filter .2s;
	box-shadow: var(--shadow-sm);
}
.hwgw-claim .hwgw-share-btn[data-hwgw-network="facebook"] { background: #1877f2; }
.hwgw-claim .hwgw-share-btn[data-hwgw-network="x"] { background: var(--ink-1); }
.hwgw-claim .hwgw-share-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); filter: brightness(1.04); }
.hwgw-claim .hwgw-share-btn:active { transform: scale(0.99); }
.hwgw-claim .hwgw-share-btn svg { flex-shrink: 0; }
.hwgw-claim .hwgw-share-modal__alt {
	border-top: 1px solid var(--line-soft);
	padding-top: 16px;
}
.hwgw-claim .hwgw-share-modal__alt p {
	color: var(--ink-4);
	font-size: 12.5px;
	margin: 0 0 10px;
}
.hwgw-claim .hwgw-email-inline {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr auto;
}
.hwgw-claim .hwgw-email-inline input {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--bg);
	color: var(--ink-1);
	font-family: inherit;
	font-size: 14px;
	height: 46px;
	padding: 0 14px;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
}
.hwgw-claim .hwgw-email-inline input:focus {
	background: #fff;
	border-color: var(--ink-3);
	box-shadow: 0 0 0 3px rgba(26, 24, 20, 0.08);
}
.hwgw-claim .hwgw-email-unlock-btn {
	background: var(--ink-1);
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	height: 46px;
	padding: 0 18px;
	white-space: nowrap;
	transition: background .15s;
}
.hwgw-claim .hwgw-email-unlock-btn:hover { background: #000; }

@media (max-width: 720px) {
	.hwgw-claim .hwgw-share-modal__panel { padding: 28px 22px 22px; border-radius: 16px; }
	.hwgw-claim .hwgw-share-modal__panel h3 { font-size: 22px; }
	.hwgw-claim .hwgw-email-inline { grid-template-columns: 1fr; }
	.hwgw-claim .hwgw-email-unlock-btn { height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
	.hwgw-claim *, .hwgw-claim *::before, .hwgw-claim *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}

.hwgw-claim .micro-trust {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 12px;
    color: var(--ink-4);
    margin-top: 2px;
}
.hwgw-claim .micro-trust span { display: inline-flex; align-items: center; gap: 5px; }
.hwgw-claim .micro-trust svg { color: var(--green); }

/* ----- VARIANT B: Download ----- */
.hwgw-claim .dl-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hwgw-claim .dl-icon {
    width: 44px; height: 44px;
    background: var(--ink-1);
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hwgw-claim .dl-meta { flex: 1; min-width: 0; font-size: 13px; color: var(--ink-3); line-height: 1.45; }
.hwgw-claim .dl-meta-name {
    font-weight: 600;
    color: var(--ink-1);
    font-size: 14.5px;
    font-family: var(--font-mono);
    margin-bottom: 2px;
    word-break: break-all;
}
.hwgw-claim .hwgw-file-unlock {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--accent-dark);
    cursor: pointer;
    display: inline;
    padding: 0;
    text-align: left;
    text-decoration: underline;
    text-decoration-color: rgba(255,78,12,.25);
    text-underline-offset: 3px;
}
.hwgw-claim .hwgw-file-unlock:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}
.hwgw-claim .hwgw-file-unlock.is-unlocked::after {
    content: ' unlocked';
    color: var(--green);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}
.hwgw-claim .dl-checksum {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-4);
    word-break: break-all;
}

/* Download item wrapper: stack card + button + proof rows evenly */
.hwgw-claim .hwgw-dl-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-top: 1px solid var(--line-soft);
	margin-top: 14px;
	padding-top: 14px;
}
.hwgw-claim .hwgw-dl-item:first-of-type {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

/* ----- Verification proof chips: SHA-256 + VirusTotal share ONE design ----- */
.hwgw-claim .hwgw-proof {
	align-self: flex-start;
	align-items: center;
	display: inline-flex;
	gap: 6px;
	max-width: 100%;
	margin: 0;
	padding: 5px 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--bg-sunken);
	color: var(--ink-4);
	font-family: var(--font-mono);
	font-size: 11.5px;
	line-height: 1.35;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .15s, color .15s, background .15s;
}
.hwgw-claim .hwgw-proof strong { color: var(--ink-3); font-weight: 600; }
.hwgw-claim .hwgw-proof span {
	display: inline-block;
	max-width: clamp(120px, 48vw, 320px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hwgw-claim .hwgw-proof em {
	color: var(--green);
	font-style: normal;
	font-weight: 600;
}
/* Both the copy-hash button and the VirusTotal link behave identically */
.hwgw-claim .hwgw-copy-hash { cursor: pointer; }
.hwgw-claim .hwgw-proof-link:hover,
.hwgw-claim .hwgw-copy-hash:hover {
	color: var(--ink-2);
	border-color: var(--ink-4);
	background: #fff;
	text-decoration: none;
}
.hwgw-claim .hwgw-copy-hash.is-copied {
	border-color: var(--green);
	background: var(--green-soft);
}
.hwgw-claim .hwgw-copy-hash.is-copied span,
.hwgw-claim .hwgw-copy-hash.is-copied strong { color: var(--green); }
.hwgw-claim .hwgw-inline-ended {
	background: var(--bg-sunken);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 16px;
}
.hwgw-claim .hwgw-inline-ended__title {
	color: var(--ink-2);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
}
.hwgw-claim .hwgw-inline-ended__offer {
	color: var(--ink-3);
	font-size: 13px;
	margin-bottom: 12px;
}
.hwgw-claim .hwgw-inline-note {
	color: var(--ink-3);
	font-size: 12.5px;
	line-height: 1.5;
}
.hwgw-claim .hwgw-inline-custom {
	border-top: 1px dashed var(--line-soft);
	color: var(--ink-3);
	font-size: 13px;
	margin-top: 4px;
	padding-top: 10px;
}

/* ----- VARIANT C: Redeem Code ----- */
.hwgw-claim .redeem-code {
    background: var(--bg);
    border: 1px dashed var(--accent-tint);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
}
.hwgw-claim .redeem-code-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-4);
    font-weight: 600;
    margin-bottom: 10px;
}
.hwgw-claim .redeem-code-value {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    word-break: break-all;
}
.hwgw-claim .redeem-code-copy {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    background: var(--ink-1);
    color: #fff;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.hwgw-claim .redeem-code-copy:hover { background: #000; }
.hwgw-claim .hwgw-redeem-unlocked {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    gap: 10px;
    padding: 16px;
    text-align: center;
}
.hwgw-claim .hwgw-redeem-unlocked[hidden] { display: none; }
.hwgw-claim .hwgw-redeem-label {
    color: var(--ink-4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hwgw-claim .hwgw-redeem-code-list {
    display: grid;
    gap: 10px;
}
.hwgw-claim .hwgw-redeem-code-row {
    display: grid;
    gap: 5px;
}
.hwgw-claim .hwgw-redeem-code-row__label {
    color: var(--ink-4);
    font-size: 11.5px;
    font-weight: 700;
    text-align: left;
}
.hwgw-claim .hwgw-redeem-code-value {
    background: #fff;
    border: 1px dashed var(--accent-tint);
    border-radius: 10px;
    color: var(--accent-dark);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 14px 10px;
    word-break: break-all;
}
.hwgw-claim .hwgw-redeem-code-value:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* ----- VARIANT D: External Landing ----- */
.hwgw-claim .external-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    font-size: 13.5px;
    color: var(--ink-3);
    line-height: 1.55;
}
.hwgw-claim .external-card strong { color: var(--ink-1); font-weight: 600; }
.hwgw-claim .external-host {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-4);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    width: 100%;
}
.hwgw-claim .hwgw-external-links {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
}
.hwgw-claim .hwgw-external-links[hidden] { display: none; }
.hwgw-claim .hwgw-external-links__title {
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.hwgw-claim .hwgw-external-links__list {
    display: grid;
    gap: 8px;
}
.hwgw-claim .hwgw-external-link {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--ink-2);
    display: grid;
    gap: 2px;
    padding: 10px 12px;
    text-decoration: none;
    transition: border-color .15s, background .15s, transform .15s;
}
.hwgw-claim .hwgw-external-link:hover {
    background: #fff;
    border-color: var(--accent-tint);
    color: var(--ink-1);
    text-decoration: none;
    transform: translateY(-1px);
}
.hwgw-claim .hwgw-external-link strong {
    color: var(--accent-dark);
    font-size: 13.5px;
}
.hwgw-claim .hwgw-external-link span {
    color: var(--ink-4);
    font-family: var(--font-mono);
    font-size: 11.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ----- VARIANT E: Multi-step ----- */
.hwgw-claim .step-list { list-style: none; margin: 0 0 4px; padding: 0; counter-reset: step; }
.hwgw-claim .step-list li {
    counter-increment: step;
    position: relative;
    padding: 10px 0 10px 36px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
}
.hwgw-claim .step-list li:last-child { border-bottom: none; }
.hwgw-claim .step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 11px;
    width: 22px; height: 22px;
    background: var(--ink-1);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
}
.hwgw-claim .step-list li strong { color: var(--ink-1); font-weight: 600; }
.hwgw-claim .step-list li code {
    background: var(--bg-sunken);
    padding: 1px 6px;
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--accent-dark);
}

/* ============================================================
   VARIANTS DIVIDER (only for this demo page)
   ============================================================ */
.hwgw-claim .variant-divider {
    margin: 40px 0 -20px;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-soft);
    font-family: var(--font-mono);
    border: 1px dashed rgba(255, 78, 12, 0.25);
}

/* ====== SHARED BUTTON STYLES ====== */
.hwgw-claim .btn-submit {
    height: 50px;
    background: var(--accent-grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    transition: all .2s;
    letter-spacing: -0.01em;
    width: 100%;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}
.hwgw-claim .btn-submit:hover { background: var(--accent-grad-hover); transform: translateY(-1px); text-decoration: none; color: #fff; box-shadow: 0 0 0 1px rgba(255, 78, 12, 0.15), 0 12px 28px -6px rgba(255, 78, 12, 0.4); }
.hwgw-claim .btn-submit:active { transform: scale(0.99); }
.hwgw-claim .btn-submit.is-dark { background: var(--ink-1); box-shadow: var(--shadow-md); }
.hwgw-claim .btn-submit.is-dark:hover { background: #000; box-shadow: var(--shadow-lg); }

/* ===== WinningPC Giveaway — plugin runtime states ===== */
.hwgw-claim .hwgw-message{margin-top:10px;font-size:13px;font-weight:500;line-height:1.4}
.hwgw-claim .hwgw-msg-info{color:var(--ink-4)}
.hwgw-claim .hwgw-msg-success{color:var(--green)}
.hwgw-claim .hwgw-msg-error{color:#dc2626}
.hwgw-claim .hwgw-form.hwgw-done .email-input-wrap,
.hwgw-claim .hwgw-form.hwgw-done .email-check,
.hwgw-claim .hwgw-form.hwgw-done .hwgw-submit{opacity:.5;pointer-events:none}
.hwgw-claim .hwgw-ended{text-align:center;padding:14px 0}
.hwgw-claim .hwgw-ended-badge{display:inline-block;padding:4px 12px;border-radius:999px;background:var(--bg-sunken);color:var(--ink-4);font-size:12px;font-weight:600;letter-spacing:.02em;text-transform:uppercase;margin-bottom:12px}
.hwgw-claim .hwgw-ended-text{color:var(--ink-4);font-size:14px;margin:0 0 14px}
.hwgw-claim .hwgw-special{color:var(--ink-2);font-size:14px;margin-bottom:14px}
.hwgw-claim .hwgw-turnstile{margin:12px 0}
.hwgw-claim .hwgw-turnstile-after{margin:2px 0 10px}
.hwgw-claim .hwgw-inline-countdown{margin:0 0 12px;padding:12px 0}
.hwgw-claim .btn-submit:disabled{opacity:.6;cursor:not-allowed}
