* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'PingFang SC','Microsoft YaHei',sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: transparent
}

.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(180deg,rgba(255,107,107,0.08)0%,rgba(78,205,196,0.05)30%,rgba(78,205,196,0.08)100%)
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    padding-top: 35vh
}

@supports(height: 100dvh) {
    body {
        min-height:100dvh
    }

    .main-bg {
        height: 100dvh
    }

    .bg-overlay {
        height: 100dvh
    }

    .container {
        padding-top: 35dvh
    }
}

.top-text {
	height: 0.8108108108108109rem;
	line-height: 0.8108108108108109rem;
	margin: 0.4594594594594595rem 0.4594594594594595rem 0;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
}

.top-text-icon {
	height: 0.5405405405405406rem;
	width: 0.5405405405405406rem;
	background-image: url(icon-voice.png);
	background-position: 100% 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.top-text-notice {
	height: 0.5405405405405406rem;
	line-height: 0.5405405405405406rem;
	color: #555555;
	margin-left: 0.2702702702702703rem;
	width: 100%;
	  font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.middle-title {
	position: relative;
	width: auto;
	height: 0.32432432432432434rem;
	line-height: 0.32432432432432434rem;
	margin: 1.2702702702702703rem 0.4594594594594595rem;
	border-left: solid #007AFF 0.05405405405405406rem;
}

.middle-title-text {
	margin-left: 0.2702702702702703rem;
	color: #222;
	font-weight: bold;
}

.middle-title-count {
	position: absolute;
	color: #8D8D93;
	right: 0;
	top: 0;
}

  /* 折叠模块外层容器【关键修改：margin-top从40px改为12px，缩小和上方榜单空隙】 */
        .collapse-box-container {
            margin: 12px auto 0;
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            gap: 8px; /* 板块之间缝隙保持紧凑 */
        }
        /* 双栏容器：智能推荐+新手指南一行并排 */
        .collapse-row-two {
            display: flex;
            gap: 8px;
            width: 100%;
        }
        .collapse-half {
            width: 50%;
        }
        /* 通用折叠面板样式 */
        .collapse-wrap {
            width: 100%;
        }
        .collapse-input {
            display: none;
        }
        .collapse-label {
            display: block;
            width: 100%;
            padding: 14px 18px;
            background: linear-gradient(135deg,#d5362d,#d5362d);
            color: #fff;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .collapse-label::after {
            content: "▼";
            transition: transform 0.3s ease;
        }
        .collapse-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 8px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .collapse-inner {
            padding: 20px;
        }
        /* 勾选后箭头翻转、内容展开 */
        .collapse-input:checked ~ .collapse-label::after {
            transform: rotate(180deg);
        }
        .collapse-input:checked ~ .collapse-content {
            max-height: 1200px;
        }

        /* 最新应用列表 */
        .new-app-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* 最新上线：去掉外层白底白框，卡片直接贴合页面背景，避免「框套框」 */
        .newapp-wrap .collapse-content {
            background: transparent;
            box-shadow: none;
            border-radius: 0;
            margin-top: 12px;
        }
        .newapp-wrap .collapse-inner {
            padding: 0;
        }
        .newapp-wrap .collapse-input:checked ~ .collapse-content {
            max-height: 2400px;
        }

        /* 折叠面板内步骤排版（沿用截图同款新手指南样式） */
        .tab-content h3 {
            font-size: 24px;
            color: #1a1a1a;
            margin-bottom: 6px;
        }
        .tab-sub-desc {
            color: #666;
            font-size: 15px;
            margin-bottom: 24px;
        }
        .guide-step {
            display: flex;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid #eee;
        }
        .guide-step:last-of-type {
            border-bottom: none;
        }
        .step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #e53e3e;
            color: #fff;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }
        .step-text h4 {
            font-size: 18px;
            margin-bottom: 6px;
            color: #222;
        }
        .step-text p {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }
        .skill-box {
            margin-top: 20px;
            background: #fffbe6;
            border: 1px solid #ffe8a3;
            border-radius: 10px;
            padding: 16px;
        }
        .skill-box h4 {
            font-size: 17px;
            margin-bottom: 10px;
            color: #d48806;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .skill-box ul {
            padding-left: 20px;
        }
        .skill-box li {
            color: #444;
            font-size: 14px;
            line-height: 1.8;
            margin: 4px 0;
        }

    

.gonlue-button {
	position: absolute;
	height: 0.78378rem;
	width: 1.89rem;
	right: 0.4054rem;
	bottom: 0.27rem;
	background-image: url(gonglue-button.png);
	background-position: 100% 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.top-img {
	height: 5.7837837837837838rem;
	margin: 0 0.40540540540540543rem;
	border-radius: 0.1891891891891892rem;
}
.scroll-auto {
	line-height: 1.2972972972972974rem;
	height: 1.2972972972972974rem;
	  font-size: 10px;
	margin-top: -0.35135135135135137rem;
}
.section-wrap{margin:0 auto;padding:0 16px}
.section-title{
  text-align:center;
  font-size:clamp(20px,4vw,26px);
  font-weight:800;
  margin-bottom:8px;
  color:#2d2d2d;
}
.section-title .emoji{font-size:1.2em;margin-right:4px}
.section-sub{
  text-align:center;font-size:13px;color:#888;margin-bottom:16px;
}
.header-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px
}

.title-card {
    background: transparent;
    padding: 15px 0;
    max-width: 100%;
    text-align: right
}

.site-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3)
}

.features {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap
}

.feature-item {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px)
}

