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

:root {
    --color-primary: #2AABEE;
    --color-secondary: #8774e1;
    --color-success: #4CAF50;
    --color-error: #f44336;
    --color-info: #2392e7;
    --color-bg: #f5f5f5;
    --tint-12: 20 29 46;
    --section-bg-color: #212121;
    --bg-color: #212121;
    --secondary-bg-color: #181818;
    --third-bg-color: #1e1e1e;
    --hint-color: #aaaaaa;
    --base-text-color: #efefef;
    --accent-text-color: var(--color-secondary);
    --main-font-size: 16px;
    --small-font-size: 15px;
}


html {
    scrollbar-gutter: stable;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


body {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: linear-gradient(135deg, #331f88, #9482e3);
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f8f8f8;
    overflow-x: hidden;
    position: relative;
}

body.modal-open {
    padding-right: 0 !important;
}

main {
    display: flex;
    flex-grow: 1;
    align-self: center;
    justify-content: center;
    min-height: -webkit-fill-available;
}

div {
    font-size: inherit; /* Наследует размер шрифта от родительского элемента */
}

.main-container {
    display: flex;
    flex-grow: 1;
    align-self: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    position: relative;
    min-height: 95vh;
}

@media (max-width: 767px) {
    body {
        padding: 0;
        overflow-x: hidden; /* Скрывает горизонтальную прокрутку */
        touch-action: pan-y;
        background: var(--secondary-bg-color);
    }

    .main-container {
        padding: 0;
        align-items: stretch;
    }
}

.container {
    background: var(--secondary-bg-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    margin: 10px 0;
}


@media (max-width: 767px) {
    .container {
        padding: 10px;
        margin: 0;
        border-radius: 0px;
        box-shadow: none;
        flex-grow: 1;
    }
}


.profile-section {
}


.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--section-bg-color);
    border-radius: 15px;

}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-secondary);
    margin-left: 4px
}

.profile-info {
    flex: 1;
}

.username {
    color: #666;
    font-size: 1rem;
    margin: 0.2rem 0.4rem 0.2rem 0;
    display: block;
}

.name {
    color: var(--base-text-color);
    font-size: 1.3rem;
    margin: 0.2rem 0.4rem 0.2rem 0;
    display: inline-block;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    background: var(--color-primary);
    color: var(--base-text-color);
    font-size: 0.7rem;
    margin: 0.2rem 0.4rem 0.2rem 0;
}

