/* KSS会员页面样式 */

.prime-explore-page {
    background: #fff;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Ubuntu, Roboto, Noto, "Segoe UI", Arial, sans-serif, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei";
}

/* 页头样式 */
.site-header {
    position: fixed;
    top: 0; /* 页头在页面最顶部 */
    left: 0;
    right: 0;
    z-index: 1002; /* 确保页头始终在最上层，高于 promo-banner(1001) */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.site-header .header-container {
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link:hover {
    color: #0355E3;
}

.logo-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

.logo-text {
    display: inline-block;
}

.logo-text-with-image {
    font-size: 18px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.nav-link:hover {
    color: #0355E3;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-subitem {
    margin: 0;
}

.nav-sublink {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: background 0.3s;
}

.nav-sublink:hover {
    background: #f7f7f9;
    color: #0355E3;
}

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

.header-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    text-decoration: none;
    position: relative;
}

.header-icon-btn:hover {
    background: #f7f7f9;
    color: #0355E3;
    transform: scale(1.05);
}

.header-icon-btn:active {
    transform: scale(0.95);
}

.header-icon-btn:focus {
    outline: 2px solid #0355E3;
    outline-offset: 2px;
}

.header-icon-btn svg {
    display: block;
}

.notification-wrapper {
    position: relative;
}

.notification-btn {
    position: relative;
}

.notification-btn::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: #ff5d3a;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* 用户菜单 */
.user-menu-wrapper {
    position: relative;
}

.user-avatar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.user-avatar-btn:hover {
    transform: scale(1.05);
}

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

.user-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #0355E3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #f0f0f3;
    transition: background 0.3s;
}

.user-dropdown-header:hover {
    background: #f7f7f9;
}

.user-dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.user-dropdown-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #0355E3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
}

.user-dropdown-info {
    flex: 1;
    min-width: 0;
}

.user-dropdown-name {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-arrow {
    flex-shrink: 0;
    color: #6f7174;
}

.user-dropdown-items {
    padding: 8px 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    transition: background 0.3s;
}

.user-dropdown-item:hover {
    background: #f7f7f9;
    color: #0355E3;
}

.user-dropdown-item svg {
    flex-shrink: 0;
    color: #6f7174;
}

.user-dropdown-item:hover svg {
    color: #0355E3;
}

.user-dropdown-divider {
    height: 1px;
    background: #f0f0f3;
    margin: 8px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-header .header-container {
        padding: 0 16px;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .logo-image {
        height: 28px;
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-text-with-image {
        font-size: 16px;
    }
    
    .nav-list {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-icon-btn {
        width: 32px;
        height: 32px;
    }
    
    .user-avatar-btn {
        width: 32px;
        height: 32px;
    }
    
    .promo-banner {
        padding: 10px 36px 10px 20px; /* 移动端：右侧留出关闭按钮空间 */
        border-radius: 20px;
        max-width: calc(100% - 32px); /* 移动端留出左右边距 */
        width: fit-content; /* 根据内容自适应宽度 */
        min-width: min-content; /* 最小宽度为内容宽度 */
    }
    
    .promo-banner-content {
        font-size: 14px;
        white-space: normal; /* 移动端允许换行 */
        display: inline-block; /* 让宽度自适应内容 */
    }
}

.prime-main {
    width: 100%;
    overflow-x: hidden;
    margin-top: 0; /* 不需要 margin-top，因为 promo-banner 和 prime-banner 已经处理了 */
}

/* 顶部优惠横幅 */
.promo-banner {
    position: fixed;
    top: 58px; /* 位置在页头(56px)下方，往下移动一点 */
    left: 50%; /* 居中定位 */
    transform: translateX(-50%) translateZ(0); /* 水平居中，启用硬件加速 */
    z-index: 1003; /* 设置为最高层级，确保在最上层 */
    background: linear-gradient(to right, rgba(173, 216, 230, 0.6), rgba(255, 182, 193, 0.6)); /* 左右渐变：淡蓝到淡粉 */
    backdrop-filter: blur(20px); /* 毛玻璃效果 */
    -webkit-backdrop-filter: blur(20px); /* Safari 兼容 */
    border: 1px solid rgba(255, 255, 255, 0.3); /* 半透明边框 */
    border-radius: 24px; /* 圆角 */
    padding: 12px 40px 12px 24px; /* 上右下左：右侧留出关闭按钮空间(40px = 24px按钮 + 8px间距 + 8px边距) */
    width: fit-content; /* 根据内容自适应宽度 */
    max-width: calc(100% - 48px); /* 最大宽度限制，留出左右边距 */
    min-width: min-content; /* 最小宽度为内容宽度 */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* 增强阴影效果 */
    display: inline-block !important; /* 使用 inline-block 让宽度自适应内容 */
    will-change: auto;
}

.promo-banner-content {
    margin: 0;
    padding: 0;
    padding-right: 0; /* 内容不需要额外右侧padding，因为父元素已经预留了 */
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: 1.5; /* 确保文字有足够的行高 */
    display: inline-block; /* 使用 inline-block 让宽度自适应内容 */
    white-space: nowrap; /* 防止文字换行 */
}

.promo-banner-content strong {
    color: #0355E3;
    font-weight: 600;
}

.promo-banner-content del {
    color: #6f7174;
    margin-left: 4px;
}

/* Banner 区域 */
.prime-banner {
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
    color: #000;
    padding: 60px 24px 50px;
    padding-top: calc(40px + 56px + 60px); /* 优惠横幅(40px) + 页头(56px) + 原有 padding-top(60px) */
    min-height: 500px;
    position: relative;
    will-change: auto;
    transform: translateZ(0); /* 启用硬件加速，避免抖动 */
}

.banner-container {
    max-width: 1248px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* 左侧内容 */
.banner-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: -120px; /* 整体上移更多 */
}

.banner-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #0355E3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-2025 {
    font-size: 16px;
    font-weight: 500;
    background: #0355E3;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    line-height: 1;
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.banner-desc {
    font-size: 17px;
    line-height: 28px;
    color: #6f7174;
    margin: 0;
}

.banner-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-join, .btn-coupon {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-join {
    background: #0355E3;
    color: #fff;
}

.btn-join::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-join:hover::before {
    width: 300px;
    height: 300px;
}

.btn-join:hover {
    background: #0244b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 85, 227, 0.4);
}

.btn-join:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(3, 85, 227, 0.3);
}

.btn-coupon {
    background: #fff;
    color: #0355E3;
    border: 2px solid #0355E3;
}

.btn-coupon:hover {
    background: #f0f4ff;
    border-color: #0244b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 85, 227, 0.2);
}

.btn-coupon:active {
    transform: translateY(0);
}

.btn-join:focus, .btn-coupon:focus {
    outline: 2px solid #0355E3;
    outline-offset: 2px;
}

/* 右侧卡片堆叠 */
.banner-right {
    position: relative;
    height: 500px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 550px;
}

.stack-card {
    position: absolute;
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s;
}

.card-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg) translateY(0);
    z-index: 3;
}

.card-middle {
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg) translateY(0);
    z-index: 2;
}

.card-bottom {
    top: 140px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg) translateY(0);
    z-index: 1;
}

