/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

#site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4081;
    display: flex;
    align-items: center;
}

.site-title a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.site-title-text {
    color: #ff4081;
}

.site-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation ul li {
    margin-left: 25px;
    position: relative;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 10px 15px;
}

.main-navigation ul li a:hover {
    color: #ff4081;
}

.nav-anchors {
    display: flex;
    margin-left: 30px;
}

.nav-anchors a {
    text-decoration: none;
    color: #ff4081;
    font-weight: 500;
    margin-left: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-anchors a:hover {
    background-color: rgba(255, 64, 129, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff4081 0%, #3f51b5 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 800px;
    width: 100%;
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo img {
    width: 80px;
    height: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background-color: #ff4081;
    color: #fff;
    border: 2px solid #ff4081;
}

.btn-primary:hover {
    background-color: #d81b60;
    border-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4081;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff4081;
}

.download-section p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.download-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.platform-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4081;
}

.platform-item p {
    color: #666;
    margin-bottom: 15px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #ff4081;
    color: #ff4081;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #ff4081;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.support-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff4081;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff4081;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #666;
}

/* FAQ Section */
.faq-content {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-section {
    padding: 50px 0;
    background-color: #fff;
}

.faq-navigation {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.faq-navigation h2 {
    color: #ff4081;
    margin-bottom: 20px;
}

.faq-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-navigation ul li {
    margin-bottom: 10px;
}

.faq-navigation ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s;
}

.faq-navigation ul li a:hover {
    color: #ff4081;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: #ff4081;
    border-bottom: 2px solid #ff4081;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.faq-item ul, .faq-item ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.faq-item li {
    margin-bottom: 8px;
}

.faq-tip {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.faq-success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.faq-warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

/* Promotion Steps Section */
.promotion-steps-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.promotion-steps-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ff4081;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4081;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* Promotion Benefits Section */
.promotion-benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.promotion-benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff4081;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: #ff4081;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Commission Rules Section */
.commission-rules-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.commission-rules-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rules-content h3 {
    color: #ff4081;
    margin: 25px 0 15px;
}

.rules-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.rules-content li {
    margin-bottom: 10px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff4081 0%, #3f51b5 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: #ff4081;
    border: 2px solid white;
    font-size: 1.2rem;
    padding: 15px 40px;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer */
#site-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info, .footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-info h3, .footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: #ff4081;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ff4081;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        margin-bottom: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    #site-header .container {
        flex-direction: column;
    }
    
    .main-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .main-navigation ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation ul li {
        margin: 5px 10px;
    }
    
    .nav-anchors {
        margin: 15px 0 0 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-anchors a {
        margin: 5px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .download-platforms {
        grid-template-columns: 1fr;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-logo {
        width: 20px;
        height: 20px;
    }
    
    .hero-box {
        padding: 20px;
    }
    
    .hero-logo img {
        width: 60px;
        height: 60px;
    }
    
    .faq-navigation {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-navigation ul li {
        margin-bottom: 8px;
    }
    
    /* Home Page FAQ Specific Styles */
    .home-faq .faq-item {
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .home-faq .faq-item:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        border-color: #ff4081;
    }
    
    .home-faq .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }
    
    .home-faq .faq-question:hover {
        background-color: #f8f9fa;
    }
    
    .home-faq .faq-question h3 {
        color: #ff4081;
        margin-bottom: 0;
        font-size: 1.2rem;
        font-weight: 600;
        flex-grow: 1;
    }
    
    .home-faq .faq-toggle {
        font-size: 1.5rem;
        font-weight: bold;
        color: #ff4081;
        width: 20px;
        text-align: center;
        transition: transform 0.3s;
        flex-shrink: 0;
        line-height: 1;
    }
    
    .home-faq .faq-toggle.collapsed {
        transform: rotate(45deg);
    }
    
    .home-faq .faq-answer {
        padding: 0 20px 20px;
        display: none;
    }
    
    .home-faq .faq-answer.expanded {
        display: block;
    }
    
    .home-faq .faq-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .home-faq .faq-answer-content {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .home-faq .faq-answer p {
        color: #495057;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .home-faq .faq-item ul {
        margin-bottom: 0;
        margin-left: 15px;
    }
    
    .home-faq .faq-item li {
        margin-bottom: 6px;
        color: #495057;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
        max-width: 400px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 0;
    background-color: #fff;
}

.latest-posts-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ff4081;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.post-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-thumbnail a {
    display: block;
    height: 100%;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.post-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h3 a:hover {
    color: #ff4081;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .post-thumbnail {
        height: 180px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
}
