* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #08595d 0%, #88d4ab 50%, #ac7dad 100%);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    padding: 20px 0;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.logo span {
    color: #ff6b00;
}
.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.hero {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    display: inline-block;
}
.hero-title {
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(to right, #ff6b00, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}
.hero-subtitle {
    font-size: 24px;
    color: #ff6b00;
    font-weight: bold;
    margin-bottom: 30px;
}
.tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tag {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
}
.badges {
    margin: 30px 0;
}
.badges-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    transform: rotate(-10deg);
}
.badge-orange {
    background: linear-gradient(135deg, #ff9a00, #ff6b00);
    color: #fff;
}
.badge-green {
    background: linear-gradient(135deg, #6bc899, #4aa876);
    color: #fff;
    transform: rotate(5deg);
}
.badge-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    transform: rotate(-5deg);
}
.download-btn {
    background: linear-gradient(to right, #ff9500, #ffcc00);
    color: #fff;
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(255,150,0,0.4);
    transition: transform 0.3s;
}
.download-btn:hover {
    transform: scale(1.05);
}

.app-label {
    text-align: center;
    margin-top: 40px;
}
.app-label h3 {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #2d5a42;
}

.friend-links {
    padding: 20px 0;
    /* background: rgba(255,255,255,0.1); */
    margin-top: 40px;
}

.friend-links-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #2d5a42;
}

.friend-links-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.friend-link {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
}

.friend-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.screenshot {
    padding: 0 20px 40px;
    text-align: center;
}
.screenshot-scroll-container {
    overflow-x: auto;
    padding: 20px 0;
}
.screenshot-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.screenshot-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}
.screenshot-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #ff9500, #ffcc00);
    border-radius: 10px;
}
.screenshot-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #ff6b00, #ffd700);
}
.screenshot-scroll {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}
.screenshot-item {
    flex: 0 0 250px;
    transition: transform 0.3s;
}
.screenshot-item:hover {
    transform: translateY(-10px);
}
.screenshot-img {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid #ffd700;
    overflow: hidden;
}
.screenshot-image {
    width: 250px;
    height: 400px;
    object-fit: cover;
    border-radius: 17px;
}
footer {
    background: rgba(0,0,0,0.8);
    padding: 10px 20px;
    text-align: center;
    color: #aaa;
    margin-top: 40px;
}
.footer-text {
    font-size: 12px;
    line-height: 1.5;
}
.footer-text p {
    margin: 5px 0;
}
.footer-text a {
    color: #aaa;
    text-decoration: none;
}
.footer-text a:hover {
    text-decoration: underline;
}
.decoration {
    position: absolute;
    opacity: 0.3;
}
.decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
}
.decoration-2 {
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #ffd700;
    border-radius: 50%;
}
.decoration-3 {
    bottom: 30%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: #ff6b00;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    .features {
        margin: 20px;
    }
}