.feature-1 {
    border: 1px solid#FF6B6B;
    color: #FF6B6B
}

.feature-2 {
    border: 1px solid#4ECDC4;
    color: #4ECDC4
}

.feature-3 {
    border: 1px solid#FFD166;
    color: #D4A017
}

.apps-section {
    margin-bottom: 20px
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}
.rank-section{}
.rank-section .section-title{color:#ff6b35}

.app-card{
  background:#fff;
  border-radius:14px;
  padding:16px 18px;
  margin-bottom:12px;
  display:flex;align-items:center;gap:14px;
  position:relative;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:transform .2s ease,box-shadow .2s ease;
  opacity:0;transform:translateY(24px);
  animation:cardIn .45s ease forwards;
}
.app-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 28px rgba(255,107,53,.12);
}
.app-card.rank-1{border-left:4px solid #f7c948;background:linear-gradient(90deg,#fff9e6,#fff)}
.app-card.rank-2{border-left:4px solid #c0c0c0;background:linear-gradient(90deg,#f5f5f5,#fff)}
.app-card.rank-3{border-left:4px solid #cd7f32;background:linear-gradient(90deg,#fef0e6,#fff)}
.app-card.rank-1 .rank-num{background:linear-gradient(135deg,#f7c948,#ffe066);color:#7a5c00}
.app-card.rank-2 .rank-num{background:linear-gradient(135deg,#b0b0b0,#d4d4d4);color:#555}
.app-card.rank-3 .rank-num{background:linear-gradient(135deg,#cd7f32,#e8a960);color:#6b3f00}

.rank-num{
  flex-shrink:0;width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  background:#f0f0f0;border-radius:10px;
  font-size:17px;font-weight:800;color:#999;
}

.app-icon-wrap{
  flex-shrink:0;width:52px;height:52px;
  border-radius:13px;overflow:hidden;
  background:#f5f0eb;
  display:flex;align-items:center;justify-content:center;
  border:1px solid #eee;
}
.app-icon-wrap img{width:100%;height:100%;object-fit:cover}
.app-icon-emoji{font-size:26px;line-height:1}

.app-info{flex:1;min-width:0}
.app-name{font-size:16px;font-weight:700;margin-bottom:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.app-stars{display:flex;align-items:center;gap:4px;margin-bottom:3px}
.app-stars .stars-icon{font-size:12px;color:#f7c948}
.app-stars .stars-num{font-size:12px;color:#f7c948;font-weight:700}
.app-meta{font-size:11px;color:#999;margin-bottom:4px;display:flex;gap:8px;align-items:center}
.app-meta .meta-item{display:flex;align-items:center;gap:2px}
.app-desc{font-size:12.5px;color:#888;line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.app-tags{display:flex;gap:5px;margin-top:7px;flex-wrap:wrap}
.app-tag{font-size:10.5px;padding:3px 8px;border-radius:6px;white-space:nowrap}
.app-tag.hot{background:#fff0e6;color:#ff6b35}
.app-tag.normal{background:#f0f7ff;color:#5b8def}
.app-tag.green{background:#e8f8e8;color:#3a9d5c}
.app-tag.gold{background:#fff9e6;color:#c59000}

.download-btn{
  flex-shrink:0;
  display:inline-flex;align-items:center;gap:5px;
  background:linear-gradient(135deg,#ff6b35,#e85520);
  color:#fff;font-size:12.5px;font-weight:600;
  padding:9px 16px;border-radius:9px;border:none;
  cursor:pointer;white-space:nowrap;text-decoration:none;
  transition:transform .2s,box-shadow .2s;
}
.download-btn:hover{transform:scale(1.05);box-shadow:0 4px 16px rgba(255,107,53,.35)}
.download-btn:active{transform:scale(.95)}
.download-btn .btn-emoji{font-size:14px}

@keyframes cardIn{to{opacity:1;transform:translateY(0)}}
.app-card:nth-child(1){animation-delay:.08s}
.app-card:nth-child(2){animation-delay:.14s}
.app-card:nth-child(3){animation-delay:.20s}
.app-card:nth-child(4){animation-delay:.26s}
.app-card:nth-child(5){animation-delay:.32s}
.app-card:nth-child(6){animation-delay:.38s}
.app-card:nth-child(7){animation-delay:.44s}
.app-card:nth-child(8){animation-delay:.50s}
.app-card:nth-child(9){animation-delay:.56s}
.app-card:nth-child(10){animation-delay:.62s}
.download-btn {
    background: linear-gradient(135deg,#d5362d,#e55c55);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    display: block;
    text-align: center;
    box-shadow: 0 3px 6px rgba(213,54,45,0.2);
    cursor: pointer;
    white-space: nowrap;
    min-width: 70px
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(213,54,45,0.3)
}

.new-apps-section {
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.95);
    border: 2px solid white
}

.new-apps-header {
    background: #d5362d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease
}

.new-apps-header:hover {
    background: #c12e26
}

.new-apps-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px
}

.new-apps-icon {
    display: none
}

.new-apps-toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: white
}

.new-apps-toggle-icon.rotated {
    transform: rotate(180deg)
}

.new-apps-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white
}

.new-apps-content.expanded {
    max-height: 2000px
}

.new-apps-list-container {
    padding: 20px
}

.new-apps-intro {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed#eee
}

.new-apps-intro h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px
}

.new-apps-intro p {
    color: #666;
    font-size: 14px
}

.new-apps-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.new-app-card {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.05);
    border: 1px solid#eee;
    transition: all 0.3s;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px
}

.new-app-card:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
    border-color: #4ECDC4
}

.new-rank-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    color: white;
    z-index: 2;
    border-radius: 0 0 8px 0;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    background: linear-gradient(135deg,#FF6B6B,#FF8E8E)
}

.functions-section {
    margin: 20px 0
}

.functions-tabs {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-bottom: 20px
}

.function-tab {
    background: rgba(255,255,255,0.95);
    border: 2px solid#ddd;
    border-radius: 10px;
    padding: 12px 5px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50px
}

.function-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15)
}

.function-tab.active {
    background: #d5362d;
    color: white;
    border-color: #d5362d
}

.function-tab:nth-child(1) {
    border-color: #FF6B6B;
    color: #FF6B6B
}

.function-tab:nth-child(2) {
    border-color: #FF6B6B;
    color: #FF6B6B
}

.function-tab.active:nth-child(1),.function-tab.active:nth-child(2) {
    color: white
}

.functions-content {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid#eee;
    animation: fadeIn 0.3s ease
}

.functions-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.quiz-option {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid#ddd;
    cursor: pointer;
    transition: all 0.3s ease
}

.quiz-option:hover {
    border-color: #d5362d;
    background: rgba(78,205,196,0.05)
}

.quiz-option.selected {
    border-color: #d5362d;
    background: rgba(78,205,196,0.1)
}

.quiz-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 15px
}

.quiz-desc {
    font-size: 13px;
    color: #666
}

.recommend-btn {
    background: linear-gradient(135deg,#d5362d,#e55c55);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(213,54,45,0.2);
    width: 100%;
    margin-top: 20px
}

.recommend-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(213,54,45,0.3)
}

.result-card {
    background: linear-gradient(135deg,#d5362d,#e55c55);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: none;
    border: 1px solid#d5362d;
    box-shadow: 0 4px 8px rgba(213,54,45,0.2)
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.result-app {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px
}

.guide-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid#eee
}

.guide-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.step-number {
    width: 36px;
    height: 36px;
    background: #d5362d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px
}

.step-content {
    flex: 1
}

.step-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px
}

.step-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px
}

.tip-card {
    background: rgba(255,209,102,0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid#FFD166
}

.warning-card {
    background: rgba(255,107,107,0.05);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid#FF6B6B
}

.card-title-small {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px
}

.download-dynamic {
    margin: 20px 0
}

.dynamic-container {
    background: white;
    border: 2px solid#ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    height: 50px
}

.dynamic-label {
    background: linear-gradient(135deg,#d5362d,#e55c55);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 13px;
    margin-right: 15px;
    white-space: nowrap;
    border: 2px solid#ffffff;
    flex-shrink: 0
}

.dynamic-scroll-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 30px
}

.dynamic-scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.dynamic-item {
    display: block;
    white-space: nowrap;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    padding: 4px 0;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis
}

.dynamic-item strong {
    color: #d5362d;
    font-weight: 900
}

.app-shangbangzhuan {
    color: #d5362d;
    font-weight: 900
}

.app-quxianzhuan {
    color: #4ECDC4;
    font-weight: 900
}

.app-miaodan {
    color: #118AB2;
    font-weight: 900
}

.app-zhongrenbang {
    color: #9B5DE5;
    font-weight: 900
}

.app-qiehuzhu {
    color: #FB5607;
    font-weight: 900
}

.app-lezhuke {
    color: #FFD166;
    font-weight: 900
}

.footer {
    text-align: center;
    padding: 20px 15px;
    font-size: 12px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3)
}

@media(max-width: 480px) {
    .container {
        padding-top:30vh;
        padding-left: 12px;
        padding-right: 12px
    }

    @supports(height: 100dvh) {
        .container {
            padding-top:30dvh
        }
    }

    .site-title {
        font-size: 24px
    }

    .header-section {
        margin-bottom: 10px
    }

    .feature-item {
        padding: 5px 10px;
        font-size: 11px
    }

    .app-card {
        padding: 12px;
        gap: 12px
    }

    .app-logo {
        width: 50px;
        height: 50px
    }

    .app-name {
        font-size: 15px
    }

    .app-desc {
        font-size: 12px;
        -webkit-line-clamp: 2
    }

    .download-btn {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 65px
    }

    .new-apps-header {
        padding: 10px 15px
    }

    .new-apps-title {
        font-size: 16px
    }

    .new-apps-list-container {
        padding: 15px
    }

    .dynamic-container {
        padding: 10px 12px;
        height: 45px
    }

    .dynamic-label {
        font-size: 12px;
        padding: 3px 10px
    }

    .dynamic-item {
        font-size: 12px;
        height: 25px;
        line-height: 25px
    }

    .function-tab {
        padding: 10px 3px;
        font-size: 14px;
        min-height: 45px
    }
}

@media(max-width: 380px) {
    .container {
        padding-top:28vh
    }

    @supports(height: 100dvh) {
        .container {
            padding-top:28dvh
        }
    }

    .app-card {
        padding: 10px;
        gap: 10px
    }

    .app-logo {
        width: 45px;
        height: 45px
    }

    .app-name {
        font-size: 14px
    }

    .app-tags {
        gap: 4px
    }

    .app-tag {
        padding: 2px 6px;
        font-size: 10px
    }

    .download-btn {
        padding: 7px 12px;
        font-size: 12px;
        min-width: 60px
    }

    .new-apps-header {
        padding: 8px 12px
    }

    .new-apps-title {
        font-size: 15px
    }

    .new-rank-badge {
        width: 24px;
        height: 24px;
        font-size: 12px
    }

    .dynamic-label {
        font-size: 11px;
        padding: 2px 8px
    }

    .function-tab {
        padding: 8px 2px;
        font-size: 13px;
        min-height: 40px
    }
}

@media(max-width: 320px) {
    .container {
        padding-top:25vh
    }

    @supports(height: 100dvh) {
        .container {
            padding-top:25dvh
        }
    }

    .site-title {
        font-size: 22px
    }

    .feature-item {
        padding: 4px 8px;
        font-size: 10px
    }

    .app-card {
        flex-wrap: wrap
    }

    .app-download-col {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        justify-content: flex-start
    }

    .download-btn {
        width: 100%;
        max-width: 200px
    }

    .new-apps-title {
        font-size: 14px
    }

    .functions-tabs {
        grid-template-columns: 1fr
    }

    .function-tab {
        padding: 8px 1px;
        font-size: 12px;
        min-height: 35px
    }
}
