body {
    background: #fff;
}

.home-page {
    padding-top: 60px;
    overflow-x: hidden;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 100vw;
}

.banner-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    position: relative;
    box-sizing: border-box;
}

.banner-slide-img {
    background: #d8d3e6;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-bg-img-contain {
    object-fit: contain;
}

.banner-bg-img-bottom {
    object-fit: contain;
    object-position: bottom center;
}

.banner-bg-img-iphone17 {
    object-fit: contain;
    object-position: bottom center;
    background: #000;
}

.banner-overlay-center {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 40px 48px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

@media (max-width: 600px) {
    .banner-bg-img-iphone17 {
        object-fit: cover;
        object-position: center bottom;
    }
    .banner-overlay-center {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px 22px;
        background: rgba(0,0,0,0.35);
    }
    .banner-overlay-center .banner-overlay-title {
        font-size: 26px;
    }
    .banner-overlay-center .banner-overlay-sub {
        font-size: 13px;
    }
}

.banner-slide-img .banner-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.banner-overlay-left {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px 48px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.banner-overlay-badge {
    display: inline-block;
    background: #007aff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.banner-overlay-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.banner-overlay-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
    .banner-overlay-left {
        padding: 24px 22px;
    }
    .banner-overlay-title {
        font-size: 26px;
    }
    .banner-overlay-sub {
        font-size: 13px;
    }
}

.banner-content {
    text-align: center;
    z-index: 1;
    padding: 0 24px;
}

.banner-sub {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin: 0 0 8px;
}

.banner-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.banner-desc {
    font-size: 15px;
    opacity: 0.7;
    margin: 0 0 20px;
}

.banner-cta {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.banner-slide:hover .banner-cta {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.banner-prev,
.banner-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255,255,255,0.35);
}

.banner-indicators {
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.indicator.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

.quick-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.qm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    min-width: 64px;
    transition: transform 0.2s;
}

.qm-item:hover {
    transform: translateY(-2px);
}

.qm-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.qm-icon svg {
    width: 26px;
    height: 26px;
    color: #e6007e;
}

.qm-item span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.home-section {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.section-more {
    font-size: 13px;
    color: #e6007e;
    text-decoration: none;
    font-weight: 600;
}

.section-more:hover {
    text-decoration: underline;
}

.event-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

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

.home-event-card {
    flex: 0 0 auto;
    width: 280px;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 0.2s;
}

.home-event-card:hover {
    transform: translateY(-4px);
}

.hec-thumb {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hec-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.hec-thumb-img {
    padding: 0;
    background: #d8d3e6;
}

.hec-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.hec-thumb-img img.img-bottom {
    object-fit: contain;
    object-position: bottom center;
}

.hec-thumb-title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hec-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.hec-img-overlay-title {
    margin: 0 0 2px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    letter-spacing: -0.2px;
}

.hec-img-overlay-sub {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 400;
}

.phone-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.phone-tab {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.phone-tab.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.phone-tab:hover:not(.active) {
    border-color: #999;
    color: #555;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.phone-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
    position: relative;
}

.phone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.pc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.pc-badge.popular {
    background: #e6007e;
    color: #fff;
}

.pc-badge.new {
    background: #007aff;
    color: #fff;
}

.pc-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

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

.pc-info {
    padding: 18px 20px 22px;
}

.pc-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0 0 4px;
    font-weight: 500;
}

.pc-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.pc-storage {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.storage-opt {
    font-size: 11px;
    padding: 3px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #888;
    font-weight: 500;
}

.storage-opt.active {
    border-color: #1a1a1a;
    color: #1a1a1a;
    font-weight: 600;
}

.pc-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    position: relative;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #1a1a1a;
}

.pc-image img {
    transition: opacity 0.3s ease;
}

.pc-price {
    margin-bottom: 14px;
}

.pc-monthly {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.pc-order-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: #e6007e;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.phone-card:hover .pc-order-btn {
    background: #cc006e;
}

@media (max-width: 1024px) {
    .phone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-page {
        padding-top: 56px;
    }

    .banner-prev,
    .banner-next {
        display: none;
    }

    .banner-slide {
        aspect-ratio: 16 / 10;
    }

    .banner-title {
        font-size: 26px;
    }

    .banner-sub {
        font-size: 12px;
    }

    .banner-desc {
        font-size: 13px;
    }

    .banner-cta {
        padding: 8px 22px;
        font-size: 13px;
    }

    .quick-menu {
        gap: 8px;
        padding: 20px 12px;
    }

    .qm-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .qm-item span {
        font-size: 11px;
    }

    .home-section {
        padding: 32px 16px;
    }

    .section-header h2 {
        font-size: 19px;
    }

    .home-event-card {
        width: 240px;
    }

    .hec-thumb {
        height: 140px;
    }

    .phone-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pc-name {
        font-size: 16px;
    }

    .banner-controls {
        bottom: 14px;
    }
}