.stack-card {
    cursor: pointer;
}

.card-top:hover {
    transform: translateX(-50%) translateY(-10px) rotate(0deg) scale(1.02);
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-middle:hover {
    transform: translateX(-50%) translateY(-10px) rotate(0deg) scale(1.02);
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-bottom:hover {
    transform: translateX(-50%) translateY(-10px) rotate(0deg) scale(1.02);
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-content {
    position: relative;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px 0;
}

.card-content .card-desc {
    font-size: 15px;
    line-height: 22px;
    color: #6f7174;
    margin: 0 0 16px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card-bg-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(3, 85, 227, 0.1);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    z-index: 0;
}

.card-image {
    margin-top: 16px;
    text-align: right;
}

.card-image img {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

.card-icon-3d {
    width: 120px;
    height: 120px;
    margin: 16px auto;
}

.card-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(3, 85, 227, 0.2));
}

.card-tips {
    font-size: 14px;
    color: #6f7174;
    line-height: 20px;
    margin-top: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .banner-right {
        height: 450px;
        overflow: hidden;
    }
    
    .card-stack {
        max-width: 100%;
    }
    
    .stack-card {
        max-width: 100%;
    }
    
    .banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .prime-banner {
        padding: 60px 16px 50px;
        padding-top: calc(40px + 56px + 60px); /* 优惠横幅(40px) + 页头(56px) + 原有 padding-top(60px) */
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 20px;
    }
    
    .banner-actions {
        flex-direction: column;
    }
    
    .btn-join, .btn-coupon {
        width: 100%;
    }
    
    .banner-right {
        height: 350px;
        overflow: hidden;
    }
    
    .card-stack {
        max-width: 100%;
    }
    
    .stack-card {
        max-width: 100%;
        padding: 24px;
    }
}

/* 幕后故事区域 */
.backstory-section {
    padding: 80px 24px 80px;
    background: #fff;
}

.backstory-wrapper {
    max-width: 1248px;
    margin: 0 auto;
}

.backstory-header {
    text-align: center;
    margin-bottom: 80px;
}

.backstory-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    margin-bottom: 24px;
    color: #000;
}

.backstory-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #6f7174;
    max-width: 800px;
    margin: 0 auto;
}

