
.cat-search{
    width:100%;
    max-width:720px;
    margin:20px auto 30px auto;
    padding:18px 20px;
    background:#f7f9fc;
    border:1px solid #e6e9ef;
    border-radius:14px;
}

.cat-search-input{
    width:100%;
    height:42px;
    padding:0 14px;
    font-size:15px;
    border:1px solid #d8dde6;
    border-radius:8px;
    outline:none;
    background:#ffffff;
    transition:border 0.2s, box-shadow 0.2s;
}

.cat-search-input:focus{
    border:1px solid #466BC7;
    box-shadow:0 0 0 2px rgba(70,107,199,0.15);
}

.cat-search-input::placeholder{
    color:#9aa3af;
}

.cat-search p{
    margin:10px 0 0 0;
    font-size:13px;
    line-height:1.45;
    color:#6b7280;
}

.cat-search-empty{
    display:none;
    margin:15px auto 0 auto;
    max-width:720px;
    padding:12px 14px;
    text-align:center;
    font-size:14px;
    color:#6b7280;
}

.cat-search-empty.is-show{
    display:block;
}
.map-list {display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; margin: 10px 0; padding: 10px;}
.map-item {display: flex; gap: 5px; align-items: center; justify-content: center; padding: 5px 10px; text-decoration: underline; border-radius: 10px; } 
.map-item img {max-height: 15px;}
.map-item a {font-size: 14px;}
.map-item:hover { background: rgba(0, 0, 0, 0.04); transform: translateY(-1px); }
/* site intro */
.site-intro, .site-intro *{
    box-sizing:border-box;
}

.site-intro{
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:14px;
    padding:16px 16px;

    margin:14px 0;

    box-shadow:0 10px 22px rgba(0,0,0,0.05);
}

.site-intro__head{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    margin:0 0 10px 0;
}

.site-intro__title{
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1.25;
    color:#0a2e59;
}

.site-intro__text{
    font-size:14px;
    font-weight:500;
    line-height:1.55;
    color:#0a2e59;
    opacity:0.88;
}

.site-intro__text b{
    font-weight:700;
    color:#466bc7;
}

.site-intro__link{
    color:#466bc7;
    text-decoration:underline;
    text-underline-offset:3px;
    font-weight:700;
}

.site-intro__link:hover{
    color:#0a2e59;
}

.site-intro__note{
    margin:12px 0 0 0;
    font-size:14px;
    font-weight:600;
    color:#466bc7;
    line-height:1.35;
}

@media screen and (max-width: 520px){
    .site-intro{
        padding:14px 14px;
        border-radius:12px;
    }

    .site-intro__title{
        font-size:18px;
    }
}

/* sharing */

.sharebar, .sharebar *{
    box-sizing:border-box;
}

.sharebar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 14px;
    border:1px solid #eeeeee;
    border-radius:12px;
    background:#ffffff;
    margin:14px 0;
}

.sharebar__left{
    display:flex;
    align-items:center;
    gap:10px;
}

.sharebar__label{
    font-size:14px;
    font-weight:500;
    color:#0a2e59;
    opacity:0.82;
    margin:0;
    white-space:nowrap;
}

