:root {
    --primary-color: #007aff;
    --primary-light: #3395ff;
    --primary-dark: #0066cc;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* 顶部导航栏 */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-secondary);
}

.escort-service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.escort-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* 订单/服务卡片入场动画（与分类页一致） */
.escort-service-card-anim {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.escort-service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    padding: 0;
    background: #ffffff;
}

.escort-service-info {
    padding: 12px;
}

.escort-service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.escort-service-description {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.escort-service-price {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 12px;
}

.escort-service-price.pc {
    color: #28a745;
}

.escort-service-price.mobile {
    color: #ffc107;
}

.escort-service-prices {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.escort-service-price {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.user-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* 首页服务搜索栏 */
.search-bar-wrapper {
    margin: 10px 16px 0;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.search-icon {
    font-size: 14px;
    color: var(--text-light);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-clear-btn {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: none;
    background: rgba(148, 163, 184, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.search-clear-btn:hover {
    background: rgba(148, 163, 184, 0.26);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.user-actions a {
    text-decoration: none;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(148, 163, 184, 0.5);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-nickname {
    font-size: 12px;
    color: var(--text-secondary);
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 轮播图 */
.carousel-container {
    margin: 10px 16px 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 首页公告条 */
.announcement-bar {
    margin: 8px 16px 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.12);
    border: 1px solid #bfdbfe;
}

.announcement-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #1e40af;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
}

.announcement-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: announcement-scroll 15s linear infinite;
}

@keyframes announcement-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* 主要内容区域 */
.main-content {
    padding: 0 16px 100px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
}

/* 底部 Tab 栏 */
.custom-tab-bar {
    --primary-color: #007aff;
    --UI-BG: #fff;
    --UI-BG-1: #f7f7f7;
    --UI-BG-2: #fff;
    --UI-BG-3: #f7f7f7;
    --UI-BG-4: #4c4c4c;
    --UI-BG-5: #fff;
    --UI-FG: #000;
    --UI-FG-0: rgba(0, 0, 0, .9);
    --UI-FG-HALF: rgba(0, 0, 0, .9);
    --UI-FG-1: rgba(0, 0, 0, .5);
    --UI-FG-2: rgba(0, 0, 0, .3);
    --UI-FG-3: rgba(0, 0, 0, .1);
    --status-bar-height: 0px;
    --top-window-height: 0px;
    --window-left: 0px;
    --window-right: 0px;
    --window-margin: 0px;
    --tab-bar-height: 65px;
    --window-top: calc(0px + env(safe-area-inset-top));
    --window-bottom: calc(0px + env(safe-area-inset-bottom));
    font-size: 16px;
    -webkit-user-select: text;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    display: block;
    z-index: 999;
    position: fixed;
    bottom: 3%;
    left: 5%;
    right: 5%;
    width: 90%;
    box-shadow: 0 0 24px rgba(231,231,231,.65);
    border-radius: 1.5625rem;
    background: #ffffff;
}

.nav-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
    height: 65px;
}

.nav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-tab-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tab img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.nav-tab-text {
    font-size: 12px;
    margin-top: 4px;
    color: rgb(171, 169, 169);
    transition: color 0.3s ease;
}

.nav-tab-active .nav-tab-text {
    background: linear-gradient(135deg, #0b6bff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.nav-tab:hover {
    opacity: 0.8;
}

.nav-tab-active {
    opacity: 1;
}

.nav-tab-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgb(171, 169, 169);
    transition: all 0.3s ease;
}

.nav-tab-active .nav-tab-icon {
    background: linear-gradient(135deg, #0b6bff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 分类 Tab */
.category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.category-tab {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.category-tab:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.category-tab.active {
    background: linear-gradient(135deg, #007aff, #3395ff);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.3);
}

/* 主题卡片瀑布流布局（双列容器 + JS 控制插入） */
.game-grid {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.waterfall-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-item {
    width: 100%;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-item-anim {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.game-icon-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.game-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-name {
    padding: 8px;
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.game-price {
    margin: 2px 8px 6px;
    font-size: 12px;
    text-align: center;
    white-space: normal;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.game-price .price-pc,
.game-price .price-mobile {
    display: block;
}

.game-price .price-pc {
    color: #16a34a;
}

.game-price .price-mobile {
    color: #f59e0b;
}

.lottery-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.rotation-tag {
    position: absolute;
    top: 10px;
    right: 60px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

/* 品牌网格 */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.brand-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* 预览区域 */
.preview-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.preview-images {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.preview-images::-webkit-scrollbar {
    display: none;
}

.preview-image {
    flex: 0 0 auto;
    width: 200px;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 底部操作栏 */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    z-index: 100;
}

.get-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.4);
}

/* 模态框 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.15s ease-out;
    will-change: opacity;
}

.modal-overlay.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease-out;
    opacity: 0;
    will-change: transform, opacity;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 20px 20px 12px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 22px;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-body {
    padding: 0 20px 20px;
    text-align: center;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-warning {
    color: #dc2626;
    font-size: 12px;
    margin-top: 12px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-btn {
    padding: 12px;
    border-radius: var(--radius-lg);
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

.modal-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-btn-secondary:hover {
    background: #e5e7eb;
}

/* 二维码容器 */
.qrcode-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 16px 0;
    border: 2px dashed var(--border-color);
}

.qrcode-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qrcode-title i {
    color: #07c160;
    font-size: 16px;
}

.qrcode-image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-placeholder {
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
    padding: 20px;
}

.qrcode-hint {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
    text-align: center;
}

/* 服务提示 */
.service-tips {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--radius-md);
    padding: 12px;
    margin: 16px 0;
    border: 1px solid #bae6fd;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.tip-item i {
    color: var(--accent-color);
    font-size: 14px;
    flex-shrink: 0;
}

.modal-icon i.fa-headset {
    font-size: 24px;
}

/* 加载状态 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .carousel-slide {
        aspect-ratio: 16 / 9;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .escort-service-image, .theme-image {
        height: 150px;
        padding: 0;
    }

    .escort-service-info, .theme-info {
        padding: 10px;
    }

    .escort-service-name, .theme-name {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .escort-service-description, .theme-description {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .theme-price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .theme-footer {
        padding-top: 4px;
    }

    .use-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 16px 16px 10px;
    }

    .modal-body {
        padding: 0 16px 16px;
    }

    .modal-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal-title {
        font-size: 16px;
    }

    .modal-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .qrcode-container {
        padding: 12px;
        margin: 12px 0;
    }

    .qrcode-image {
        width: 140px;
        height: 140px;
    }

    .qrcode-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .qrcode-hint {
        font-size: 10px;
        margin-top: 6px;
    }

    .service-tips {
        padding: 10px;
        margin: 12px 0;
    }

    .tip-item {
        font-size: 12px;
        padding: 5px 0;
        gap: 6px;
    }

    .tip-item i {
        font-size: 13px;
    }

    .modal-btn {
        padding: 10px;
        font-size: 13px;
    }

    .modal-actions {
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }

    .carousel-dots {
        bottom: 8px;
        gap: 6px;
    }

    .carousel-dot {
        width: 5px;
        height: 5px;
    }

    .modal-content {
        max-width: 98%;
    }

    .qrcode-image {
        width: 120px;
        height: 120px;
    }

    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}




