/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0013;
    color: #ffffff;
    overflow-x: hidden;

}

.container {
    max-width: 16rem;
    margin: 0 auto;
    position: relative;
}

/* 头部样式 */
header {
    padding: 0.3rem 0;
 
    position: relative;
}

header .container {
    padding: 0 10%;
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    line-height: 0; /* 防止行高影响 */
    width: 1.6rem;

}
.logo img{
    font-size: 0;
    height: 100%;
    width: 100%;
}
.privacy-policy {
    line-height: 0; /* 防止行高影响 */
}
.privacy-policy img {
    font-size: 0;
    width: 1.37rem;
    height: 0.44rem;
}



/* 主内容样式 */
.hero {
    margin-bottom: 1.5rem;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
  
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
   
 
}



h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pink {
    color: #ff00d6;
}

.tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tagline img {
    height: 1px;
    width: 100px;
    opacity: 1;
}

.tagline span {
    display: block;
    padding: 8px 20px;
    background-color: #e3009830;
    border: 1px solid #e30098a1;
    border-radius: 20px;
    font-size: 24px;
}

.hero-image {
    position: relative;
    margin-top: -1.8rem;
   
}

.center-app {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}



.feature-first,.feature-second{
  text-align: center;
}
.feature-second  img,.feature-first img{

    width: 100%;
}

.features.second {
    background: radial-gradient(circle at 80% 50%, rgba(169, 0, 147, 0.2) 0%, rgba(10, 0, 19, 0) 70%);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.features.second::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: linear-gradient(to right, rgba(255, 0, 255, 0.1) 1px, transparent 1px),
                     linear-gradient(to bottom, rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -1;
    opacity: 1;
   
}

.feature-content {
    display: flex;
    align-items: center;
}

.feature-content.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    text-align: center;
    position: relative;

}

.feature-image img {
 
    width: 8.34rem;

    position: relative;
    z-index: 1;
}
.second .feature-image img {
 
    width: 5.34rem;

    position: relative;
    z-index: 1;
}


.feature-text {
    flex: 1;
    max-width: 50%;
}

.feature-text h2 {
    font-size: 0.68rem;
    margin-bottom: 25px;
    text-align: right;
    letter-spacing: 0.5px;

}

.feature-content.reverse .feature-text h2 {
    text-align: left;
}

.feature-text ul {
    list-style: none;
    text-align: right;
}

.feature-content.reverse .feature-text ul {
    text-align: left;
}

.feature-text li {
    margin-bottom: 10px;
    font-size: 0.32rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 页脚样式 */
footer {
    padding: 50px 0;
    text-align: center;
    position: relative;
}

footer img {
    max-width: 100%;
    height: auto;
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .feature-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-content.reverse {
        flex-direction: column;
    }
    
    .feature-text,
    .feature-image {
        max-width: 100%;
    }
    
    .feature-text h2,
    .feature-content.reverse .feature-text h2,
    .feature-text ul,
    .feature-content.reverse .feature-text ul {
        text-align: center;
    }
    
    .features.first {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
    
    .feature-text h2 {
        font-size: 24px;
    }
    
    .tagline {
        flex-direction: column;
        gap: 5px;
    }
    
    .tagline img {
        display: none;
    }
    
    .hero {
        padding: 40px 0 80px;
    }
} 
