.vamiqo-profile{max-width:860px;margin:0 auto;padding:28px 16px 48px;color:#18213a}.vamiqo-profile__header{margin-bottom:22px}.vamiqo-profile__eyebrow{display:inline-block;margin-bottom:4px;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#7757d9}.vamiqo-profile__header h1{margin:0 0 6px;font-size:clamp(28px,5vw,42px);line-height:1.1}.vamiqo-profile__header p{margin:0;color:#687087}.vamiqo-profile__list{overflow:hidden;border:1px solid #e8e8ef;border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(28,33,65,.07)}.vamiqo-profile-field{padding:20px;border-bottom:1px solid #eeeef4}.vamiqo-profile-field:last-child{border-bottom:0}.vamiqo-profile-field__top{display:flex;align-items:center;justify-content:space-between;gap:18px}.vamiqo-profile-field__content{min-width:0;flex:1}.vamiqo-profile-field__label{display:block;margin-bottom:7px;font-size:12px;font-weight:750;letter-spacing:.06em;text-transform:uppercase;color:#7b8192}.vamiqo-profile-field__value{font-size:16px;line-height:1.55;overflow-wrap:anywhere}.vamiqo-profile-field__empty{color:#9aa0ae;font-style:italic}.vamiqo-profile-avatar{width:86px;height:86px;border-radius:50%;object-fit:cover;border:4px solid #f2effc}.vamiqo-profile-avatar--empty{display:grid;place-items:center;background:linear-gradient(135deg,#7857d8,#60d4c3);color:#fff;font-size:32px;font-weight:800}.vamiqo-profile-button{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:9px 15px;border:0;border-radius:999px;font-size:14px;font-weight:700;line-height:1;text-decoration:none;cursor:pointer}.vamiqo-profile-button--ghost{background:#f3f1fb;color:#6548c5}.vamiqo-profile-button--primary{background:#7453d6;color:#fff}.vamiqo-profile-button--cancel{background:#f2f3f6;color:#555d6f}.vamiqo-profile-form{margin-top:16px;padding-top:16px;border-top:1px dashed #ddddea}.vamiqo-profile-form input[type=text],.vamiqo-profile-form input[type=date],.vamiqo-profile-form input[type=file],.vamiqo-profile-form select,.vamiqo-profile-form textarea{width:100%;min-height:48px;padding:12px 14px;border:1px solid #d9dbe4;border-radius:12px;background:#fff;color:#1b2237;font:inherit}.vamiqo-profile-form textarea{min-height:130px;resize:vertical}.vamiqo-profile-form small{display:block;margin-top:7px;color:#858b99}.vamiqo-profile-form__actions{display:flex;justify-content:flex-end;gap:10px;margin-top:14px}@media(max-width:600px){.vamiqo-profile{padding:18px 12px 36px}.vamiqo-profile-field{padding:17px 15px}.vamiqo-profile-field__top{align-items:flex-start}.vamiqo-profile-button{min-height:40px;padding-inline:13px}.vamiqo-profile-field--photo .vamiqo-profile-field__top{align-items:center}}

.vamiqo-date-selects {
    display: grid;
    grid-template-columns: .8fr 1.4fr 1fr;
    gap: 10px;
}

@media (max-width: 520px) {
    .vamiqo-date-selects {
        grid-template-columns: 1fr;
    }
}

.vamiqo-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vamiqo-profile-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #f1eefb;
    color: #6348bf;
    font-size: 13px;
    font-weight: 700;
}

.vamiqo-profile-form select[multiple] {
    min-height: 240px;
    padding: 8px;
}

.vamiqo-profile-form select[multiple] option {
    padding: 9px 10px;
    border-radius: 7px;
}

.vamiqo-genre-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.vamiqo-genre-choice {
    display: block;
    cursor: pointer;
}

.vamiqo-genre-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vamiqo-genre-choice span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid #ddddea;
    border-radius: 999px;
    background: #fff;
    color: #4e566c;
    font-size: 14px;
    font-weight: 650;
    text-align: center;
    transition: .15s ease;
}

.vamiqo-genre-choice input:checked + span {
    border-color: #7453d6;
    background: #f0ecfc;
    color: #6548c5;
    box-shadow: inset 0 0 0 1px #7453d6;
}

.vamiqo-genre-choice input:focus-visible + span {
    outline: 3px solid rgba(116, 83, 214, .25);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .vamiqo-genre-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.vamiqo-auth {
    max-width: 560px;
    margin: 0 auto;
    padding: 28px 16px 48px;
    color: #18213a;
}

.vamiqo-auth__header {
    margin-bottom: 22px;
}

.vamiqo-auth__header h1 {
    margin: 0 0 7px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
}

.vamiqo-auth__header p {
    margin: 0;
    color: #687087;
}

.vamiqo-auth__form {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid #e8e8ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(28,33,65,.07);
}

.vamiqo-auth__form label > span:not(.vamiqo-date-selects) {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 750;
    color: #4f5669;
}

.vamiqo-auth__form input[type="text"],
.vamiqo-auth__form input[type="email"],
.vamiqo-auth__form input[type="password"],
.vamiqo-auth__form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #d9dbe4;
    border-radius: 12px;
    background: #fff;
    color: #1b2237;
    font: inherit;
    box-sizing: border-box;
}

.vamiqo-auth__form input:focus {
    border-color: #7453d6;
    outline: 3px solid rgba(116,83,214,.13);
}

.vamiqo-auth__form small {
    display: block;
    margin-top: 6px;
    color: #858b99;
}

.vamiqo-auth__submit {
    width: 100%;
    min-height: 50px;
    margin-top: 2px;
}

.vamiqo-auth__switch,
.vamiqo-auth__links {
    margin: 16px 0 0;
    text-align: center;
    color: #687087;
}

.vamiqo-auth__switch a,
.vamiqo-auth__links a {
    color: #6548c5;
    font-weight: 700;
}

.vamiqo-auth__links {
    display: grid;
    gap: 10px;
}

.vamiqo-profile-notice ul {
    margin: 0;
    padding-left: 20px;
}

.vamiqo-profile-delete {
    margin-top: 22px;
    text-align: center;
}

.vamiqo-profile-delete__link {
    color: #8a8794;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.vamiqo-profile-delete__confirmation {
    padding: 18px;
    border: 1px solid #efd6dc;
    border-radius: 16px;
    background: #fff8fa;
    color: #34242b;
    text-align: left;
}

.vamiqo-profile-delete__confirmation strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
}

.vamiqo-profile-delete__confirmation p {
    margin: 0;
    color: #74636a;
    font-size: 14px;
    line-height: 1.5;
}

.vamiqo-profile-delete__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.vamiqo-profile-delete__actions form {
    margin: 0;
}

.vamiqo-profile-button--danger {
    background: #b93d55;
    color: #fff;
}

@media (max-width: 600px) {
    .vamiqo-auth {
        padding: 18px 12px 36px;
    }

    .vamiqo-auth__form {
        padding: 18px 15px;
    }

    .vamiqo-profile-delete__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vamiqo-profile-delete__actions form,
    .vamiqo-profile-delete__actions .vamiqo-profile-button {
        width: 100%;
    }
}
