@import url('fonts.css?v=20260910-1');

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #EDEDED;
    color: #161616;
    font-family: UKIJEKRAN, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* ھەممە يانفۇندا بىرخىل ئۆلچەم ساقلىنىشى ئۈچۈن (WeChat / iOS خەت چوڭلۇقى بېسىمىنى چەكلەش) */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    direction: rtl;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slider {
    flex: 1;
}

/* يۈكلەنگەن رەسىملەر ئەسلى ھالەتتە — چوڭايمايدۇ، كېسىلمەيدۇ */
.slider .uk-slideshow-items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-dots {
    position: absolute;
    bottom: 200px;
    right: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(16px);
    z-index: 10;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.2;
}

.slider-dots .dot:last-child {
    margin-right: 0;
}

.slider-dots .dot.active {
    opacity: 1;
}

.bottom-view {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 10px 44px;
    background-color: #EDEDED;
    border-radius: 38px 38px 0 0;
    z-index: 20;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}

.button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    box-shadow: 0px 1px 0px 0px #FFFFFF30;
    box-shadow: 1px 1px 2px 0px #0000001C inset;
    backdrop-filter: blur(32px)
}

.button-group .btn {
    position: relative;
    display: block;
    margin-bottom: 8px;
    padding: 3px;
    background: linear-gradient(180deg, #FFFFFF 0%, #ECECEC 100%);
    border-radius: 20px;
    box-shadow: 0px 0.9px 3.6px 0.9px rgba(0, 0, 0, 0.3);
    outline: none;
    overflow: hidden;
}

.button-group .btn .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 48px;
    padding: 0;
    background: linear-gradient(180deg, #F4F4F4 0%, #FEFEFE 100%);
    color: #161616;
    font-size: 15px;
    border-radius: 16px;
    z-index: 1;
}

.button-group .btn .icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-inline-start: 6px;
}

.button-group .btn .text {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 14px;
    line-height: 1;
}

/* ئىنتايىن تار ئېكرانلىق يانفۇنلاردا (ئېكران كۆرۈنۈشى چوڭايتىلغان) كىچىكرەك خەت */
@media (max-width: 340px) {
    .button-group .btn .content {
        height: 46px;
    }
    .button-group .btn .text {
        font-size: 13px;
    }
    .button-group .btn .icon {
        width: 24px;
        height: 24px;
        margin-inline-start: 5px;
    }
}

.button-group .btn:last-child {
    margin-bottom: 0;
}

.wx-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, .65);
    backdrop-filter: blur(2px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: rtl;
    display: none;
}

.wx-mask.show {
    display: block;
}

body.dark {
    background-color: #111;
    color: #A5A5A5;
}

.dark .bottom-view {
    background-color: #111111;
}

.dark .button-group {
    background-color: rgba(0, 0, 0, 0.4);
}

.dark .button-group .btn {
    background: linear-gradient(180deg, #222222 0%, #171717 100%);
    border-color: #222222;
}

.dark .button-group .btn .content {
    background: linear-gradient(180deg, #1A1A1A 0%, #202020 100%);
    color: #A5A5A5;
}