* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.block {
    display: block;
}
.relative {
    position: relative;
}
body {
    font-family: 'atten-new', 'Montserrat', 'Karla', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    background: #151d24;
    min-height: 100vh;
    background: linear-gradient(to bottom, #253442 0%, #2e4050 200px, #0f161c 200px, #0f161c 100%);
}
.go-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 24px;
    max-width: 550px;
    margin: 0 auto;
    min-height: 100vh;
}
.go-logo-container {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
}
.go-logo {
    height: 48px;
    width: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.go-logo:hover {
    opacity: 0.8;
}
.go-card {
    width: 100%;
    max-width: 480px;
    background: #151d24;
    border: none;
    border-radius: 8px;
    padding: 40px 40px 25px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.go-state {
    display: none;
}
.go-state.active {
    display: block;
}
.go-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: #f1f5f9;
}
.go-subtitle {
    font-size: 19px;
    color: #94a3b8;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5;
}
.go-contact-display {
    font-weight: 600;
    color: #add8e6;
}
.go-form-group {
    margin-bottom: 16px;
}
.go-label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e2e8f0;
}
.go-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 18px;
    font-family: inherit;
    border: 1px solid #334155;
    background: #1e2832;
    color: #e2e8f0;
    transition: all 0.2s ease;
}
.go-input::placeholder {
    color: #64748b;
}
.go-input:focus {
    outline: none;
    border-color: #add8e6;
    box-shadow: 0 0 0 2px rgba(173, 216, 230, 0.2);
}
.go-code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.go-code-digit {
    width: 64px;
    height: 72px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid #334155;
    background: #1e2832;
    color: #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.go-code-digit:focus {
    outline: none;
    border-color: #add8e6;
    box-shadow: 0 0 0 2px rgba(173, 216, 230, 0.2);
    transform: translateY(-2px);
}
.go-code-inputs.error .go-code-digit {
    border-color: #f87171;
}
.go-code-inputs.error {
    animation: shake 0.4s ease;
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    75% {
        transform: translateX(8px);
    }
}
.go-error-message {
    font-size: 16px;
    color: #fecaca;
    background-color: rgba(248, 113, 113, 0.15);
    border: 1px solid #f87171;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    text-align: left;
    animation: fadeIn 0.3s ease;
    line-height: 1.5;
}
.go-success-message {
    font-size: 18px;
    color: #86efac;
    margin-top: 10px;
    text-align: center;
    display: none;
}
.go-success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.go-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.go-btn-text {
    display: inline-block;
}
.go-btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(15, 22, 28, 0.3);
    border-top-color: #add8e6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}