.backstory-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 20px;
    min-height: 400px;
}

.backstory-card-container {
    position: relative;
    width: 50%;
    height: 400px;
    overflow: visible;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backstory-card {
    position: absolute;
    width: 100%;
    max-width: 600px;
    height: 400px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s;
    opacity: 0;
    pointer-events: none;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -200px;
}

.backstory-card.current {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    transform: translate3d(0, 0, 0) rotate(0deg) !important;
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.backstory-card.animated:not(.current) {
    opacity: 0;
    transform: translate3d(calc(-2076.5px + var(--randomNumber, 0) * 50px), calc(var(--randomNumber, 0) * 30px), 0) rotate(calc(var(--randomNumber, 0) * 5deg));
}

.backstory-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.backstory-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.backstory-card-info {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.3s ease;
}

.backstory-card-info.fade-out {
    opacity: 0.5;
}

.backstory-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f7f7f9;
    color: #6f7174;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    width: fit-content;
}

.backstory-title-text {
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
    color: #000;
    margin-bottom: 16px;
}

.backstory-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6f7174;
    margin-bottom: 24px;
}

.backstory-link {
    display: inline-block;
    padding: 14px 32px;
    background: #f7f7f9;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.backstory-link:hover {
    background: #0355E3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 85, 227, 0.3);
}

.backstory-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.backstory-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f9;
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.backstory-btn:hover {
    background: #0355E3;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(3, 85, 227, 0.3);
}

.backstory-btn:active {
    transform: translateY(0) scale(1);
}

.backstory-btn:focus {
    outline: 2px solid #0355E3;
    outline-offset: 2px;
}

.backstory-btn svg {
    display: block;
}

.backstory-btn-all {
    width: auto;
    padding: 0 20px;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.backstory-btn-all span {
    display: inline-block;
}

.backstory-btn-all svg {
    width: 16px;
    height: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .backstory-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .backstory-card-container {
        width: 100%;
        height: 350px;
    }
    
    .backstory-card {
        max-width: 100%;
        height: 350px;
        margin-left: -50%;
        margin-top: -175px;
    }
    
    .backstory-card-info {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .backstory-title-text {
        font-size: 28px;
        line-height: 39px;
    }
    
    .backstory-description {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .backstory-section {
        padding: 60px 16px 60px;
    }
    
    .backstory-header {
        margin-bottom: 60px;
    }
    
    .backstory-title {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 20px;
    }
    
    .backstory-subtitle {
        font-size: 16px;
        line-height: 24px;
        padding: 0 16px;
    }
    
    .backstory-card-container {
        height: 250px;
    }
    
    .backstory-card {
        height: 250px;
        margin-left: -50%;
        margin-top: -125px;
    }
    
    .backstory-title-text {
        font-size: 24px;
        line-height: 34px;
    }
    
    .backstory-description {
        font-size: 14px;
        line-height: 20px;
    }
}

/* 权益区域 */
.prime-rights {
    padding: 80px 24px 80px;
    background: #f7f7f9;
}

.rights-container {
    max-width: 1248px;
    margin: 0 auto;
}

.rights-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    text-align: center;
    margin-bottom: 80px;
    color: #0355E3;
}

.rights-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.overview-item {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.overview-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.overview-item:active {
    transform: translateY(-2px) scale(1);
}

.overview-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 滚动淡入动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.overview-title {
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

/* 权益卡片 */
.rights-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.rights-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 48px 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 85, 227, 0.05), transparent);
    transition: left 0.5s;
}

.rights-card:hover::before {
    left: 100%;
}

.rights-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;
    margin: 0;
    color: #000;
    flex: 1;
    padding-top: 4px;
}

.card-title strong {
    color: #0355E3;
}

.card-desc {
    font-size: 17px;
    line-height: 28px;
    color: #6f7174;
    margin-bottom: 32px;
}

/* 翻转卡片 */
.flip-card {
    perspective: 1000px;
    height: 600px;
}

.flip-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.flip-card .card-front,
.flip-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card .card-back {
    transform: rotateY(180deg);
}

.btn-flip, .btn-flip-back {
    padding: 12px 24px;
    background: #0355E3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.btn-flip:hover, .btn-flip-back:hover {
    background: #0244b8;
}

/* 卡片内容 */
.card-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.banner-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.banner-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-item img {
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

.banner-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.banner-info {
    padding: 16px;
    background: #fff;
}

.banner-info .banner-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 8px;
    color: #000;
}

