
    /* Force Squarespace page wrapper to have no extra background or spacing */
    .sqs-block-code,
    .sqs-block-code .sqs-block-content {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
    }
    
    .gz-vote {
        --gz-bg: #0e0f0e;
        --gz-surface: #161816;
        --gz-surface-2: #1c1f1e;
        --gz-border: #2c302f;
        --gz-text: #f2ede6;
        --gz-text-secondary: #c8c3ba;
        --gz-text-muted: #9a9a9a;
        --gz-sage: #4a6b5c;
        --gz-sage-hover: #5a8370;
        --gz-sage-glow: rgba(74,107,92,0.25);
        --gz-success: #6ecf8e;
        --gz-radius: 8px;
        --gz-radius-lg: 14px;
        --gz-shadow: 0 4px 24px rgba(0,0,0,0.45);
        --gz-transition: 0.2s ease;
    
        font-family: inherit;
        color: var(--gz-text);
        background: var(--gz-bg);
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        max-width: 920px;
        margin: -20px auto 0;
        padding: 64px 28px 88px;
        position: relative;
        z-index: 1;
    }
    
    .gz-vote__bg-extend {
        position: fixed;
        inset: 0;
        background: #0e0f0e;
        z-index: 0;
        pointer-events: none;
    }
    
    .gz-vote *, .gz-vote *::before, .gz-vote *::after {
        box-sizing: border-box;
    }
    
    /* ── Header ── */
    
    .gz-vote__header {
        text-align: center;
        margin-bottom: 56px;
    }
    
    .gz-vote__logo {
        display: block;
        max-width: 260px;
        height: auto;
        margin: 0 auto 28px;
        opacity: 0.92;
    }
    
    .gz-vote__eyebrow {
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: var(--gz-text-muted);
        margin: 0 0 20px;
    }
    
    .gz-vote__title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 18px;
        color: var(--gz-text);
    }
    
    .gz-vote__subtitle {
        font-size: 1.1rem;
        color: var(--gz-text-secondary);
        max-width: 520px;
        margin: 0 auto 36px;
        line-height: 1.75;
    }
    
    .gz-vote__laurels {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 28px;
        margin: 0;
    }
    
    .gz-vote__laurel-img {
        height: 52px;
        width: auto;
        opacity: 0.8;
        transition: opacity var(--gz-transition);
    }
    
    .gz-vote__laurel-img:hover {
        opacity: 1;
    }
    
    /* ── Divider ── */
    
    .gz-vote__divider {
        width: 48px;
        height: 1px;
        background: var(--gz-sage);
        margin: 48px auto;
        opacity: 0.5;
    }
    
    /* ── Steps ── */
    
    .gz-vote__steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .gz-vote__step {
        padding: 30px 26px;
        border-radius: var(--gz-radius-lg);
        background: var(--gz-surface);
        border: 1px solid var(--gz-border);
        transition: border-color var(--gz-transition), transform var(--gz-transition);
    }
    
    .gz-vote__step:hover {
        border-color: var(--gz-sage);
        transform: translateY(-2px);
    }
    
    .gz-vote__step-num {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--gz-sage);
        margin-bottom: 14px;
        opacity: 0.6;
    }
    
    .gz-vote__step-title {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 8px;
        color: var(--gz-text);
    }
    
    .gz-vote__step-desc {
        color: var(--gz-text-muted);
        font-size: 0.92rem;
        line-height: 1.65;
        margin: 0;
    }
    
    /* ── Form Section ── */
    
    .gz-vote__form-section {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .gz-vote__section-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        margin: 0 0 14px;
        color: var(--gz-text);
    }
    
    .gz-vote__section-desc {
        color: var(--gz-text-secondary);
        max-width: 500px;
        margin: 0 auto 40px;
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .gz-vote__card {
        max-width: 540px;
        margin: 0 auto;
        background: var(--gz-surface);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius-lg);
        padding: 40px;
        box-shadow: var(--gz-shadow);
        text-align: left;
    }
    
    .gz-vote__form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .gz-vote__form.gz-hidden { display: none; }
    
    .gz-vote__field {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .gz-vote__field label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--gz-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }
    
    .gz-vote__field input {
        padding: 14px 16px;
        background: var(--gz-surface-2);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius);
        color: var(--gz-text);
        font-family: inherit;
        font-size: 1rem;
        transition: border-color var(--gz-transition), box-shadow var(--gz-transition);
        outline: none;
        width: 100%;
    }
    
    .gz-vote__field input::placeholder {
        color: #606462;
    }
    
    .gz-vote__field input:focus {
        border-color: var(--gz-sage);
        box-shadow: 0 0 0 3px var(--gz-sage-glow);
    }

    .gz-vote__field--error input,
    .gz-vote__field--error input:focus {
        border-color: #c87a6a;
        box-shadow: 0 0 0 3px rgba(200,122,106,0.18);
    }

    .gz-vote__error {
        font-size: 0.82rem;
        color: #c87a6a;
        line-height: 1.4;
        margin-top: 2px;
    }

    .gz-vote__error.gz-hidden { display: none; }

    .gz-vote__error-fix {
        background: none;
        border: none;
        padding: 0;
        margin-left: 4px;
        color: var(--gz-sage-hover);
        font-family: inherit;
        font-size: inherit;
        font-weight: 600;
        cursor: pointer;
        text-decoration: underline;
    }

    .gz-vote__error-fix:hover { color: var(--gz-text); }

    .gz-vote__optional {
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: #606462;
    }

    .gz-vote__phone-wrap {
        display: flex;
        gap: 10px;
        align-items: stretch;
    }

    .gz-vote__phone-country {
        position: relative;
        flex: 0 0 auto;
    }

    .gz-vote__phone-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 100%;
        padding: 14px 14px;
        background: var(--gz-surface-2);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius);
        color: var(--gz-text);
        font-family: inherit;
        font-size: 1rem;
        line-height: 1;
        cursor: pointer;
        white-space: nowrap;
        transition: border-color var(--gz-transition), box-shadow var(--gz-transition);
    }

    .gz-vote__phone-toggle:hover {
        border-color: var(--gz-text-muted);
    }

    .gz-vote__phone-toggle:focus,
    .gz-vote__phone-toggle[aria-expanded="true"] {
        border-color: var(--gz-sage);
        box-shadow: 0 0 0 3px var(--gz-sage-glow);
        outline: none;
    }

    .gz-vote__phone-caret {
        font-size: 0.7rem;
        color: var(--gz-text-muted);
        margin-left: 1px;
    }

    .gz-vote__phone-dropdown {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        width: 290px;
        max-width: 80vw;
        background: var(--gz-surface-2);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius);
        box-shadow: var(--gz-shadow);
        z-index: 60;
        overflow: hidden;
    }

    .gz-vote__phone-dropdown.gz-hidden { display: none; }

    #gzPhoneSearch {
        width: 100%;
        padding: 12px 14px;
        background: var(--gz-surface);
        border: none;
        border-bottom: 1px solid var(--gz-border);
        color: var(--gz-text);
        font-family: inherit;
        font-size: 0.95rem;
        outline: none;
    }

    #gzPhoneSearch::placeholder { color: #606462; }

    .gz-vote__phone-options {
        max-height: 240px;
        overflow-y: auto;
    }

    .gz-vote__phone-options::-webkit-scrollbar { width: 5px; }
    .gz-vote__phone-options::-webkit-scrollbar-track { background: transparent; }
    .gz-vote__phone-options::-webkit-scrollbar-thumb { background: var(--gz-border); border-radius: 3px; }

    .gz-vote__phone-opt {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        cursor: pointer;
        font-size: 0.92rem;
        transition: background var(--gz-transition);
    }

    .gz-vote__phone-opt:hover,
    .gz-vote__phone-opt--active {
        background: var(--gz-sage-glow);
    }

    .gz-vote__phone-opt-flag {
        flex: 0 0 auto;
        font-size: 1.05rem;
    }

    .gz-vote__phone-opt-name {
        flex: 1 1 auto;
        color: var(--gz-text);
    }

    .gz-vote__phone-opt-dial {
        flex: 0 0 auto;
        color: var(--gz-text-muted);
        font-size: 0.85rem;
    }

    .gz-vote__phone-empty {
        padding: 16px 14px;
        text-align: center;
        color: var(--gz-text-muted);
        font-size: 0.9rem;
    }

    .gz-vote__phone-input {
        flex: 1 1 auto;
        min-width: 0;
    }

    .gz-vote__field--error .gz-vote__phone-toggle,
    .gz-vote__field--error .gz-vote__phone-input {
        border-color: #c87a6a;
        box-shadow: 0 0 0 3px rgba(200,122,106,0.18);
    }
    
    .gz-vote__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .gz-vote__city-wrap { position: relative; }
    
    .gz-vote__suggestions {
        position: absolute;
        top: calc(100% + 4px);
        left: 0; right: 0;
        background: var(--gz-surface-2);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius);
        max-height: 200px;
        overflow-y: auto;
        z-index: 50;
        box-shadow: var(--gz-shadow);
    }
    
    .gz-vote__suggestions.gz-hidden { display: none; }
    
    .gz-vote__sug-item {
        padding: 12px 16px;
        cursor: pointer;
        font-size: 0.95rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background var(--gz-transition);
        color: var(--gz-text);
    }
    
    .gz-vote__sug-item:hover {
        background: var(--gz-sage-glow);
    }
    
    .gz-vote__sug-votes {
        font-size: 0.82rem;
        color: var(--gz-sage);
        font-weight: 600;
    }
    
    .gz-vote__sug-new {
        font-size: 0.78rem;
        color: var(--gz-text-muted);
        font-style: italic;
    }
    
    /* ── Buttons ── */
    
    .gz-vote__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border: none;
        border-radius: 100px;
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--gz-transition);
        text-decoration: none;
        line-height: 1;
        width: 100%;
    }
    
    .gz-vote__btn--primary {
        background: var(--gz-sage);
        color: #f2ede6;
    }
    
    .gz-vote__btn--primary:hover {
        background: var(--gz-sage-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 20px var(--gz-sage-glow);
    }
    
    .gz-vote__hero-btn.gz-vote__btn {
        width: auto;
        margin-top: 36px;
        padding: 16px 52px;
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }
    
    .gz-vote__btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        transform: none !important;
    }
    
    .gz-vote__btn--outline {
        background: transparent;
        color: var(--gz-text);
        border: 1px solid var(--gz-border);
        width: auto;
    }
    
    .gz-vote__btn--outline:hover {
        border-color: var(--gz-text-muted);
        background: var(--gz-surface);
    }
    
    /* ── Success ── */
    
    .gz-vote__success {
        text-align: center;
        padding: 20px 0;
    }
    
    .gz-vote__success.gz-hidden { display: none; }
    
    .gz-vote__success-icon {
        width: 60px; height: 60px;
        border-radius: 50%;
        background: rgba(110,207,142,0.08);
        color: var(--gz-success);
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        border: 2px solid rgba(110,207,142,0.25);
    }
    
    .gz-vote__success h3 {
        font-size: 1.2rem;
        margin: 0 0 10px;
        color: var(--gz-text);
    }
    
    .gz-vote__success p {
        color: var(--gz-text-secondary);
        margin: 0 0 24px;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .gz-vote__share {
        margin: 28px 0 24px;
        text-align: center;
    }

    .gz-vote__share-label {
        font-size: 0.92rem;
        color: var(--gz-text-secondary);
        margin: 0 0 16px;
        line-height: 1.5;
    }

    .gz-vote__share-btns {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .gz-vote__share-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 100px;
        font-family: inherit;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--gz-transition);
        text-decoration: none;
        border: 1px solid var(--gz-border);
        background: var(--gz-surface-2);
        color: var(--gz-text);
        line-height: 1;
    }

    .gz-vote__share-btn:hover {
        border-color: var(--gz-sage);
        background: var(--gz-sage-glow);
        transform: translateY(-1px);
    }

    .gz-vote__share-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        flex-shrink: 0;
    }

    .gz-vote__share-btn--copied {
        border-color: var(--gz-success) !important;
        color: var(--gz-success) !important;
    }
    
    /* ── City List ── */
    
    .gz-vote__cities {
        text-align: center;
    }
    
    .gz-vote__list-wrap {
        max-width: 620px;
        margin: 0 auto;
        background: var(--gz-surface);
        border: 1px solid var(--gz-border);
        border-radius: var(--gz-radius-lg);
        overflow: hidden;
    }
    
    .gz-vote__list-head {
        padding: 18px 24px;
        border-bottom: 1px solid var(--gz-border);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .gz-vote__list-head h3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        color: var(--gz-text);
    }
    
    .gz-vote__list {
        max-height: 440px;
        overflow-y: auto;
        padding: 6px 0;
    }
    
    .gz-vote__list::-webkit-scrollbar { width: 5px; }
    .gz-vote__list::-webkit-scrollbar-track { background: transparent; }
    .gz-vote__list::-webkit-scrollbar-thumb { background: var(--gz-border); border-radius: 3px; }
    
    .gz-vote__city {
        display: flex;
        align-items: center;
        padding: 14px 24px;
        transition: background var(--gz-transition);
    }
    
    .gz-vote__city:hover {
        background: rgba(74,107,92,0.06);
    }
    
    .gz-vote__city-rank {
        width: 30px;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--gz-sage);
        opacity: 0.6;
        flex-shrink: 0;
    }
    
    .gz-vote__city-info {
        flex: 1;
        margin-left: 8px;
        text-align: left;
    }
    
    .gz-vote__city-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--gz-text);
    }
    
    .gz-vote__city-country {
        font-size: 0.78rem;
        color: var(--gz-text-muted);
        margin-top: 2px;
    }
    
    .gz-vote__city-count {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--gz-sage);
        margin-right: 5px;
    }
    
    .gz-vote__city-label {
        font-size: 0.78rem;
        color: var(--gz-text-muted);
    }
    
    .gz-vote__list-empty {
        padding: 36px 24px;
        text-align: center;
        color: var(--gz-text-muted);
        font-size: 0.95rem;
    }
    
    /* ── Loading ── */
    
    .gz-vote__loading {
        text-align: center;
        padding: 36px;
        color: var(--gz-text-muted);
        font-size: 0.9rem;
    }
    
    .gz-vote__spinner {
        width: 28px; height: 28px;
        border: 3px solid var(--gz-border);
        border-top-color: var(--gz-sage);
        border-radius: 50%;
        animation: gzSpin 0.8s linear infinite;
        margin: 0 auto 12px;
    }
    
    @keyframes gzSpin { to { transform: rotate(360deg); } }
    
    /* ── Responsive ── */
    
    @media (max-width: 700px) {
        .gz-vote__steps { grid-template-columns: 1fr; }
        .gz-vote__row { grid-template-columns: 1fr; }
        .gz-vote__card { padding: 28px 20px; }
        .gz-vote { padding: 40px 18px 60px; }
        .gz-vote__logo { max-width: 200px; }
        .gz-vote__laurels { gap: 16px; }
        .gz-vote__laurel-img { height: 40px; }
    }
    