.go-btn.loading .go-btn-text {
    visibility: hidden;
}
.go-btn.loading .go-method-icon,
.go-btn.loading .go-method-content {
    visibility: hidden;
}
.go-btn.loading .go-btn-spinner {
    display: block;
}
.go-btn.loading {
    cursor: not-allowed;
}
.go-btn-primary {
    background: #add8e6;
    color: #0f161c;
    margin-bottom: 12px;
    box-shadow: 0 2px 0 rgba(173, 216, 230, 0.3);
}
.go-btn-primary:hover:not(:disabled) {
    background: #b8dde9;
    filter: brightness(1.1);
}
.go-btn-primary:active:not(:disabled) {
    filter: brightness(0.95);
}
.go-btn-primary:disabled {
    background: #334155;
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}
.go-btn-primary.loading {
    background: #add8e6;
    color: #0f161c;
}
.go-btn-secondary {
    background: transparent;
    color: #add8e6;
    border: 1px solid #add8e6;
    margin-bottom: 12px;
    border-radius: 8px;
}
.go-btn-secondary:hover {
    background: rgba(173, 216, 230, 0.1);
}
.go-btn-link {
    background: none;
    color: #add8e6;
    text-decoration: underline;
    padding: 6px 10px;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.go-btn-link:hover {
    color: #b8dde9;
    text-decoration: none;
}
.go-btn-link.sending {
    color: #64748b;
    text-decoration: none;
    pointer-events: none;
}
.go-btn-link.success {
    color: #86efac;
    text-decoration: none;
    pointer-events: none;
}
.go-resend-cooldown-bar {
    width: 50%;
    height: 4px;
    background: rgba(173, 216, 230, 0.2);
    border-radius: 0;
    margin: 6px auto 0;
    overflow: hidden;
}
.go-resend-cooldown-progress {
    height: 100%;
    background: #add8e6;
    width: 0%;
}
.go-btn-method {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px 22px;
    margin-bottom: 14px;
    background: #1e2832;
    border: 1px solid #334155;
    font-size: 18px;
    text-align: left;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.go-btn-method:hover {
    border-color: #add8e6;
    background: rgba(173, 216, 230, 0.08);
    box-shadow: 0 0 0 1px rgba(173, 216, 230, 0.2);
}
.go-method-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.go-method-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.go-method-text {
    font-weight: 600;
    font-size: 18px;
    color: #e2e8f0;
}
.go-method-detail {
    font-size: 18px;
    color: #94a3b8;
    font-weight: 400;
}
.go-remember-group {
    margin-top: 16px;
    margin-bottom: 20px;
}
.checklist-label {
    display: block;
    padding: 12px 0;
    cursor: pointer;
}
.checklist-label .cbx-wrap {
    position: relative;
    top: 0;
    width: 100%;
    left: 0;
    padding-left: 35px;
}
.checklist-label .cbx {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.checklist-label b {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #94a3b8;
    position: relative;
    top: 0;
}
.checklist-label .cbx input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
    width: 24px;
    height: 24px;
}
.checklist-label .cbx .label {
    width: 24px;
    height: 24px;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    background: #334155;
}
.checklist-label .cbx svg {
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
}
.checklist-label .cbx path {
    stroke: #0f161c;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
}
.checklist-label .cbx input:checked + .label {
    animation: splash 0.6s ease forwards;
}
.checklist-label .cbx input:checked + .label + svg path {
    stroke-dashoffset: 0;
}
.checklist-label .vh {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@keyframes splash {
    40% {
        background: #add8e6;
        box-shadow:
            0 -18px 0 -8px #add8e6,
            16px -8px 0 -8px #add8e6,
            16px 8px 0 -8px #add8e6,
            0 18px 0 -8px #add8e6,
            -16px 8px 0 -8px #add8e6,
            -16px -8px 0 -8px #add8e6;
    }
    100% {
        background: #add8e6;
        box-shadow:
            0 -36px 0 -10px transparent,
            32px -16px 0 -10px transparent,
            32px 16px 0 -10px transparent,
            0 36px 0 -10px transparent,
            -32px 16px 0 -10px transparent,
            -32px -16px 0 -10px transparent;
    }
}
.go-link-group {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 12px;
}
.go-footer-links {
    text-align: center;
    margin-top: 16px;
    font-size: 18px;
    width: 100%;
}
.go-footer-link {
    color: #add8e6;
    text-decoration: none;
}
.go-footer-link:hover {
    color: #b8dde9;
    text-decoration: underline;
}
.go-separator {
    color: #475569;
    margin: 0 12px;
    user-select: none;
}
.go-icon-container {
    margin: 0 0;
    display: flex;
    justify-content: center;
}
.go-success-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
.go-checkmark-svg {
    width: 100%;
    height: 100%;
}
.go-checkmark-circle {
    stroke: #add8e6;
    stroke-width: 3.5;
    stroke-dasharray: 145;
    stroke-dashoffset: 145;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}
.go-checkmark-check {
    stroke: #add8e6;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}
.go-loader {
    width: 40px;
    height: 40px;
    border: 5px solid #334155;
    border-top-color: #add8e6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.go-info-box {
    background: rgba(173, 216, 230, 0.08);
    border: 1px solid rgba(173, 216, 230, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 28px 0;
    text-align: center;
}
.go-info-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #94a3b8;
}
.go-minted-url {
    font-size: 18px;
    font-weight: 600;
    color: #add8e6;
    margin-bottom: 14px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    background: #1e2832;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #334155;
}
.go-help-section {
    background: #1e2832;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 20px;
    margin: 28px 0;
}
#go-first-time-success > .go-btn-primary,
#go-first-time-success > a.go-btn-primary {
    display: block;
    text-align: center;
    text-decoration: none;
}
#go-first-time-success > a.go-btn-primary {
    color: #0f161c;
}
#go-first-time-success > a.go-btn-primary:hover {
    color: #0f161c;
    background: #b8dde9;
    filter: brightness(1.1);
}
#go-first-time-success > a.go-btn-primary:active {
    filter: brightness(0.95);
}
.go-copy-success {
    background: #86efac !important;
    color: #0f161c !important;
    border-color: #86efac !important;
}
.go-help-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #f1f5f9;
}
.go-platform-instructions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.go-instruction-item {
    font-size: 16px;
    color: #94a3b8;
}
.go-instruction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.go-instruction-header strong {
    font-size: 17px;
    color: #e2e8f0;
    font-weight: 600;
}
.go-help-icon {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #add8e6;
    transition: all 0.2s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.go-help-icon:hover {
    color: #b8dde9;
    background: rgba(173, 216, 230, 0.1);
}
.go-help-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #add8e6;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    transition: all 0.2s ease;
    font-family: inherit;
}
.go-help-link:hover {
    color: #b8dde9;
    text-decoration: none;
}
.go-help-icon-bubble {
    color: #add8e6;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.go-help-link:hover .go-help-icon-bubble {
    color: #b8dde9;
}
.go-inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    color: #94a3b8;
}
.go-instruction-steps {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}
.go-instruction-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}
.go-instruction-steps li:last-child {
    margin-bottom: 0;
}
.go-instruction-text {
    flex: 1;
}
.go-instruction-link {
    color: #add8e6;
    text-decoration: underline;
    font-weight: 500;
    white-space: nowrap;
    font-size: 17px;
}
.go-instruction-link:hover {
    color: #b8dde9;
    text-decoration: none;
}
.go-icon-text {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 18px;
}
.go-method-selection {
    margin: 24px 0;
    display: flex;
    gap: 12px;
}
.go-method-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
    background: #1e2832;
    border: 1px solid #334155;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.go-method-card:hover {
    border-color: #add8e6;
    background: rgba(173, 216, 230, 0.06);
}
.go-method-card.active {
    border-color: #add8e6;
    background: rgba(173, 216, 230, 0.1);
}
.go-method-card.active::after {
    content: '✓';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #add8e6;
    color: #0f161c;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 8px 1px 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.go-method-card .go-method-icon {
    font-size: 32px;
}
.go-method-card .go-method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.go-method-card .go-method-text {
    font-weight: 600;
    font-size: 16px;
    color: #e2e8f0;
}
.go-method-card .go-method-detail {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}
.go-meta {
    margin: 12px 0;
    color: #94a3b8;
    font-size: 18px;
    text-align: center;
}
.go-device-suggestions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.go-device-pill {
    width: auto;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
}
.go-returning-content {
    text-align: center;
    padding: 40px 0;
}
.go-returning-animation-container {
    position: relative;
    margin: 24px 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.go-returning-spinner-container,
#go-returning .go-icon-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}
#go-returning .go-success-icon {
    width: 40px;
    height: 40px;
}

