@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

.wide-input select{
    width: 100%;
    max-width: 600px !important;
    padding: 8px;
    font-size: 16px;
}
.wide-input,
.wide-textarea {
    color: #ffffff;
}
.wide-input::placeholder,
.wide-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.wide-input::-webkit-input-placeholder,
.wide-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.wide-input:-ms-input-placeholder,
.wide-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.wide-input::-ms-input-placeholder,
.wide-textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
label {
    font-size: 18px;
    font-weight: 500;
    color: white;
}
.anketos-form {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    font-family: 'VT323', monospace;
    color: hsl(var(--emerald, 140 60% 45%));
}

.anketos-surface {
    position: relative;
    padding: 24px 22px 26px;
    overflow: hidden;
    isolation: isolate;
}

.anketos-surface::before {
    content: '';
    position: absolute;
    inset: 6px;
    z-index: 0;
}

.anketos-surface > * {
    position: relative;
    z-index: 1;
}

.error-container {
    margin: 8px 0 14px;
}
.anketos-progress {
    --progress-steps: 7;
    max-width: 100%;
    margin: 0 0 18px;
    filter: drop-shadow(0 1px 0 #000);
}
.anketos-progress.is-hidden {
    display: none;
}
.anketos-progress__bar {
    position: relative;
    padding: 8px 10px;
    background: linear-gradient(180deg, #0c121c 0%, #0a111a 100%);
    box-shadow: inset 4px 4px #fff3,inset -4px -4px #0000004d,4px 4px #00000080;
}
.anketos-progress__track {
    position: relative;
    height: 18px;
    border-radius: 0;
    overflow: hidden;
}
.anketos-progress__track::after {
    content: none;
}
.anketos-progress__fill {
    position: relative;
    height: 100%;
    width: var(--progress, 0%);
    transition: width 0.8s ease-out;
    background: linear-gradient(90deg, #80d41c 0%, #a4e94c 100%);
	box-shadow: rgba(0, 0, 0, 0.3) 0px -2px 0px inset, rgba(255, 255, 255, 0.2) 0px 2px 0px inset;
}

.anketos-progress__fill.is-animating {
    animation: anketos-progress-fill 0.8s ease-out forwards;
}

@keyframes anketos-progress-fill {
    from {
        width: var(--progress-from, 0%);
    }
    to {
        width: var(--progress, 100%);
    }
}
.anketos-progress__percent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
	font-size: 1.5rem;
	color: white;
    pointer-events: none;
}
.form-layout {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: stretch;
    flex-wrap: wrap;
}

.p-4 {
    padding: 1rem;
}

.bg-card {
    background-color: hsl(var(--card));
}

.minecraft-block {
    position: relative;
    box-shadow:
        inset 4px 4px rgba(255, 255, 255, 0.2),
        inset -4px -4px rgba(0, 0, 0, 0.35),
        0 4px 0 rgba(0, 0, 0, 0.45),
        0 10px 18px rgba(0, 0, 0, 0.6);
}

.step-indicators {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
    padding: 20px 18px 18px;
	background-color: hsl(220 15% 15%);
    box-shadow: inset 4px 4px #fff3,inset -4px -4px #0000004d,4px 4px #00000080;
    overflow: hidden;
    font-family: 'VT323', monospace;
    color: hsl(var(--emerald, 140 60% 45%));
}

.step-indicators::before {
    position: absolute;
	background-color: #21242C;
    pointer-events: none;
    filter: blur(0.5px);
}

.step-indicators__title {
    align-self: stretch;
    text-align: center;
    font-size: 1.25rem;
	line-height: 1rem;
    letter-spacing: 0.08em;
    padding: 12px 10px 10px;
    color: #8f96a3;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background-color: hsl(220deg 10% 25% / 30%);
    border: 3px solid transparent;
    box-shadow:
        rgba(255, 255, 255, 0.2) 4px 4px inset,
        rgba(0, 0, 0, 0.3) -4px -4px inset,
        rgba(0, 0, 0, 0.5) 4px 4px;
    color: hsl(var(--muted-foreground, 215 16% 60%));
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
    isolation: isolate;
    z-index: 1;
}

.step-indicator:hover {
    border-color: hsl(210deg 12% 65% / 55%);
    box-shadow:
        rgba(255, 255, 255, 0.25) 6px 6px inset,
        rgba(0, 0, 0, 0.35) -6px -6px inset,
        rgba(0, 0, 0, 0.6) 6px 6px;
}

.step-indicator.is-active:not(.is-complete) {
    border-color: hsl(210deg 12% 40% / 70%);
}

.step-indicator.is-active:not(.is-complete):hover {
    border-color: hsl(210deg 12% 55% / 85%);
}

.step-indicator.is-complete:hover {
    border-color: hsl(140deg 70% 30% / 85%);
}

.step-indicator.is-active:hover {
    border-color: hsl(140deg 70% 30% / 85%);
}

.step-indicator.is-clickable {
    cursor: pointer;
}

.step-indicator__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 8px;
    background: linear-gradient(180deg, #0f1622 0%, #0b111a 100%);
    box-shadow:
        inset 4px 4px #fff3,
        inset -4px -4px #0000004d,
        4px 4px #00000080;
    position: relative;
}

.step-indicator__icon svg {
    width: 24px;
    height: 24px;
}

.step-indicator__label {
    flex: 1;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: inherit;
    text-transform: none;
}

.step-indicator.is-active {
    background-color: hsl(140deg 70% 40% / 20%);
    box-shadow:
        rgba(255, 255, 255, 0.2) 6px 6px inset,
        rgba(0, 0, 0, 0.3) -6px -6px inset,
        rgba(0, 0, 0, 0.5) 6px 6px;
    color: hsl(var(--emerald, 140 60% 45%));
	border-color: hsl(140 70% 40%);
	border: 3px solid !important;
}

.step-indicator.is-active .step-indicator__icon {
    background: linear-gradient(180deg, rgba(54, 93, 66, 0.45) 0%, rgba(40, 74, 53, 0.6) 100%);
    border-color: hsl(140 70% 40%);
    box-shadow:
        inset 4px 4px #fff3,
        inset -4px -4px #0000004d,
        4px 4px #00000080;
}

.step-indicator.is-complete {
    background-color: hsl(45deg 90% 45% / 20%);
    box-shadow:
        rgba(255, 255, 255, 0.2) 4px 4px inset,
        rgba(0, 0, 0, 0.3) -4px -4px inset,
        rgba(0, 0, 0, 0.5) 4px 4px;
    color: #fff;
	border: 3px solid !important;
	border-color: hsl(45deg 100% 50% / 50%) !important;
}

.step-indicator.is-complete .step-indicator__icon {
    background: linear-gradient(180deg, rgb(255 186 0) 0%, rgb(255 185 0) 100%);
    border-color: hsl(45 90% 45%);
    box-shadow:
        inset 6px 6px #fff3,
        inset -6px -6px #0000004d,
        6px 6px #00000080;
}

.step-indicator.is-complete .step-indicator__icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: #1c1401;
}

.step-indicator:not(.is-active)::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 7px;
    pointer-events: none;
}

