:root {
    --bg-color: #F9FAFB;
    --text-dark: #111827;
    --text-light: #6B7280;
    --primary-blue: #008C59;
    --primary-purple: #008C59;
    --primary-green: #10B981;
    --primary-red: #EF4444;
    --border-color: #E5E7EB;
    --white-color: #ffffff;
    --green-color: #10B981;
    --reseller-gold: #B8860B;
    --reseller-gold-light: #DAA520;
}

/* Font Optimization */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Image Optimization */
.crop-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.crop-image-placeholder img[loading="lazy"] {
    opacity: 0;
}

.crop-image-placeholder img[loading="lazy"].loaded {
    opacity: 1;
}

/* Optimize image loading */
.crop-image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.crop-image-placeholder img.loaded + .crop-image-placeholder {
    animation: none;
    background: transparent;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Font loading optimization */
.fonts-loaded {
    font-display: swap;
}

/* Fallback font optimization */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-display: swap;
}

/* Optimize font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Crop Search Component */
.crop-search-container {
    margin-bottom: 30px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--white-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-input:focus + .search-icon svg {
    color: var(--primary-blue);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon svg {
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--bg-color);
}

.search-result-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 5px;
}

.search-result-item .crop-name {
    font-weight: 600;
    color: var(--text-dark);
}

.search-result-item .crop-tier {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--primary-green);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .search-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-results {
        max-height: 250px;
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; overflow: hidden; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; text-align: center; margin-bottom: 60px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { color: var(--text-light); margin-bottom: 1rem; }
.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -40px auto 50px auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-image: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(0,0,0,0.15); }

