:root {
    --gradient-start: #7928ca;
    --gradient-end: #ff0080;
    --primary-color: #7928ca;
    --secondary-color: #ff0080;
    --accent-color: #ff0080;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --success: #00cc88;
    --warning: #ff9900;
    --error: #ff4444;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.2;
    border-radius: 4px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--gradient-start);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* 导航栏样式 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(121, 40, 202, 0.1);
}

.nav-links .nav-highlight {
    color: var(--warning);
    background: rgba(255, 153, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links .nav-highlight:hover {
    background: rgba(255, 153, 0, 0.2);
    color: var(--warning);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(121, 40, 202, 0.2);
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 40, 202, 0.3);
    color: var(--white);
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero 区域样式 */
.hero {
    background: linear-gradient(-45deg, var(--gradient-start), var(--gradient-end), #4158D0, #00cc88);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.2)"/></svg>') 0 0/50px 50px;
    opacity: 0.5;
    animation: particleMove 20s linear infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 2rem auto 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-text {
    padding-right: 3rem;
}

.hero-text h1 {
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.6;
}

.domain-search {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 70px;
    padding: 0.8rem;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

.search-box i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 1.2rem 0;
    font-size: 1.3rem;
    outline: none;
    color: var(--text-color);
    background: transparent;
}

.search-box select {
    border: none;
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.search-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    background-size: 200% 100%;
    color: var(--white);
    border: none;
    padding: 1.4rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(121, 40, 202, 0.3);
    background-position: 100% 0;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.feature-tag i {
    color: var(--success);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.price-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.price-content {
    text-align: center;
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-period {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.trust-badges {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: auto;
    max-width: 80%;
}

.hero-image .trust-badges img {
    height: 25px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.trust-badges img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badges img:hover {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* Features 区域样式 */
.features {
    padding: 8rem 5%;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.5s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonials {
    max-width: 800px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.testimonial-rating {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Benefits 区域样式 */
.benefits {
    padding: 8rem 5%;
    background: var(--light-bg);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--hover-shadow);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.benefit-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-details p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.floating-card {
    position: absolute;
    top: 10%;
    right: -80px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--hover-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transform: rotate(-5deg);
    z-index: 2;
    max-width: 300px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.card-header i {
    color: var(--primary-color);
}

.stat {
    text-align: center;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA 区域样式 */
.cta-section {
    background: linear-gradient(-45deg, var(--gradient-start), var(--gradient-end), #4158D0);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 10rem 5%;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem;
    max-width: 600px;
    margin: 4rem auto 0;
    box-shadow: var(--hover-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.original-price {
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    font-size: 1.2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing-features li i {
    color: var(--success);
}

.offer-ends {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer 样式 */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 8rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section.brand {
    padding-right: 2rem;
}

.footer-section.brand p {
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.footer-section.brand .trust-badges {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.footer-section.brand .trust-badges img {
    height: 32px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.social-links a:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(121, 40, 202, 0.3);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .hero {
        padding: 8rem 5% 4rem;
    }

    .hero-content {
        gap: 4rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-image img {
        height: 600px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-image {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .domain-search {
        flex-direction: column;
        padding: 1rem;
    }

    .search-button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
        margin: 2rem 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .benefit-image {
        max-width: 100%;
    }

    .benefit-image img {
        max-height: 300px;
    }

    .trust-badges {
        position: relative;
        bottom: 0;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .trust-badges img {
        height: 20px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        min-height: 300px;
        max-height: 400px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .price-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-badges {
        width: 95%;
        padding: 0.6rem 1rem;
    }
}

.benefit-image {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.benefit-image img {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.benefit-image:hover img {
    transform: scale(1.02);
}

/* 添加图片加载动画 */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-image img {
    animation: imageLoad 0.8s ease-out forwards;
}

.security-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-badge i {
    font-size: 1.2rem;
    color: var(--success);
}

.security-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(121, 40, 202, 0.3);
}

.benefit-content .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.benefit-content .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(121, 40, 202, 0.4);
}

.benefit-content .cta-button:hover::before {
    left: 100%;
}

.benefit-content .cta-button i {
    font-size: 1.4rem;
    animation: bounceRight 1s infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* 添加一个醒目的背景效果 */
.benefit-content {
    position: relative;
}

.benefit-content::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.5;
    }
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
    transform: translateY(-2px);
} 