.step-indicator__icon svg {
    opacity: 0.75;
}

.step-indicator.is-active .step-indicator__icon svg {
    opacity: 1;
}

.step-indicator.is-complete .step-indicator__icon svg {
    opacity: 0;
}

.form-steps {
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    min-width: 260px;
    border: 4px solid hsl(var(--border));
    padding: 25px 25px 25px;
    background: hsl(220 15% 15%);
    box-shadow: inset 4px 4px #fff3,inset -4px -4px #0000004d,4px 4px #00000080;
}

.form-step {
    display: none;
    width: 100%;
}

.form-step.is-active {
    display: block;
    animation: form-step-in 0.7s ease-out;
}

.form-step.is-active.discord-auth-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
    gap: 12px;
    min-height: 0;
    padding: 24px 0;
}

@media (prefers-reduced-motion: reduce) {
    .form-step.is-active {
        animation: none;
    }
}

@keyframes form-step-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step.is-active.discord-auth-step > * {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .anketos-form {
        position: relative;
        padding: 0 28px;
    }

    .anketos-form::before,
    .anketos-form::after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: clamp(80px, 30vw, 160px);
        line-height: 1;
        color: hsl(var(--emerald, 140 60% 45%));
        opacity: 0.2;
        pointer-events: none;
        z-index: 0;
    }

    .anketos-form::before {
        content: '{';
        left: -8px;
    }

    .anketos-form::after {
        content: '}';
        right: -8px;
    }

    .anketos-surface {
        position: relative;
        z-index: 1;
    }

    .step-indicators {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        min-width: 0;
        padding: 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .step-indicators__title {
        display: none;
    }

    .step-indicator {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 10px 12px;
    }

    .step-indicator__label {
        font-size: 10px;
        line-height: 1.2;
        justify-content: center;
        min-height: auto;
        width: min-content;
        margin: 0 auto;
        white-space: normal;
    }

    .step-indicator__icon {
        width: 36px;
        height: 36px;
        padding: 6px;
    }


}