.details-grid {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.detail-card {
    background: var(--section-bg-color);
    display: flex;
    border-radius: 10px;
    padding: 1rem;
    color: var(--base-text-color);
    margin-block-end: 0.3rem;
}


.title-name {
    font-size: 1rem !important;
    color: var(--hint-color) !important;
    display: block;
    border-radius: 10px;
    padding: 1rem;
    padding-bottom: 0.2rem;
    color: var(--base-text-color);
    margin-block-end: 0.3rem;
}


.title-name h4 {
    font-weight: 400;
    font-size: 1rem !important;
}

.detail-title {
    font-size: 1rem;
    max-width: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

.detail-title .sub-title {
    font-size: 0.95rem;
    margin-top: 0.2em;
    color: var(--hint-color);
    font-weight: 200;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-info {
    display: flex;
    margin-left: auto;
    padding-left: 16px;
    align-items: center;
    color: var(--hint-color);
    text-align: right;
    gap: 6px;
}

.detail-info span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.1rem;
}

.detail-info .btn-detail {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 500px) {
    .detail-card {
        flex-direction: column;
    }

    .detail-card.oneline {
        flex-direction: row;
    }

    .detail-info {
        margin-left: 0;
        padding-left: 0;
        margin-top: 0.3rem;
        text-align: left;
    }

    .oneline .detail-info {
        margin-top: 0;
    }
}

.text-section {
    font-size: 1rem !important;
    background: var(--section-bg-color);
    color: var(--base-text-color);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 1rem;
    margin-block-end: 0.3rem;
}

.text-title {
    display: flex; /* Заголовок и info находятся в одной строке */
    align-items: center; /* Центруем содержимое по вертикали */
    margin: 1rem 0; /* Пространство под title */
}

.text-title .detail-title {
    color: var(--base-text-color);
}

.text-section .text-title:first-child {
    margin-top: 0;
}

.text-section .text-title:last-child {
    margin-bottom: 0;
}

.text-section p {
    font-size: 1rem !important;
}

.status-block {
    background: var(--secondary-bg-color);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.status-indicator {
    padding: 1rem;
    margin: 0rem 0;
    text-align: center;
    transition: all 0.3s ease;
    transform: scale(1);
}

@media (max-width: 767px) {
    .status-block {
        border-radius: 0;
        margin: 0;
    }

    .status-indicator {
        border-radius: 0;
    }
}

.fade-out {
    opacity: 0; /* Скрываем элемент плавно */
    margin: 0;
    padding: 0;
}

.status-success {
    background: var(--color-success);
    color: var(--base-text-color);
}

.status-error {
    background: var(--color-error);
    color: var(--base-text-color);
}

.status-info {
    background: var(--color-info);
    color: var(--base-text-color);
}

.data-block {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 4px solid var(--accent-text-color);
    color: rgb(var(--tint-12));

}

pre {
    word-break: break-word;
    white-space: pre-wrap;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto; /* Скрыть горизонтальную прокрутку */
    overflow-y: hidden; /* Добавлять вертикальные полосы прокрутки автоматически */
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    margin: 0.15em 0 0.15em 0;
    max-width: 100%;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
}

pre::-webkit-scrollbar {
    height: 8px;
}

h1 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.15em;
    margin-block-end: 0.15em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

h2 {
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 0.15em;
    margin-block-end: 0.15em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

h4 {
    display: block;
    font-size: 1rem;
    margin-block-start: 0.15em;
    margin-block-end: 0.15em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

p {
    display: block;
    margin-block-start: 0.15em;
    margin-block-end: 0.15em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}


.dev-switch {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);

}

.dev-btn {
    background: linear-gradient(145deg, #2aabee, #1a8cd8);
    color: var(--base-text-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.3);
    transition: all 0.3s ease;
}

.dev-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 171, 238, 0.4);
}

.dev-btn.active {
    background: linear-gradient(145deg, #4caf50, #45a049);
}

.dev-icon {
    font-size: 20px;
}

@keyframes run {
    0% {
        transform: translateX(-100vw) scaleX(1);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
    }
    50% {
        transform: translateX(50vw) scaleX(1);
    }
    51% {
        transform: translateX(50vw) scaleX(-1);
    }
    95% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(150vw) scaleX(-1);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.goose {
    z-index: 2;
    position: fixed;
    font-size: 40px;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    animation: run 12s linear infinite,
    float 3s ease-in-out infinite;
}

.list-section {
    background: var(--section-bg-color);
    display: block;
    border-radius: 10px;
    color: var(--base-text-color);
    margin-block-end: 0.3rem;
}

.list-section .item {
    display: flex;
    max-width: 100%;
    align-items: center;
    border-bottom: 1px solid var(--secondary-bg-color);
    position: relative;
    padding: 1rem;
    color: var(--base-text-color);
    transition: all 0.2s ease-in-out;
}

.list-section .item svg {
    color: var(--hint-color);
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.list-section .item:hover svg,
.list-section .item:focus-within svg {
    transform: scale(1.1);
    color: var(--accent-text-color);
}

.list-section .item:hover,
.list-section .item:focus-within {
    color: var(--accent-text-color);
    background: var(--third-bg-color);
}

.list-section .item:first-child:hover,
.list-section .item:first-child:focus-within {
    color: var(--accent-text-color);
    background: var(--third-bg-color);
    border-radius: 10px 10px 0 0;
}

.list-section .item:last-child:hover,
.list-section .item:last-child:focus-within {
    color: var(--accent-text-color);
    background: var(--third-bg-color);
    border-radius: 0 0 10px 10px;
}

.list-section .item:last-child {
    border-bottom: none;
}

.accent {
    color: var(--accent-text-color) !important;
}

.sub-text {
    color: var(--hint-color) !important;
}

.subtitle-text {
    color: var(--hint-color) !important;
    display: block;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.subtitle-text.before {
    padding-top: 0.3rem;
    padding-bottom: 1.5rem;
}

.subtitle-text.after {
    padding-bottom: 0.3rem;
    padding-top: 1.5rem;
}


.big_title_block {
    display: block;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.big_title_block .profile-info {
    font-size: 2rem;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.big_title_block .profile-info .name {
    color: var(--base-text-color);
    margin: 0.2rem 0;
    display: inline-block;
    align-content: center;
    font-size: inherit;
    text-align: center;
}

.big_title_block .profile-info .username {
    color: #666;
    font-size: 1rem;
    margin: 0.2rem 0;
    display: block;
    text-align: center;
}


.detail-card .form-switch {
    --bs-form-switch-width: 46px;
    --bs-form-switch-height: 28px;
}

.detail-card .form-switch .form-check-input {
    width: var(--bs-form-switch-width, 46px);
    height: var(--bs-form-switch-height, 28px);
    border-radius: 999px;
    background-color: #e5e5ea;
    border: 1px solid rgba(0, 0, 0, .15);
    background-image: none;
    position: relative;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
    margin: 0;
}

.detail-card .form-switch .form-check-input::after {
    content: "";
    position: absolute;
    top: 1.6px;
    left: 2px;
    width: calc(var(--bs-form-switch-height, 28px) - 4px);
    height: calc(var(--bs-form-switch-height, 28px) - 4px);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 0 0 1px rgba(0, 0, 0, .04) inset;
    transform: translateX(0);
    transition: transform .2s ease;
}

.detail-card .form-switch .form-check-input:checked {
    background-color: #34C759;
    border-color: #34C759;
}

.detail-card .form-switch .form-check-input:checked::after {
    transform: translateX(calc(var(--bs-form-switch-width, 46px) - var(--bs-form-switch-height, 28px)));
}

.detail-card .form-switch .form-check-input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 .25rem rgba(52, 199, 89, .25);
}

.detail-card .form-switch .form-check-input:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
    .detail-card .form-switch .form-check-input,
    .detail-card .form-switch .form-check-input::after {
        transition: none;
    }
}

.btn-back-c-lg {
    height: 3rem !important;
    --bs-btn-padding-x: 1rem;
}

.btn-c-lg {
    --bs-btn-padding-x: 1rem;
}

@media (max-width: 767px) {
    .btn-c-lg {
        height: 3rem !important;
        --bs-btn-padding-x: 1.5rem;
    }

}