/* Button Variants */
.btn-outline {
    background: transparent !important;
    background-image: none !important;
    border: 2px solid #008C59 !important;
    color: #008C59 !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    background: #008C59 !important;
    color: var(--white-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Scroll Animation */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Header */
.header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    background-color: rgba(249, 250, 251, 0.8);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; color: var(--text-dark); }
.logo img { height: 40px; width: auto; }
.nav-menu ul { list-style: none; display: flex; gap: 50px; }
.nav-menu a { text-decoration: none; color: var(--text-light); font-weight: 600; transition: color 0.3s; position: relative; }
.nav-menu a:hover { color: var(--primary-blue); }


.nav-menu .sale-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #3b82f6;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.nav-menu .hot-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.nav-menu .new-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #059669;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}
.header .btn { padding: 10px 24px; }
.hamburger { display: none; cursor: pointer; }
.hamburger div { width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px 0; transition: 0.4s; }

/* Hero Section */
.hero { text-align: center; padding: 120px 0 80px 0; position: relative; overflow: hidden; }
.hero .aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 60%);
    z-index: -1;
}
.hero h1 { background: linear-gradient(to right, var(--primary-blue), var(--primary-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero .subtitle { font-size: 1.25rem; max-width: 700px; margin: 15px auto 30px; }

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.hero-buttons 

.hero-buttons .btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    will-change: transform;
    transform: translateZ(0);
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.bubble:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.bubble:nth-child(5) {
    width: 22px;
    height: 22px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.bubble:nth-child(6) {
    width: 16px;
    height: 16px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.bubble:nth-child(7) {
    width: 24px;
    height: 24px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.bubble:nth-child(8) {
    width: 19px;
    height: 19px;
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.bubble:nth-child(9) {
    width: 21px;
    height: 21px;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 10.5s;
}

.bubble:nth-child(10) {
    width: 17px;
    height: 17px;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 9.5s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero content positioning */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing { background-color: var(--white-color); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pricing-card {
    background-color: var(--white-color); border: 1px solid var(--border-color);
    border-radius: 20px; padding: 30px; display: flex; flex-direction: column;
    transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.pricing-card.highlight { border-color: var(--primary-blue); position: relative; transform: scale(1.05); }
.pricing-card .badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue); padding: 4px 12px; border-radius: 15px;
    font-size: 0.8rem; font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    z-index: 10;
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.pricing-card .plan-name { font-weight: 600; }
.pricing-card .plan-description { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0px; }
.pricing-card .price { font-size: 3rem; font-weight: 800; margin: 10px 0; }
.pricing-card .price-note { color: var(--text-light); font-size: 0.9rem; margin-top: -10px; }
.pricing-card .specs { list-style: none; margin: 30px 0; flex-grow: 1; }
.pricing-card .specs li { border-top: 1px solid var(--border-color); padding: 12px 0; display: flex; align-items: center; gap: 10px; }
.pricing-card .specs svg { width: 20px; height: 20px; stroke: var(--green-color); }
.pricing-card .btn { width: 100%; text-align: center; }

/* Features Section */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-item { padding: 20px; }
.feature-item svg { width: 32px; height: 32px; stroke: var(--primary-blue); margin-bottom: 15px; }

/* Testimonials Section */




/* Expert Section Styles */
.expert {
    background-color: var(--white-color);
}
.expert-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.expert-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}
/* 桌面端显示大图，移动端隐�?*/
.expert-image .desktop-img {
    display: block;
}
.expert-image .mobile-img {
    display: none;
}
.expert-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.expert-content blockquote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
}

/* Comparison Section */
.comparison {
    background-color: var(--white-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table th {
    background-color: var(--bg-color);
    font-size: 1.1rem;
}

.provider-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.provider-header .provider-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background-color: var(--bg-color);
}

.comparison-table .highlight-col {
    background-color: #ecfdf5; /* Light green background */
}

.comparison-table .icon-check {
    color: var(--green-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comparison-table .icon-cross {
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comparison-table .icon-check svg,
.comparison-table .icon-cross svg {
    flex-shrink: 0;
}

.comparison-table strong {
    color: var(--text-dark);
}

/* FAQ Section */
.faq { background-color: var(--white-color); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { font-size: 1.2rem; font-weight: 600; cursor: pointer; padding: 25px 0; position: relative; }
.faq-question::after { content: "+"; position: absolute; right: 0; font-size: 1.5rem; transition: transform 0.3s; color: var(--primary-blue); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 0 25px 0;
    margin: 0;
    color: var(--text-light);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* About Page Specific Styles */
.about-story {
    background-color: var(--white-color);
}
.about-story .expert-grid {
    align-items: flex-start;
}
.about-story .expert-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.about-story .expert-content blockquote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
}

/* Process Steps */
.process-step {
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Hosting Categories Section */
.hosting-categories {
    background-color: var(--white-color);
}
.hosting-categories .pricing-card {
    text-align: center;
    padding: 25px;
}
.hosting-categories .pricing-card svg {
    margin-bottom: 15px;
}
.hosting-categories .pricing-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Contact Page Specific Styles */
.contact-info {
    background-color: var(--white-color);
}
.contact-info .pricing-card {
    text-align: center;
    padding: 50px 30px;
    max-width: 600px;
    margin: 0 auto;
}
.contact-info .pricing-card svg {
    margin-bottom: 30px;
}
.contact-info .pricing-card h2 {
    margin-bottom: 20px;
    text-align: center;
}
.contact-info .pricing-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}
.contact-info .email-box {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.contact-info .email-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.contact-info .email-box a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

/* Disclaimer Page Specific Styles */
.disclaimer-content {
    background-color: var(--white-color);
}
.disclaimer-content .pricing-card {
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.disclaimer-content h2 {
    text-align: center;
    margin-bottom: 40px;
}
.disclaimer-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.disclaimer-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.disclaimer-content a {
    color: var(--primary-blue);
    text-decoration: none;
}
.disclaimer-content a:hover {
    text-decoration: underline;
}


/* Privacy Policy Page Specific Styles */
.privacy-content {
    background-color: var(--white-color);
}
.privacy-content .pricing-card {
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.privacy-content h2 {
    text-align: center;
    margin-bottom: 40px;
}
.privacy-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.privacy-content ul {
    margin-bottom: 15px;
}
.privacy-content li {
    margin-bottom: 5px;
    line-height: 1.6;
}
.privacy-content a {
    color: var(--primary-blue);
    text-decoration: none;
}
.privacy-content a:hover {
    text-decoration: underline;
}


/* CTA Section */
.cta {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 0;
}

/* Footer */
.footer { background-color: var(--white-color); padding: 80px 0; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { font-size: 1.1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: var(--text-light); transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-blue); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border-color); color: var(--text-light); font-size: 0.9rem; }

/* Mobile Styles */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .nav-menu, .header .btn { display: none; }
    .hamburger { display: block; }
    .logo img { height: 35px; }
    .nav-menu.active {
        display: flex; flex-direction: column; position: absolute;
        top: 73px; left: 0; width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .nav-menu.active ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .nav-menu.active li { margin: 10px 0; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .logo img { height: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hosting-types-grid { grid-template-columns: 1fr; }
    .expert-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .expert-image {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }
    /* Mobile shows small image, desktop hidden */
    .expert-image .desktop-img {
        display: none;
    }
    .expert-image .mobile-img {
        display: block;
    }
    .expert-content h2 {
        text-align: center;
    }
    .about-story .expert-content h2 {
        text-align: center;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.highlight {
        transform: scale(1);
    }

    /* Mobile bubble optimization */
    .bubble {
        animation-duration: 4s !important;
    }
    .bubble:nth-child(1) { animation-duration: 6s !important; }
    .bubble:nth-child(2) { animation-duration: 8s !important; }
    .bubble:nth-child(3) { animation-duration: 10s !important; }
    .bubble:nth-child(4) { animation-duration: 7s !important; }
    .bubble:nth-child(5) { animation-duration: 9s !important; }
    .bubble:nth-child(6) { animation-duration: 5s !important; }
    .bubble:nth-child(7) { animation-duration: 11s !important; }
    .bubble:nth-child(8) { animation-duration: 6.5s !important; }
    .bubble:nth-child(9) { animation-duration: 8.5s !important; }
    .bubble:nth-child(10) { animation-duration: 7.5s !important; }
}





.migration-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.migration-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.migration-feature svg {
    color: var(--green-color);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .migration-steps {
        grid-template-columns: 1fr;
    }

    .migration-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Cloudways页面样式 */
.hero-badge {
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* 核心优势�?*/
.core-benefits {
    background-color: var(--white-color);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.benefit-features li:before {
    content: "�?;
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: bold;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
}

/* 价格理念�?*/
.pricing-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlighted-price {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.highlighted-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.highlighted-price::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.price-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-period {
    font-size: 1.3rem;
    font-weight: 600;
    color: #64748b;
}

.price-discount {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.discount-text {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.price-note {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.pricing-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.pricing-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.highlight-item svg {
    color: var(--green-color);
}

.pricing-cta {
    margin-top: 40px;
}



@media (max-width: 768px) {


    .highlighted-price {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .price-period {
        font-size: 1.1rem;
    }

    .discount-text {
        font-size: 0.8rem;
    }

    .price-note {
        font-size: 0.9rem;
    }
}

/* 最终CTA�?*/
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn {
    background: white;
    color: var(--primary-blue);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.final-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table th, .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .provider-header .provider-icon {
        width: 20px;
        height: 20px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-avatar svg {
        width: 20px;
        height: 20px;
    }
}

/* VPS Advisor CTA Styles */
.vps-advisor-cta {
    background-color: var(--white-color);
    padding: 80px 0;
}

.advisor-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 24px;
    padding: 40px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.advisor-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.advisor-content {
    position: relative;
    z-index: 2;
}

.advisor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.advisor-avatar {
    flex-shrink: 0;
}

.advisor-avatar .avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.advisor-info h3 {
    color: var(--white-color);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.advisor-subtitle {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
}

.advisor-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.advisor-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.advisor-feature svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.8);
}

.advisor-card .btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white-color);
    backdrop-filter: blur(10px);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.advisor-card .btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .advisor-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .advisor-features {
        justify-content: center;
        gap: 20px;
    }

    .advisor-feature {
        font-size: 0.85rem;
    }

    .advisor-card {
        padding: 30px 20px;
    }
}

/* DDoS Guide Page Styles */
.toc-section {
    background-color: var(--white-color);
    padding: 40px 0;
}

.toc-card {
    padding: 30px 0;
}

.toc-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.toc-item {
    display: block;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.toc-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 140, 89, 0.3);
}

.chapter-section {
    padding: 80px 0;
}

.chapter-section h2 {
    text-align: left;
    margin-bottom: 40px;
    color: var(--text-dark);
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 15px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.attack-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.attack-type-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.attack-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.attack-type-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.visual-analogy {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-blue);
}

.visual-analogy p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}



.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    background: var(--white-color);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--border-color);
    min-width: 120px;
    transition: transform 0.3s;
}

.flow-step:hover {
    transform: scale(1.05);
}

.step-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.flow-step h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.metric-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.metric-example {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-blue);
}

.metric-example p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}





.myths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.myth-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.myth-card:hover {
    transform: translateY(-5px);
}

.myth-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.myth-icon {
    display: flex;
    align-items: center;
}

.myth-icon svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
}

.myth-header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.3rem;
}

.myth-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.myth-explanation {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--primary-blue);
}

.myth-explanation p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.conclusion-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #e8f5f0 100%);
    padding: 80px 0;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.expert-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.expert-card {
    display: flex;
    gap: 30px;
    background: var(--white-color);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.expert-avatar {
    flex-shrink: 0;
}

.expert-avatar .avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

.expert-content h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.expert-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.expert-title {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.expert-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
}

.expert-credentials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.credential {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .attack-types-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .checklist-item {
        flex-direction: column;
        text-align: center;
    }

    .expert-card {
        flex-direction: column;
        text-align: center;
    }

    .expert-credentials {
        justify-content: center;
    }

    .toc-card {
        padding: 25px;
    }

    .guide-card,
    .myth-card,
    .attack-type-card,
    .metric-card {
        padding: 25px;
    }
}

/* Quiz Section Styles */
#quiz-section {
    padding-top: 120px;
    padding-bottom: 100px;
}

.quiz-step {
    margin-bottom: 60px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.option-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.option-card .option-content {
    cursor: pointer !important;
}

.option-card * {
    cursor: pointer !important;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.option-card input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.option-card .option-content {
    padding: 25px;
    border: 2px solid transparent;
    border-radius: 14px;
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--primary-blue);
}

.option-card .option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.option-card .option-icon {
    flex-shrink: 0;
}

.option-card .option-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
}

.option-card .option-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
}

.option-card .option-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.quiz-submit {
    text-align: center;
    margin-top: 50px;
}

.quiz-submit .btn {
    display: inline-block;
    padding: 14px 32px;
    background-image: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.quiz-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Results Section */
.results-section {
    display: none;
    padding-top: 120px;
    padding-bottom: 100px;
}

.result-card {
    background-color: var(--white-color);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 40px;
    animation: fadeIn 0.8s ease-out;
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-header span {
    display: inline-block;
    padding: 5px 15px;
    background-image: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.recommendation {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
}

.recommendation.primary {
    border: 2px solid var(--primary-blue);
    background-color: var(--white-color);
}

.recommendation .rec-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    align-self: flex-start;
}

.recommendation .rec-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.recommendation ul {
    list-style-position: inside;
    padding-left: 5px;
    margin: 15px 0;
    flex-grow: 1;
    color: var(--text-light);
}

.recommendation .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.retest-button {
    display: inline-block;
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.retest-button:hover {
    background-color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
}

/* Grow a Garden Page Specific Styles */
.toc-section {
    background-color: var(--white-color);
    padding: 80px 0;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.toc-column h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.toc-column ul {
    list-style: none;
    padding: 0;
}

.toc-column li {
    margin-bottom: 12px;
}

.toc-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.toc-column a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.features-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* PC端一行显示两个卡�?*/
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 数据表格网格 - 一行显示三个卡�?*/
.data-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* PC端数据表格网�?- 一行显示三个卡�?*/
@media (min-width: 768px) {
    .data-tables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 移动端数据表格网�?- 单列显示 */
@media (max-width: 767px) {
    .data-tables-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-purple);
}

.feature-card.highlight {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 140, 89, 0.05), rgba(0, 140, 89, 0.1));
    transform: scale(1.02);
}

.feature-card.highlight .feature-icon svg {
    stroke: var(--primary-blue);
    fill: var(--primary-blue);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.how-to-section {
    background-color: var(--white-color);
    padding: 80px 0;
}



.warning-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

.warning-note h3 {
    color: #d97706;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.warning-note h3 svg {
    stroke: #d97706;
    flex-shrink: 0;
}

.warning-note p {
    color: #92400e;
    margin-bottom: 0;
}

.crops-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.update-time {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 20px 0 40px 0;
    font-style: italic;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.update-time svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.crop-table-wrapper {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.crop-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.crop-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.crop-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.crop-table tr:nth-child(even) {
    background-color: rgba(0, 140, 89, 0.02);
}

.crop-table tr:hover {
    background-color: var(--bg-color);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.crop-table tr:last-child td {
    border-bottom: none;
}

.crop-table td:last-child {
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
}

.crop-table th:last-child {
    text-align: center;
}

/* Crop Module Styling */
.crop-module {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--bg-color) 100%) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100px !important;
    position: relative !important;
}

.crop-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.crop-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: var(--white-color);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.crop-basic-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crop-module-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--white-color);
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    flex-shrink: 0;
}

.crop-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid var(--white-color);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    color: var(--white-color);
}

/* 隐藏占位符图�?*/
.crop-image-placeholder {
    display: none;
}

.crop-module-image:not([src]), 
.crop-module-image[src=""],
.crop-module-image[src*="error"] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    position: relative;
}

.crop-module-image:not([src])::after, 
.crop-module-image[src=""]::after,
.crop-module-image[src*="error"]::after {
    content: '🌱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.crop-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.crop-tier-badge {
    background-color: var(--primary-green);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.crop-quick-stats {
    display: flex;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.profit-positive .stat-value {
    color: #10B981;
}

.profit-negative .stat-value {
    color: #EF4444;
}

.profit-neutral .stat-value {
    color: #6B7280;
}

.crop-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
}

.detail-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.detail-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--text-dark);
}

.detail-value {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Crop Info Styling (for old table format) */
.crop-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crop-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--border-color);
    background-color: var(--white-color);
}

.crop-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crop-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.crop-tier {
    font-size: 0.8rem;
    color: var(--text-light);
    background-color: var(--bg-color);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Profit styling */
.crop-table td:nth-child(4) {
    font-weight: 600;
}

.crop-table td:nth-child(4) {
    font-weight: 600;
}

.crop-table td:nth-child(4).positive {
    color: var(--primary-green);
}

.crop-table td:nth-child(4).negative {
    color: var(--primary-red);
}

/* Huge Chance styling */
.crop-table td:nth-child(6) {
    color: var(--primary-purple);
    font-weight: 500;
}

/* Multi-Harvest styling */
.crop-table td:nth-child(7) {
    text-align: center;
    font-weight: 500;
}

.crop-table td:nth-child(7).yes {
    color: var(--primary-green);
}

.crop-table td:nth-child(7).no {
    color: var(--text-light);
}

/* FAQ Section */
.faq { 
    background-color: var(--white-color); 
}
.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
}
.faq-item { 
    border-bottom: 1px solid var(--border-color); 
}
.faq-question { 
    font-size: 1.2rem; 
    font-weight: 600; 
    cursor: pointer; 
    padding: 25px 0; 
    position: relative; 
}
.faq-question::after { 
    content: '+'; 
    position: absolute; 
    right: 0; 
    font-size: 1.5rem; 
    transition: transform 0.3s; 
    color: var(--primary-blue); 
}
.faq-item.active .faq-question::after { 
    transform: rotate(45deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 0 25px 0;
    margin: 0;
    color: var(--text-light);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    

    
    .crop-table-wrapper {
        padding: 20px;
    }
    
    .crop-table {
        font-size: 0.9rem;
    }
    
    .crop-table th,
    .crop-table td {
        padding: 10px;
    }
    
    .faq-item h3 {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-item p {
        padding: 0 25px 25px 25px;
    }
    
    .faq-item h3::after {
        width: 20px;
        height: 20px;
    }
    
    .crop-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .crop-quick-stats {
        justify-content: center;
    }
    
    .crop-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .detail-card {
        padding: 20px;
    }
}

/* Share Widget (Desktop Only) */
.share-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    display: none; /* Hidden by default, shown via JS for desktop */
}

.share-button-container {
    position: relative;
}

.share-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.share-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.share-toggle-btn svg {
    width: 18px;
    height: 18px;
}

.share-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.share-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.share-panel-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.share-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.share-close-btn:hover {
    background: var(--bg-color);
    color: var(--text-dark);
}

.share-options {
    padding: 15px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.share-option:hover {
    background: var(--bg-color);
    transform: translateX(2px);
}

.share-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.share-option span {
    font-size: 0.9rem;
}

/* Social media colors */
.share-option[title="Reddit"]:hover {
    color: #ff4500;
}

.share-option[title="X (Twitter)"]:hover {
    color: #000000;
}

.share-option[title="WhatsApp"]:hover {
    color: #25d366;
}

.share-option[title="Telegram"]:hover {
    color: #0088cc;
}



/* Mobile hide share widget */
@media (max-width: 768px) {
    .share-widget {
        display: none !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.back-to-top[style*="display: block"] {
    display: flex !important;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.0rem;
    }
}

/* Compact Crop Module Styles */
.crop-module-compact {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--bg-color) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
}

.crop-module-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.crop-module-compact .crop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--white-color);
    color: var(--text-dark);
}

.crop-details-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.crop-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.crop-details-btn svg {
    width: 16px;
    height: 16px;
}

/* Crop Modal Styles */
.crop-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.crop-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-modal-content {
    background: var(--white-color);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.crop-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border-radius: 20px 20px 0 0;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.modal-crop-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-crop-info .crop-module-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-crop-title h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    color: white;
}

.modal-crop-title .crop-tier-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.modal-crop-stats {
    display: flex;
    gap: 25px;
    align-items: center;
}

.modal-crop-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.modal-crop-stats .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--white-color);
}

.modal-crop-stats .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-color);
}

.modal-crop-stats .profit-positive {
    color: #10B981 !important;
}

.modal-crop-stats .profit-negative {
    color: #EF4444 !important;
}

.crop-modal-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.crop-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.crop-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 140px); /* Subtract header height */
}

.crop-modal-full .crop-header {
    margin-bottom: 30px;
    padding: 0;
    border: none;
    background: none;
}

.crop-modal-full .crop-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.crop-modal-full .detail-card {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--bg-color) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.crop-modal-full .detail-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.crop-modal-full .detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crop-modal-full .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.crop-modal-full .detail-item:last-child {
    border-bottom: none;
}

.crop-modal-full .detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.crop-modal-full .detail-value {
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .crop-module-compact .crop-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .crop-details-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* 移动端crop卡片统计信息样式 - 参考弹窗样�?*/
    .crop-quick-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .crop-quick-stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 80px;
    }
    
    .crop-quick-stats .stat-label {
        font-size: 0.9rem;
        margin-bottom: 5px;
        opacity: 0.9;
    }
    
    .crop-quick-stats .stat-value {
        font-size: 1.2rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .crop-quick-stats .stat-number {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .crop-quick-stats .stat-currency {
        font-size: 0.5rem;
        font-weight: 500;
        opacity: 0.8;
    }
    
    .crop-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .crop-modal-header {
        padding: 20px 25px;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .modal-header-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .modal-crop-info {
        justify-content: center;
    }
    
    .modal-crop-info .crop-module-image {
        width: 60px;
        height: 60px;
    }
    
    .modal-crop-title h2 {
        font-size: 1.5rem;
        text-align: center;
        color: white;
    }
    
    .modal-crop-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: nowrap !important;
    }
    
    .modal-crop-stats .stat-item {
        min-width: 80px;
        flex: 1;
        max-width: 120px;
    }
    
    .crop-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }
    
    .crop-modal-body {
        padding: 20px 25px;
    }
}


.crop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.crop-basic-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.crop-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    color: var(--text-light);
}

.crop-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.crop-tier-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-green);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.crop-quick-stats {
    display: flex;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-currency {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.profit-positive .stat-number {
    color: var(--primary-green);
}

.profit-negative .stat-number {
    color: var(--primary-red);
}

.profit-neutral .stat-number {
    color: var(--text-light);
}

.crop-details-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.crop-details-btn:hover {
    background: var(--primary-purple);
    transform: translateY(-1px);
}

/* Crop Modal Styles */
.crop-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.crop-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.crop-modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.modal-crop-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-crop-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.modal-crop-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.modal-crop-tier {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-green);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.modal-crop-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.crop-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.crop-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.crop-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 140px); /* Subtract header height */
}

.crop-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.detail-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
}



/* Crop Image Fallback */
.crop-image-fallback {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid white;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Crops Section Styles */
.crops-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#crop-modules {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile responsive for crop modules */
@media (max-width: 768px) {
    #crop-modules {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Pet Value Page Styles */
.pet-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Use same grid layout as crop modules - one per row with max width */
#pet-modules {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 20px;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 800px;
    margin: 0 auto;
}

.pet-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pet-placeholder-small {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.tier-unobtainable {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
    color: white !important;
}

.tier-leaked {
    background: linear-gradient(135deg, #9b59b6, #bb7ddb) !important;
    color: white !important;
}

/* Mobile responsive for pet modules */
@media (max-width: 768px) {
    .pet-modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #pet-modules {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    margin-left: 20px;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 60px;
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.language-toggle svg {
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:hover {
    background: var(--bg-color);
    color: var(--primary-blue);
}

.language-option.active {
    background: linear-gradient(135deg, rgba(0, 140, 89, 0.1), rgba(0, 140, 89, 0.05));
    color: var(--primary-blue);
    font-weight: 600;
}

.lang-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.language-option.active .lang-code {
    background: var(--primary-blue);
}

.language-option:hover .lang-code {
    background: var(--primary-purple);
}

.lang-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
    }
    
    .language-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .language-menu {
        min-width: 120px;
    }
    
    .language-option {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .lang-code {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .lang-name {
        font-size: 0.8rem;
    }
}

/* Coming Soon Link Styles */
.coming-soon {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.coming-soon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coming-soon:hover::after,
.coming-soon:hover::before {
    opacity: 1;
    visibility: visible;
}