.sharebar__right{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.sharebar__btn{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(70,107,199,0.18);
    background:transparent;
    text-decoration:none;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.sharebar__right .sharebar__btn:first-child{
    border-top-left-radius:12px;
    border-bottom-left-radius:12px;
}

.sharebar__right .sharebar__btn:last-child{
    border-top-right-radius:12px;
    border-bottom-right-radius:12px;
}

.sharebar__right .sharebar__btn{
    border-radius:0;
    border-right:0;
}

.sharebar__right .sharebar__btn:last-child{
    border-right:1px solid rgba(70,107,199,0.18);
}

.sharebar__btn:hover{
    transform:translateY(-1px);
    border-color:rgba(70,107,199,0.32);
    background:rgba(70,107,199,0.06);
    box-shadow:0 8px 18px rgba(0,0,0,0.06);
    opacity:0.98;
}

.sharebar__btn:active{
    transform:translateY(0);
    box-shadow:none;
}

.sharebar__btn i{
    font-size:18px;
    line-height:1;
}

.sharebar__btn .fa-facebook{color:#1877F2;}
.sharebar__btn .fa-whatsapp{color:#25D366;}
.sharebar__btn .fa-x-twitter{color:#000000;}
.sharebar__btn .fa-telegram{color:#229ED9;}
.sharebar__btn .fa-viber{color:#836af1;}
.sharebar__btn .fa-copy{color:#489dd6;}
.sharebar__btn .fa-clipboard{color:#466bc7;}
.sharebar__btn .fa-envelope{color:#466bc7;}
.sharebar__btn .fa-linkedin{color:#0A66C2;}
.sharebar__btn .fa-reddit-alien{color:#FF4500;}
.sharebar__btn .fa-pinterest{color:#E60023;}
.sharebar__btn .fa-facebook-messenger{color:#0084FF;}
.sharebar__btn .fa-line{color:#06C755;}
.sharebar__btn .fa-weixin{color:#09B83E;}

.sharebar__btn.is-copied{
    border-color:rgba(70,107,199,0.42);
    background:rgba(70,107,199,0.10);
}

@media screen and (max-width: 520px){
    .sharebar{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:10px;
    }

    .sharebar__right{
        justify-content:center;
    }
}


/* btns */


.button-midplaced{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:18px auto;
    gap:10px;
    padding:8px 15px;
    min-width:210px;
    max-width:320px;
    border-radius:12px;
    border:1px solid rgba(70,107,199,0.22);
    background:#ffffff;
    color:#466bc7;
    font-weight:600;
    font-size:14px;
    line-height:1;
    text-decoration:none;
    box-shadow:0 6px 16px rgba(0,0,0,0.06);
    cursor:pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.button-midplaced:hover{
    transform:translateY(-1px);
    border-color:rgba(70,107,199,0.38);
    color:#2c4ea6;
    background:#f7faff;
    box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.button-midplaced:active{
    transform:translateY(0);
    box-shadow:0 6px 16px rgba(0,0,0,0.06);
}


.button-midplaced i,
.button-midplaced svg{
    font-size:15px;
    display:inline-flex;
    align-items:center;
}

/* mobile */

@media screen and (max-width:760px){

    .button-midplaced{
        min-width:190px;
        padding:10px 16px;
        font-size:13px;
        border-radius:11px;
    }

}

/* custom side */

.side-track-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.side-track-card:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.side-track-badge {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-track-badge img {
    max-width: 22px;
    max-height: 22px;
    display: block;
}

.side-track-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.side-track-artist {
    font-size: 12px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-track-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* track item */

.audio-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.audio-line:hover {
    background: rgba(0, 0, 0, 0.04);
}

.audio-line-cover-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    min-width: 52px;
}

.audio-line-cover {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.audio-line-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audio-line-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-size: 14px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.audio-line-cover-wrap:hover .audio-line-play {
    opacity: 1;
}

.audio-line-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    text-decoration: none;
}

.audio-line-artist {
    font-size: 13px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-line-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-line-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.audio-line-time {
    font-size: 11px;
    color: #6d6d6d;
    min-width: 30px;
    font-weight: 600;
    text-align: center;
}

.audio-line-download {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.audio-line-download:hover {
    opacity: 0.7;
}

.audio-line-fav-add,
.audio-line-fav-remove {
    font-size: 15px;
}


/* left panel */

.left-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.left-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.left-panel-list-primary {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.left-panel-item {
    display: block;
}

.left-panel-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.left-panel-link:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(2px);
}

.left-panel-img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-panel-img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.left-panel-text {
    font-size: 14px;
    color: #222;
}

/* right panel */

.left-panel,
.right-panel {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.left-panel-section,
.right-panel-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.right-panel-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-title,
.left-panel-header,
.right-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid rgba(70,107,199,0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    position: relative;
    overflow: hidden;
}

.section-title::after,
.left-panel-header::after,
.right-panel-header::after {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
    background: rgba(120, 150, 255, 0.15);
    border-radius: 50%;
}

.section-title-icon,
.left-panel-icon,
.right-panel-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #4c6fff;
}

.section-title-title,
.left-panel-title,
.right-panel-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}


/* track page */

.track-page {
    display: block;
}

.track-card {
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.track-head {
    display: flex;
    gap: 16px;
}

.track-coverbox {
    width: 190px;
    min-width: 190px;
    position: relative;
}

.track-votes {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    font-size: 13px;
}

.track-votes a {
    color: #fff;
}

.track-cover {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.track-complaint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
}

.track-headinfo {
    flex: 1;
    min-width: 0;
}

.track-titleline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.track-h1 {
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
    color: #111;
    font-weight: 800;
}

.track-favline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
}

.track-favlabel {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.track-favbtn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.track-fav-add span,
.track-fav-remove span {
    font-size: 18px;
}

.track-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f7f8fb;
}

.track-stat-k {
    font-size: 13px;
    color: #666;
}

.track-stat-v {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.track-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
}

.track-action {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    flex-grow: 1;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.15s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.track-action:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.track-action-play {
    background: #466bc7;
    color: #fff;
}

.track-action-dl {
    background: #f9e043;
    border: 1px solid #466bc742;
    color: #466bc7;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.track-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.track-note-text {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
}

.track-share {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.track-share-btn,
.track-share-copy {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    background: #f7f8fb;
    color: #111;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.track-share-btn:hover,
.track-share-copy:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.track-block {
    margin-top: 16px;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.track-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.track-block-header::after {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
    background: rgba(120, 150, 255, 0.15);
    border-radius: 50%;
}

.track-block-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #4c6fff;
    z-index: 1;
}

.track-block-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 1;
}

.track-block-arrow {
    margin-left: auto;
    font-size: 14px;
    color: #4c6fff;
    z-index: 1;
}

.track-block-body {
    display: block;
}

.track-lyrics {
    font-weight: 600;
    padding: 0px 10px;
}

.track-lyrics-tools {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.track-lyrics-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    background: #f7f8fb;
    color: #111;
    font-weight: 800;
    font-size: 13px;
}

.track-morelink {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.track-morelink-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    background: #466bc7;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.track-morelink-btn:hover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    opacity: 0.8;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.track-subkeys {
    margin-top: 16px;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.track-subkeys-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    margin-bottom: 10px;
}

.track-subkeys-logo img {
    width: 22px;
    height: 22px;
    display: block;
}

.track-subkeys-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1a1a1a;
}

.track-subkeys-text {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    padding: 6px 2px 10px 2px;
}

.track-subkeys-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.track-subkeys-item {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f7f8fb;
    font-weight: 700;
    font-size: 13px;
}

.track-comments {
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.track-comments-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    margin-bottom: 12px;
}

.track-comments-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: #4c6fff;
}

.track-comments-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* адаптация */
@media (max-width: 860px) {
    .track-head {
        flex-direction: column;
    }

    .track-coverbox {
        width: 100%;
        min-width: 0;
    }

    .track-cover img {
        height: 240px;
    }

    .track-titleline {
        flex-direction: column;
        align-items: center;
    }

    .track-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .track-action {
        justify-content: center;
    }
}


/* comments */

.comms-form {
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.comms-form-row {
    margin-bottom: 10px;
}

.comms-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f7f8fb;
    font-size: 14px;
    outline: none;
}

.comms-input:focus {
    border-color: rgba(76, 111, 255, 0.45);
    background: #ffffff;
}

.comms-form-editor {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    margin-bottom: 12px;
}

.comms-captcha {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.comms-captcha-block {
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    position: relative;
    overflow: hidden;
}

.comms-captcha-block::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 54px;
    height: 54px;
    background: rgba(120, 150, 255, 0.15);
    border-radius: 50%;
}

.comms-captcha-label {
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.comms-captcha-body {
    position: relative;
    z-index: 1;
}

.comms-captcha-question {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.comms-captcha-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comms-captcha-img {
    display: flex;
    align-items: center;
}

.comms-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.comms-submit {
    padding: 12px 16px;
    border-radius: 14px;
    border: 0;
    background: #466bc7;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.comms-submit:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.comms-lastlink {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f7f8fb;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
}

.comms-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}

.comms-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f8fb;
}

.comms-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comms-body {
    flex: 1;
    min-width: 0;
}

.comms-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.comms-author {
    font-weight: 900;
    font-size: 14px;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comms-date {
    font-size: 12px;
    color: #777;
    white-space: nowrap;
}

.comms-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.comms-foot {
    margin-top: 10px;
}

/* адаптация */
@media (max-width: 560px) {
    .comms-captcha-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .comms-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }
}

.form-row {
    margin-top: 12px;
}

.form-row:first-of-type {
    margin-top: 10px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f7f8fb;
    font-size: 14px;
    outline: none;
}

.form-input:focus {
    border-color: rgba(76, 111, 255, 0.45);
    background: #ffffff;
}

.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f7f8fb;
    font-size: 14px;
    outline: none;
    resize: vertical;
    min-height: 160px;
}

.form-textarea:focus {
    border-color: rgba(76, 111, 255, 0.45);
    background: #ffffff;
}

.form-field {
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #f4f7ff 0%, #eef3ff 100%);
    position: relative;
    overflow: hidden;
}

.form-field::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 54px;
    height: 54px;
    background: rgba(120, 150, 255, 0.15);
    border-radius: 50%;
}

.form-field > * {
    position: relative;
    z-index: 1;
}

.form-field-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-code {
    display: flex;
    align-items: center;
}

.form-hint {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.form-submit-btn {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #f1f1f1;
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.2s ease;
}

.form-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

@media (max-width: 560px) {
    .form-field-inline {
        flex-direction: column;
        align-items: stretch;
    }
}

/* header */

.site-header {
    background: #466bc7;
    width: 100%;
}

.site-header-inner.container-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    width: 220px;
    min-width: 220px;
}

.site-logo-img {
    max-height: 55px;
    display: block;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.site-logo-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.site-logo-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.92;
}

.site-head-actions {
    width: 220px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.site-search {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-search-form {
    width: stretch;
    max-width: 670px;
    margin: 0;
}

.site-search-box {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    padding: 0;
}

.site-search-ico,
.site-search-btn {
    width: 44px;
    color: #fff !important;
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    background: none !important;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0 !important;
}

.site-search-btn {
    cursor: pointer;
    border-radius: 14px;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.site-search-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    opacity: 0.95;
}

.site-search-ico {
    pointer-events: none;
}

.site-search-input {
    flex: 1;
    margin-right: 0 !important;
    min-width: 0;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    padding: 0 6px;
    line-height: 44px;
}

.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.site-head-btn,
.button-nav-toggle.hidden {
    width: 44px;
    height: 44px;
    margin: 0;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.site-head-btn:hover {
    color: #fff !important;
}

.site-head-btn:hover,
.button-nav-toggle.hidden:hover {
    background: rgba(255, 255, 255, 0.22);
    opacity: 0.95;
}

@media (max-width:1220px) {
    .mobhidef {display: none;}
}

@media (max-width: 980px) {
    .site-logo,
    .site-head-actions {
        width: 200px;
        min-width: 200px;
    }

    .site-search-form {
        max-width: 600px;
    }
}

@media (max-width:950px) {
    .mobhide {display: none;}
}

@media (max-width: 760px) {
    .site-logo {
        width: auto;
        min-width: 0;
    }

    .site-logo-sub {
        display: none;
    }

    .site-head-actions {
        width: auto;
        min-width: 0;
    }

    .site-search-form {
        width: 100%;
        max-width: 100%;
    }

    .site-search-box,
    .site-search-ico,
    .site-search-btn,
    .site-search-input {
        height: 42px;
    }

    .site-search-ico,
    .site-search-btn {
        width: 42px;
        min-width: 42px;
    }

    .site-head-btn,
    .button-nav-toggle.hidden {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

@media (max-width: 760px) {
    .site-header-inner.container-center {
        height: auto;
        padding: 10px 12px 12px 12px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
    }

    .site-logo {
        width: auto;
        min-width: 0;
        order: 1;
    }

    .site-head-actions {
        width: auto;
        min-width: 0;
        order: 2;
        gap: 8px;
    }

    .site-search {
        order: 3;
        width: 100%;
        flex: none;
        justify-content: stretch;
    }

    .site-search-form {
        width: 100%;
        max-width: 100%;
    }

    .site-search-box {
        height: 42px;
        border-radius: 14px;
    }

    .site-search-ico,
    .site-search-btn {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .site-search-input {
        height: 42px;
        line-height: 42px;
        padding: 0 8px;
    }

    .site-head-btn,
    .button-nav-toggle.hidden {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
    }

    .site-logo-sub {
        display: none;
    }
}

@media screen and (max-width: 410px) {
    .site-logo-img {
        max-height: 50px;
    }
}