/* ============================================
   炮炮星球 - 6S智能零售店高端展示
   沉浸式设计 | 霓虹光效 | 玻璃拟态
   ============================================ */

.store-showcase-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    overflow: hidden;
}

/* 背景光效 */
.store-showcase-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(204, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* 标题区域 */
.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ccff00;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.showcase-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ccff00;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.showcase-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.showcase-title .highlight {
    color: #ccff00;
    position: relative;
}

.showcase-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ccff00, transparent);
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* 主展示区域 */
.showcase-main {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 图片容器 */
.showcase-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(204, 255, 0, 0.05);
}

/* 霓虹边框 */
.showcase-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(204, 255, 0, 0.5), 
        rgba(6, 182, 212, 0.3),
        rgba(204, 255, 0, 0.5)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* 图片 */
.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-wrapper:hover .showcase-image {
    transform: scale(1.03);
}

/* 玻璃覆盖层 */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(5, 5, 5, 0.8) 100%
    );
    pointer-events: none;
}

/* 底部信息栏 */
.showcase-info-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    background: rgba(204, 255, 0, 0.05);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.2), rgba(204, 255, 0, 0.1));
    border-radius: 12px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
}

.info-text {
    text-align: left;
}

.info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item:hover .info-value {
    color: #ccff00;
}

/* 角落装饰 */
.corner-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(204, 255, 0, 0.3);
    transition: all 0.4s ease;
}

.corner-tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.corner-tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.corner-br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

.showcase-image-wrapper:hover .corner-decoration {
    border-color: rgba(204, 255, 0, 0.6);
    width: 80px;
    height: 80px;
}

/* 扫描线效果 */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.5), transparent);
    animation: scanMove 3s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ============================================
   提示框系统 - 5个定位点
   ============================================ */

.tooltip {
    position: absolute;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(204, 255, 0, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    z-index: 50;
    max-width: 180px;
    transition: all 0.3s ease;
}

.tooltip:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(204, 255, 0, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
}

.tooltip-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ccff00;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.tooltip-content {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.tooltip-line {
    margin: 2px 0;
}

.tooltip-highlight {
    color: #ccff00;
    font-weight: 600;
}

/* 5个提示框位置 - 精确匹配图片 */
.tooltip-1 {
    top: 8%;
    right: 5%;
    text-align: right;
}

.tooltip-2 {
    top: 40%;
    right: 2%;
    text-align: right;
}

.tooltip-3 {
    top: 25%;
    left: 2%;
    text-align: left;
}

.tooltip-4 {
    top: 48%;
    left: 2%;
    text-align: left;
}

.tooltip-5 {
    bottom: 15%;
    left: 2%;
    text-align: left;
}

/* 提示框小三角 */
.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.tooltip-1::after,
.tooltip-2::after {
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid rgba(204, 255, 0, 0.4);
}

.tooltip-3::after,
.tooltip-4::after,
.tooltip-5::after {
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(204, 255, 0, 0.4);
}

/* 响应式 */
@media (max-width: 1200px) {
    .showcase-main {
        padding: 0 30px;
    }
    
    .showcase-info-bar {
        gap: 30px;
    }
    
    .info-item {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .store-showcase-premium {
        padding: 60px 0;
    }
    
    .showcase-main {
        padding: 0 20px;
    }
    
    .showcase-image-wrapper {
        border-radius: 16px;
    }
    
    .showcase-image-wrapper::before {
        border-radius: 18px;
    }
    
    .showcase-info-bar {
        gap: 16px;
        margin-top: 40px;
    }
    
    .info-item {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
        padding: 14px 18px;
        justify-content: center;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .corner-decoration {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .showcase-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    
    .showcase-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .info-item {
        min-width: 120px;
        padding: 12px 16px;
    }
}

/* 提示框响应式 - 无限缩小 */
@media (max-width: 1200px) {
    .tooltip {
        padding: 10px 14px;
        max-width: 160px;
    }
    .tooltip-title {
        font-size: 0.8rem;
    }
    .tooltip-content {
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .tooltip {
        padding: 8px 12px;
        max-width: 140px;
        border-radius: 6px;
    }
    .tooltip-title {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    .tooltip-content {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .tooltip {
        padding: 6px 10px;
        max-width: 120px;
        border-radius: 4px;
        border-width: 0.5px;
    }
    .tooltip-title {
        font-size: 0.7rem;
    }
    .tooltip-content {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    .tooltip::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .tooltip {
        padding: 4px 8px;
        max-width: 100px;
    }
    .tooltip-title {
        font-size: 0.65rem;
    }
    .tooltip-content {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .tooltip {
        padding: 3px 6px;
        max-width: 90px;
        border-radius: 3px;
    }
    .tooltip-title {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    .tooltip-content {
        font-size: 0.5rem;
    }
}

@media (max-width: 375px) {
    .tooltip {
        padding: 2px 4px;
        max-width: 80px;
    }
    .tooltip-title {
        font-size: 0.55rem;
    }
    .tooltip-content {
        font-size: 0.45rem;
    }
}
