/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "AlimamaFangYuanTiVF", "AlibabaPuHuiTi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    background: #0d0e13;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 402px;
    height: 100vh;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

/* 背景图片 */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    left: -5%;
    top: -5%;
    animation: sexyShake 6s ease-in-out infinite;
}

.gradient-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125px;
    background: linear-gradient(180deg, rgba(13, 14, 19, 0.8) 0%, rgba(7, 8, 12, 0) 100%);
    z-index: 1;
}

.gradient-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 444px;
    background: linear-gradient(180deg, rgba(7, 8, 12, 0) 0%, rgba(13, 14, 19, 0.8) 100%);
    z-index: 1;
}

/* 顶部Logo区域 */
.header {
    position: absolute;
    top: 31px;
    left: 20px;
    z-index: 10;
}

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

.logo-full {
    width: 109px;
    height: 32px;
    object-fit: contain;
}

/* 推荐标签 */
.recommendation-badge {
    position: absolute;
    top: 45px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffdd31;
    padding: 6px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
    white-space: nowrap;
    min-width: fit-content;
    height: 52px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.recommendation-badge span {
    color: #472a2e;
    font-weight: 700;
    font-size: 16px;
}

/* 主标题 */
.main-title {
    position: absolute;
    top: 117px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-align: right;
    z-index: 10;
}

/* 特性标签 */
.feature-tags {
    position: absolute;
    top: 169px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.tag {
    background: rgba(235, 235, 245, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    width: 80px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 内容区域 */
.content-section {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 10;
}

/* 特色描述 */
.highlight-text {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    width: 100%;
    justify-content: flex-start;
}

.highlight-word.purple {
    color: #be2536;
}

.highlight-word.black {
    color: black;
    background: #cd82ff;
    padding: 0 8px;
    border-radius: 8px;
    white-space: nowrap;
    display: inline-block;
}

.highlight-word.yellow {
    color: #ffdd31;
}

.highlight-word.white {
    color: white;
}

.search-emoji {
    font-size: 34px;
    margin-left: 4px;
}

/* 主要描述 */
.main-description {
    font-size: 29px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.red-text {
    color: #ff4c4b;
}

.yellow-text {
    color: #fec800;
}

/* 火箭图标 */
.rocket-icon {
    position: absolute;
    top: -80px;
    right: -10px;
    width: 240px;
    height: 240px;
    transform: rotate(-18deg);
    filter: drop-shadow(13px 20px 36px rgba(0, 0, 0, 0.4));
    z-index: 2;
    object-fit: contain;
}

/* 搜索区域 */
.search-section {
    position: relative;
    margin-top: 80px;
}

.search-container {
    background: white;
    border-radius: 13px;
    padding: 12px 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.search-icon {
    font-size: 20px;
    color: #666;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.google-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.search-content span {
    color: rgba(60, 60, 67, 0.3);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.divider {
    width: 1px;
    height: 20px;
    background: rgba(65, 60, 67, 0.2);
}

/* 加速按钮 */
.speed-boost-btn {
    position: absolute;
    top: -50px;
    left: 30px;
    background: rgba(112, 50, 255, 0.36);
    backdrop-filter: blur(21px);
    color: white;
    padding: 12px 24px;
    border-radius: 11px;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    width: 130px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 搜索装饰圆圈 */
.search-decoration {
    position: absolute;
    top: -20px;
    left: 0;
    width: 59px;
    height: 59px;
}

.search-circle {
    width: 100%;
    height: 100%;
    background: rgba(149, 149, 149, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vpn-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* 下载按钮 - 已移动到统一布局部分 */

/* 下载按钮基础样式 */
.download-section {
    position: absolute;
    bottom: 40px;
    left: 22px;
    right: 22px;
    z-index: 10;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    background: #ffdd31;
    border: none;
    border-radius: 21px;
    color: black;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: glow 2s ease-in-out infinite;
    text-decoration: none;
    text-align: center;
}

/* 移动端隐藏二维码 */
.qr-section {
    display: none;
}

/* 下载按钮样式已移动到上面统一定义 */

.download-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

/* 响应式设计 */
@media (max-width: 375px) {
    .container {
        max-width: 100%;
    }
    
    .highlight-text {
        font-size: 22px;
        gap: 1px;
        justify-content: flex-start;
    }
    
    .search-emoji {
        font-size: 26px;
        margin-left: 2px;
    }
    
    .main-description {
        font-size: 24px;
    }
    
    .rocket-icon {
        width: 160px;
        height: 160px;
        top: -50px;
        right: -5px;
    }
    
    .recommendation-badge {
        right: 10px;
        padding: 6px 12px;
        height: 44px;
    }
    
    .recommendation-badge span {
        font-size: 14px;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-tags {
        right: 10px;
    }
    
    .tag {
        font-size: 12px;
        width: 70px;
        height: 24px;
    }
}

/* 二维码样式统一 */

/* 统一二维码样式 */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    width: 120px;
    height: 120px;
    margin: 0;
}

.qr-code-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.qr-code-img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: contain;
}

.qr-text {
    text-align: center;
    flex: 1;
}

.qr-title {
    color: #1e293b;
    font-size: 11px;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 1.1;
}

.qr-subtitle {
    color: #475569;
    font-size: 9px;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
}

/* PC端响应式设计 */
/* PC端显示二维码和下载按钮并列 */
@media (min-width: 768px) {
    .container {
        max-width: 402px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .download-section {
        display: flex;
        gap: 16px;
        align-items: center;
    }
    
    .download-btn {
        flex: 1;
        min-width: 0;
    }
    
    .qr-section {
        display: block;
        margin: 0;
        flex-shrink: 0;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-18deg); }
    50% { transform: translateY(-12px) rotate(-18deg); }
}

.rocket-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 221, 49, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 221, 49, 0.6); }
}

/* glow动画已在下载按钮基础样式中定义 */

/* 性感背景抖动效果 */
@keyframes sexyShake {
    0% { 
        transform: scale(1) translate(0, 0) rotate(0deg); 
    }
    10% { 
        transform: scale(1.02) translate(-1px, -1px) rotate(0.2deg); 
    }
    20% { 
        transform: scale(1.01) translate(1px, 0px) rotate(-0.1deg); 
    }
    30% { 
        transform: scale(1.03) translate(0px, 1px) rotate(0.3deg); 
    }
    40% { 
        transform: scale(1.01) translate(-1px, 0px) rotate(-0.2deg); 
    }
    50% { 
        transform: scale(1.04) translate(1px, -1px) rotate(0.1deg); 
    }
    60% { 
        transform: scale(1.02) translate(0px, 1px) rotate(-0.3deg); 
    }
    70% { 
        transform: scale(1.01) translate(-1px, -1px) rotate(0.2deg); 
    }
    80% { 
        transform: scale(1.03) translate(1px, 0px) rotate(-0.1deg); 
    }
    90% { 
        transform: scale(1.01) translate(0px, -1px) rotate(0.1deg); 
    }
    100% { 
        transform: scale(1) translate(0, 0) rotate(0deg); 
    }
}

/* 鼠标悬停时加强效果 */
.container:hover .background-image {
    animation: sexyShakeIntense 3s ease-in-out infinite;
}

@keyframes sexyShakeIntense {
    0% { 
        transform: scale(1) translate(0, 0) rotate(0deg); 
    }
    10% { 
        transform: scale(1.05) translate(-2px, -2px) rotate(0.5deg); 
    }
    20% { 
        transform: scale(1.03) translate(2px, 0px) rotate(-0.3deg); 
    }
    30% { 
        transform: scale(1.06) translate(0px, 2px) rotate(0.7deg); 
    }
    40% { 
        transform: scale(1.02) translate(-2px, 0px) rotate(-0.4deg); 
    }
    50% { 
        transform: scale(1.07) translate(2px, -2px) rotate(0.3deg); 
    }
    60% { 
        transform: scale(1.04) translate(0px, 2px) rotate(-0.6deg); 
    }
    70% { 
        transform: scale(1.02) translate(-2px, -2px) rotate(0.4deg); 
    }
    80% { 
        transform: scale(1.05) translate(2px, 0px) rotate(-0.2deg); 
    }
    90% { 
        transform: scale(1.03) translate(0px, -2px) rotate(0.3deg); 
    }
    100% { 
        transform: scale(1) translate(0, 0) rotate(0deg); 
    }
} 