.form-step.is-active.discord-auth-step > section {
    margin-left: auto;
    margin-right: auto;
}

.form-step h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 10px 12px 9px;
    border: 3px solid hsl(var(--border));
    border-radius: 8px;
    background: none;
    color: #fff;
    font-family: 'VT323', monospace;
    letter-spacing: 0.04em;
    font-weight: 500;
    box-shadow: none;
}

.form-step h2 .form-step__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.form-step h2 .form-step__icon {
    display: inline-flex;
    align-items: center;
    color: #22c55e;
    line-height: 0;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.form-step h2 .form-step__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.discord-auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    text-align: center;
}

.discord-auth-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    color: #5865f2;
}

.discord-auth-header__icon svg {
    width: 70px;
    height: 70px;
}

.form-step .discord-auth-header__title {
    margin: 4px 0 2px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    text-align: center;
}

.discord-auth-header__subtitle {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
}

.discord-auth-step .btn-discord {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.discord-auth-step .discord-auth-box__status {
    width: 100%;
    text-align: center;
}

.discord-auth-action {
    width: 100%;
    padding: 22px 16px;
    margin: 8px auto 4px;
    border: 4px solid #6b74ff;
    background: #2a2f4a;
    box-shadow: inset 3px 3px rgba(255, 255, 255, 0.08), inset -3px -3px rgba(0, 0, 0, 0.4);
}

.discord-auth-action.is-connected {
    border-color: hsl(140 60% 45%);
    background: #1f3f32;
    box-shadow: inset 6px 6px #fff3,inset -6px -6px #0000004d,6px 6px #00000080;
	border-width: 4px;
	border-style: solid;
}

.discord-auth-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'VT323', monospace;
    letter-spacing: 0.04em;
}

.discord-auth-success__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    color: hsl(140 60% 45%);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.discord-auth-success__text {
    font-size: 1rem;
}

.form-step:not(:last-of-type) {
    padding-bottom: 12px;
}

.form-step label {
    font-family: 'VT323', monospace;
    letter-spacing: 0.04em;
}

.microphone-block {
    margin-top: 12px;
    padding: 18px 20px;
    background: #2f333b;
    border: 2px solid #3b414b;
    box-shadow: inset 3px 3px rgba(255, 255, 255, 0.08), inset -3px -3px rgba(0, 0, 0, 0.4);
}

.microphone-block label {
    display: block;
    margin-bottom: 12px;
}

.microphone-options {
    display: flex;
    gap: 24px;
    margin: 0;
}

.microphone-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'VT323', monospace;
    font-size: 20px;
    letter-spacing: 0.04em;
}

.microphone-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.microphone-option__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #1c1f25;
    color: #fff;
    font-size: 18px;
    line-height: 1;
	box-shadow: rgba(255, 255, 255, 0.2) 4px 4px inset, rgba(0, 0, 0, 0.3) -4px -4px inset, rgba(0, 0, 0, 0.5) 4px 4px;
}

.microphone-option__box::after {
    content: '';
}

.microphone-option--yes input:checked + .microphone-option__box {
    background: #1f7f46;
    border-color: #2fbf5b;
}

.microphone-option--yes input:checked + .microphone-option__box::after {
    content: '✓';
	padding: 2px;
	box-shadow: rgba(255, 255, 255, 0.2) 2px 2px inset, rgba(0, 0, 0, 0.3) -2px -2px inset, rgba(0, 0, 0, 0.5) 2px 2px;
}

.microphone-option--no input:checked + .microphone-option__box {
    background: #a82929;
    border-color: #e04b4b;
}

.microphone-option--no input:checked + .microphone-option__box::after {
    content: '✕';
	padding: 2px;
	box-shadow: rgba(255, 255, 255, 0.2) 2px 2px inset, rgba(0, 0, 0, 0.3) -2px -2px inset, rgba(0, 0, 0, 0.5) 2px 2px;
}

