* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: #fff;
    color: #070707;
    padding: 0 auto;
}

ul {
    list-style-type: none; 
    padding-left: 0; 
    margin: 0; 
}

.container {
    max-width: 470px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0c1b33 0%, #1a3a5f 100%);
}


.mySwiper {
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 98%;
    border-radius: 12px;
    overflow: hidden;
    margin: 5px auto;
}

.swiper-wrapper {
    padding-top:5px;
    align-items: center;
    display: flex;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px; 
    box-sizing: border-box;
}

.slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}




@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}



@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}


.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 ;
    background: rgba(129, 120, 120, 0.6);
    margin: 3px auto;
    width: 98%;
    grid-template-columns: repeat(2, 1fr); 
    border-radius: 12px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    font-size:10px;
    opacity: 0; 
    animation: flipIn 1s ease-out forwards; 
}

.feature-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.6);
    margin-bottom: 3px;
    transition: all 0.3s ease;
    transition: transform 0.5s ease; 
}



@keyframes flipIn {
    0% {
        opacity: 0;
        transform: rotateY(-180deg); 
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg); 
    }
}


.feature-item:hover .feature-image {
    transform: scale(1.1);
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.feature-text {
    color: white;
    font-size: 0.8rem;
    line-height: 0.8;
    margin-top: 1px;
}


.feature-item:hover .feature-image {
    transform: rotateY(180deg); 
}
.ads-container{
    margin-top:6px;
}
.ads-container li{
    margin:3px auto 0 auto;
    text-align: center;
}
.ads-container img{
    width: 98%;
    height: auto;
    border-radius: 12px;
    margin:0 auto;
    border:1px solid #ffd700
}

.safe-good {
    margin:5px 5px;
    padding: 10px 15px;
    text-indent: 2em; 
    color: #dfe088; 
    border: 1px solid #ddd; 
    border-radius: 20px; 
    font-family: 'Arial', sans-serif; 
    font-size: 14px; 
    line-height: 1.6; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
}
.safe-good h2{
    font-family: Arial, sans-serif; max-width: 700px; margin: 20px auto; line-height: 1.6; color: #0af865;
}


.footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    font-size: 12px;
    color: #6a89af;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}