.hua {
    position: relative;
    color: #add8e6;
    text-decoration: none;
    border-bottom: 1px solid #add8e6;
}
.hua:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -3px;
    left: 0;
    background-color: #add8e6;
    transform-origin: bottom right;
    transition:
        transform 0.25s ease-out,
        background 0.25s ease-out;
}
.hua:hover:after,
.hua:focus:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 640px) {
    #go-state-nav,
    .go-debug-bar {
        display: none !important;
    }

    body {
        font-size: 16px;
        background: #0f161c;
    }

    .go-container {
        padding: 24px 16px 40px;
    }

    .go-card {
        padding: 28px 20px;
    }

    .go-logo-container {
        margin-bottom: 10px;
    }

    .go-logo {
        height: 40px;
    }

    .go-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .go-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .go-label {
        font-size: 16px;
    }

    .go-input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .go-code-digit {
        width: 56px;
        height: 64px;
        font-size: 24px;
    }

    .go-code-inputs {
        gap: 8px;
    }

    .go-btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .go-info-box {
        padding: 16px;
        margin: 20px 0;
    }

    .go-info-title {
        font-size: 15px;
    }

    .go-minted-url {
        font-size: 14px;
        padding: 8px 10px;
    }

    .go-help-section {
        padding: 16px;
        margin: 20px 0;
    }

    .go-help-title {
        font-size: 16px;
    }

    .go-instruction-item {
        font-size: 15px;
    }

    .go-instruction-header strong {
        font-size: 16px;
    }

    .go-instruction-steps {
        padding-left: 18px;
    }

    .go-instruction-steps li {
        margin-bottom: 6px;
    }

    .go-help-link {
        font-size: 14px;
    }

    .go-inline-icon {
        width: 16px;
        height: 16px;
    }

    .go-icon-text {
        font-size: 15px;
    }

    .go-method-icon {
        font-size: 28px;
    }

    .go-method-text {
        font-size: 16px;
    }

    .go-method-detail {
        font-size: 15px;
    }

    .go-btn-method {
        padding: 14px 16px;
        gap: 14px;
    }

    .go-footer-links {
        font-size: 15px;
        margin-top: 12px;
    }

    .go-error-message {
        font-size: 15px;
        padding: 12px 14px;
    }

    .go-icon-container {
        margin: 0 0;
    }

    .go-success-icon {
        width: 56px;
        height: 56px;
    }

    .go-method-selection {
        margin: 20px 0;
    }

    .go-method-card {
        padding: 16px 12px;
    }

    .go-method-card .go-method-icon {
        font-size: 28px;
    }

    .go-method-card .go-method-text {
        font-size: 15px;
    }

    .go-method-card .go-method-detail {
        font-size: 15px;
    }
}
.fancybox__content {
    background: #1e2832 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
}