.banner-info .banner-desc {
    font-size: 13px;
    line-height: 18px;
    color: #6f7174;
    margin-bottom: 8px;
}

.banner-info .banner-price {
    font-size: 17px;
    font-weight: 600;
    color: #0355E3;
}

.card-tips {
    font-size: 13px;
    color: #6f7174;
    text-align: center;
    margin-top: 24px;
}

.card-articles {
    display: grid;
    gap: 24px;
}

.article-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f7f7f9;
    border-radius: 12px;
}

.article-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.article-info h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.article-info p {
    font-size: 15px;
    line-height: 22px;
    color: #6f7174;
}

.article-list {
    display: grid;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.article-list-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f7f7f9;
    border-radius: 12px;
}

.article-list-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.article-list-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
}

.article-list-info p {
    font-size: 13px;
    line-height: 20px;
    color: #6f7174;
}

/* 社区示例 */
.community-examples {
    display: grid;
    gap: 32px;
}

.example-category h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

.example-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.example-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.example-images img:hover {
    transform: scale(1.05);
}

/* 会员计划 */
.prime-plans {
    padding: 60px 24px 80px;
    background: #fff;
}

.plans-container {
    max-width: 1248px;
    margin: 0 auto;
}

.plans-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
}

.plans-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1248px;
    margin: 0 auto;
}