.microphone-options.field-error .microphone-option__box {
    border-color: #e04b4b;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.anketos-form[data-current-step="1"] [data-action="prev"] {
    display: none !important;
}

.anketos-form[data-current-step="7"] [data-action="next"] {
    display: none !important;
}

.anketos-form:not([data-current-step="7"]) .submit-button {
    display: none !important;
}

.nav-button,
.btn-discord {
    display: inline-block;
    padding: 12px 18px 11px;
    color: hsl(var(--emerald, 140 60% 45%));
    font-family: 'VT323', monospace;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    box-shadow: rgb(255 255 255 / .2) 4px 4px inset, rgb(0 0 0 / .3) -4px -4px inset, rgb(0 0 0 / .5) 4px 4px;
}

.btn-discord {
    background: hsl(140 70% 40%);
    color: #fff;
    border: none;
    cursor: pointer;
}
a.discord {
    display: inline-block;
    padding: 20px 28px 20px;
    color: hsl(var(--emerald, 140 60% 45%));
    font-family: 'VT323', monospace;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    box-shadow: rgb(255 255 255 / .2) 4px 4px inset, rgb(0 0 0 / .3) -4px -4px inset, rgb(0 0 0 / .5) 4px 4px;
	background: hsl(140 70% 40%);
    color: #fff;
    border: none;
    cursor: pointer;
}
a.discord:hover {
    display: inline-block;
    padding: 20px 28px 20px;
    color: hsl(var(--emerald, 140 60% 45%));
    font-family: 'VT323', monospace;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    box-shadow: rgb(255 255 255 / .2) 4px 4px inset, rgb(0 0 0 / .3) -4px -4px inset, rgb(0 0 0 / .5) 1px 1px;
	background: hsl(140 60% 40%);
    color: #fff;
    border: none;
    cursor: pointer;
}
.discord-svg {
	flex-shrink: 0;
    height: 1rem;
	pointer-events: none;
	width: 1.25rem;
    vertical-align: middle;
}
.btn-discord:hover,
.nav-button:hover {
    transform: translateY(-1px);
}

.btn-discord:hover {
    background: hsl(140 70% 46%);
}

.nav-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.wide-input,
.wide-textarea,
.wide-input select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"] {
    background: linear-gradient(180deg, rgba(14, 21, 31, 0.95), rgba(9, 14, 22, 0.95));
    padding: 12px 14px;
    color: #e7f3ea;
    font-family: 'VT323', monospace;
    letter-spacing: 0.04em;
    box-shadow: inset 4px 4px #fff3,inset -4px -4px #0000004d,4px 4px #00000080;
	border-width: 0px;
	width: 100%;
	height: 60px;
}

.wide-input:focus,
.wide-textarea:focus,
select:focus,
textarea:focus,
input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
	border-color: hsl(140 70% 40%) !important;
	border-width: 2px;
}
.wide-textarea {
    min-height: 140px;
}

.validation-message {
    font-family: 'VT323', monospace;
}
.inline-field-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 600px;
}
.inline-field {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
}
.inline-field .wide-input {
    width: 100%;
}
p {
    color: white;
}
.wide-textarea {
    width: 100%;
    height: 150px;
    padding: 8px;
    font-size: 16px;
    resize: none;
    overflow: hidden;
}
.wide-input[type='number'] {
    -moz-appearance: textfield;
}
.wide-input[type='number']::-webkit-outer-spin-button,
.wide-input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.required-label::after {
    content: ' *';
    color: red;
}
.wide-input.field-error,
.wide-textarea.field-error,
input.field-error,
select.field-error,
textarea.field-error {
    border: 2px solid #ff6b6b !important;
    box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.35);
    outline: none;
    background-color: rgba(255, 107, 107, 0.08);
}