.plan-item {
    background: #f7f7f9;
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, background 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.plan-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(3, 85, 227, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.plan-item:hover::before {
    width: 300px;
    height: 300px;
}

.plan-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.plan-item:active {
    transform: translateY(-4px) scale(1.01);
}

.plan-year {
    background: #0355E3;
    color: #fff;
}

.better-tag {
    position: absolute;
    top: -8px;
    right: 12px;
    background: #ff5d3a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.plan-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.plan-price {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.plan-tips {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.4;
}

.plan-tips em {
    font-style: normal;
    font-weight: 600;
}

.plan-rights {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px;
}

.plan-year .plan-rights {
    background: rgba(255, 255, 255, 0.1);
}

.right-item {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

.plan-year .right-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-quarter {
    background: #f7f7f9;
    color: #000;
}

.plan-quarter .plan-rights {
    background: rgba(0, 0, 0, 0.05);
}

.plan-biennial {
    background: #f7f7f9;
    color: #000;
}

.plan-biennial .plan-rights {
    background: rgba(0, 0, 0, 0.05);
}

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

.plan-button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.plan-year .plan-button {
    background: #fff;
    color: #0355E3;
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-button:hover::before {
    width: 300px;
    height: 300px;
}

.plan-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plan-button:active {
    transform: translateY(0);
}

.plan-year .plan-button:hover {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(3, 85, 227, 0.2);
}

.plan-button:focus {
    outline: 2px solid #0355E3;
    outline-offset: 2px;
}

/* 推荐用户 */
.prime-endorsements {
    padding: 80px 24px 120px;
    background: #f7f7f9;
}

.endorsements-container {
    max-width: 1248px;
    margin: 0 auto;
}

.endorsements-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    text-align: center;
    margin-bottom: 80px;
    color: #0355E3;
}

.user-list {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    justify-content: center; /* 居中显示 */
    flex-wrap: wrap; /* 允许换行 */
    max-width: 100%;
}

.user-item {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.user-item:hover {
    transform: translateY(-4px);
}

.user-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.user-item:hover img {
    border-color: #0355E3;
    box-shadow: 0 4px 12px rgba(3, 85, 227, 0.2);
}

.user-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
}

.user-point {
    font-size: 13px;
    color: #6f7174;
    line-height: 18px;
}

/* FAQ */
.prime-faq {
    padding: 80px 24px 120px;
    background: #fff;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-item {
    border-top: 1px solid #e4e4e5;
}

.faq-item:last-child {
    border-bottom: 1px solid #e4e4e5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s, padding-left 0.3s;
    user-select: none;
}

.faq-question:hover {
    color: #0355E3;
    padding-left: 8px;
}

.faq-item.active .faq-question {
    color: #0355E3;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #6f7174;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #0355E3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s, opacity 0.3s;
    padding: 0;
    font-size: 15px;
    line-height: 24px;
    color: #6f7174;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 20px 0;
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .banner-title, .rights-title, .plans-title, .endorsements-title, .faq-title {
        font-size: 40px;
        line-height: 56px;
    }
    
    .plans-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .plan-item {
        padding: 22px 18px;
    }
    
    .plan-title {
        font-size: 19px;
    }
    
    .plan-price {
        font-size: 34px;
    }
    
    .plan-tips {
        font-size: 13px;
        margin-bottom: 22px;
    }
    
    .plan-rights {
        padding: 11px;
        margin-bottom: 18px;
    }
    
    .right-item {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .plan-button {
        padding: 11px;
        font-size: 14px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .card-icon {
        margin-bottom: 0;
    }
    
    .card-title {
        font-size: 28px;
        line-height: 39px;
    }
}

@media (max-width: 768px) {
    .prime-banner {
        padding: 80px 16px 50px;
        padding-top: calc(40px + 56px + 80px); /* 优惠横幅(40px) + 页头(56px) + 原有 padding-top(80px) */
    }
    
    .banner-title, .rights-title, .plans-title, .endorsements-title, .faq-title {
        font-size: 32px;
        line-height: 45px;
    }
    
    .banner-desc {
        font-size: 15px;
        line-height: 24px;
    }
    
    .banner-points {
        grid-template-columns: 1fr;
    }
    
    .prime-rights, .prime-plans, .prime-endorsements, .prime-faq {
        padding: 60px 16px 60px;
    }
    
    .rights-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .rights-card {
        padding: 28px 24px 24px;
    }
    
    .card-banners {
        grid-template-columns: 1fr;
    }
    
    .plans-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .plan-item {
        padding: 20px 16px;
    }
    
    .plan-title {
        font-size: 18px;
    }
    
    .plan-price {
        font-size: 32px;
    }
    
    .plan-tips {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .plan-rights {
        padding: 10px;
        margin-bottom: 16px;
    }
    
    .right-item {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .plan-button {
        padding: 10px;
        font-size: 14px;
    }
    
    .user-list {
        gap: 16px;
    }
    
    .user-item {
        width: 140px;
    }
}

/* 合作伙伴区块 */
.partners-section {
    padding: 80px 24px 120px;
    background: #000;
    color: #fff;
}

.partners-container {
    max-width: 1248px;
    margin: 0 auto;
}

.partners-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 72px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.partners-scrolls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners-scroll {
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.partners-scroll::-webkit-scrollbar {
    display: none;
}

.partners-list {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 20px 0;
    min-width: max-content;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    min-width: 200px;
}

.partner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.partner-logo-circle .partner-logo-text {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.partner-logo-square {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-square .partner-logo-text-xhs {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.partner-logo-arch {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.partner-logo-arch svg {
    width: 100%;
    height: 100%;
}

.partner-logo-onplus {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.partner-logo-number {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.partner-logo-brand {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.partner-logo-bird {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.partner-logo-bird svg {
    width: 100%;
    height: 100%;
}

.partner-tm {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    color: #fff;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-name {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.partner-name-cn {
    display: inline-block;
    margin-left: 4px;
}

.partner-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .partners-section {
        padding: 60px 24px 80px;
    }
    
    .partners-title {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 40px;
    }
    
    .partners-list {
        gap: 60px;
    }
    
    .partner-logo {
        width: 64px;
        height: 64px;
    }
    
    .partner-logo-circle {
        width: 64px;
        height: 64px;
    }
    
    .partner-logo-circle .partner-logo-text {
        font-size: 28px;
    }
    
    .partner-logo-square {
        width: 64px;
        height: 64px;
    }
    
    .partner-logo-square .partner-logo-text-xhs {
        font-size: 10px;
    }
    
    .partner-logo-onplus {
        width: 64px;
        height: 64px;
    }
    
    .partner-logo-number {
        font-size: 24px;
    }
    
    .partner-logo-brand {
        font-size: 8px;
    }
    
    .partner-logo-bird {
        width: 64px;
        height: 64px;
    }
    
    .partner-name {
        font-size: 18px;
    }
    
    .partner-tagline {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 16px 80px;
    }
    
    .partners-title {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 30px;
    }
    
    .partners-list {
        gap: 40px;
    }
    
    .partner-item {
        min-width: 160px;
    }
}

/* Footer 底部样式 */
.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 24px;
    margin-top: 0;
}

.footer-container {
    max-width: 1248px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}


/* 左侧社交媒体图标 */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 左侧版权信息（花屿版权） */
.footer-copyright-left {
    margin-top: 0;
}

.footer-copyright-left .huayu-copyright {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    opacity: 0.7;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon-kss {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.social-icon-xhs {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    padding: 2px;
}

/* 右侧文字链接和版权信息 */
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .footer-left,
    .footer-right {
        flex: 1 1 100%;
    }
    
    .footer-right {
        order: 2;
        align-items: center;
    }
    
    .footer-left {
        order: 1;
        justify-content: center;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 32px 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright-left {
        text-align: center;
    }
}