.wide-input.field-error:focus,
.wide-textarea.field-error:focus,
input.field-error:focus,
select.field-error:focus,
textarea.field-error:focus {
    box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.4);
}
.drop-zone.field-error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}
p.field-error {
    border: 1px solid #ff6b6b;
    border-radius: 4px;
    padding: 10px;
    box-shadow: none;
}
.label-error {
    color: #ff6b6b;
}
.drop-zone {
    width: 100%;
    max-width: 100%;
	height: 200px;
    padding: 40px;
    border: 5px dashed;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(16, 24, 35, 0.8), rgba(10, 17, 26, 0.85));
    box-shadow: inset 4px 4px #fff3,inset -4px -4px #0000004d,4px 4px #00000080;
	color: hsl(220 10% 60%) !important;
	display: flex;
	flex-direction: column;
	justify-content: center; /* horizontaliai */
	align-items: center;  
    gap: 8px;
    text-align: center;
}
.drop-zone:hover {
    border-color: #3fd47b;
}
.drop-zone:hover {
    border-color: #3fd47b;
}
.drop-zone.dragover {
    background: linear-gradient(180deg, rgba(24, 38, 54, 0.9), rgba(14, 22, 34, 0.95));
    color: #fff;
}
.file-preview {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.file-preview div {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}
.file-preview img {
    width: 113px;
    height: 113px;
    object-fit: cover;
    border: 3px solid hsl(220 15% 25%);
    box-shadow: rgb(255 255 255 / .2) 4px 4px inset, rgb(0 0 0 / .3) -4px -4px inset, rgb(0 0 0 / .5) 4px 4px;
}
.remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}
.file-preview img:hover + .remove-btn,
.file-preview img:focus + .remove-btn,
.file-preview .remove-btn:hover,
.file-preview .remove-btn:focus {
    opacity: 1;
    pointer-events: auto;
}
.remove-btn:hover,
.remove-btn:focus {
    background: #d32f2f;
    color: #fff;
}
.photo-count {
    margin-top: 8px;
    font-size: 14px;
    color: #c9c2bb;
}
select option {
    background: transparent !important;
    color: #aea8a4 !important;
}
select:focus {
    background: transparent !important;
    outline: none;
}
.validation-message {
    margin-top: 6px;
    font-size: 14px;
    color: #f0f0f0;
}
.validation-message.error {
    color: #ff6b6b;
}
.validation-message.success {
    color: #6bc46b;
}
.validation-message.loading {
    color: #f8c471;
}
.validation-message.info {
    color: #8ab4ff;
}
.discord-auth-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 10px 0 18px;
}
.discord-auth-box.connected {
    border-color: rgba(107, 196, 107, 0.35);
}
.discord-auth-box__title {
    margin: 0 0 6px;
    font-weight: 600;
    color: #fff;
}
.discord-auth-box__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}
.discord-auth-box__status p {
    margin: 0;
}
.discord-auth-box__status .validation-message {
    margin: 6px 0 2px;
}
.discord-auth-box__status .validation-message:empty {
    display: none;
}
.discord-auth-box__actions {
    text-align: right;
    min-width: 180px;
}
.discord-auth-button {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}
.discord-auth-button:hover,
.discord-auth-button:focus {
    background: #4752c4;
    transform: translateY(-1px);
}
.discord-auth-box__meta {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}
.field-helper {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.field-helper--collapsible {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.field-helper__intro {
    color: rgba(255, 255, 255, 0.75);
}
.field-helper__toggle {
    background: none;
    border: none;
    color: #8ab4ff;
    font: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}
.field-helper__toggle:hover,
.field-helper__toggle:focus {
    color: #c1d8ff;
}
.field-helper__toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}
.field-helper__content {
    flex-basis: 100%;
}
.field-helper--hidden {
    display: none;
}
.discord-invite {
    display: none;
    margin-top: 2px;
    font-size: 14px;
    color: #f0f0f0;
}
.discord-invite.visible {
    display: block;
}
.discord-invite a {
    color: #7289da;
    text-decoration: underline;
}
.discord-invite a:hover,
.discord-invite a:focus {
    color: #aab4ff;
}
.alert {
display: flex;
align-items: center;
justify-content: center;
max-width: 600px;
margin: 10px auto;
padding: 10px 15px;
border-radius: 5px;
font-size: 16px;
border: 1px solid #d9534f;
background-color: #f8d7da;
color: #842029;
}
.alert svg {
margin-right: 10px;
}
.pagination {
    margin-top: 10px;
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #0073aa;
    border-radius: 3px;
}
.pagination a:hover {
    background-color: #0073aa;
    color: white;
}
.pagination .current-page {
    font-weight: bold;
    background-color: #0073aa;
    color: white;
    border: 1px solid #0073aa;
}
.pagination span {
    border: none;
    color: #666;
}
