:root {
    /* PS印象色 - 高级黑和高级灰 */
    --bg-color: #1A1A1A;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2A2A2A;
    --text-dark: #FFFFFF;
    --text-light: #B8B8B8;
    --text-muted: #808080;
    
    /* Nano Banana印象色 - 暗调金 */
    --primary-gold: #B8860B;
    --primary-gold-light: #DAA520;
    --primary-gold-dark: #8B6914;
    --accent-gold: #FFD700;
    
    /* 高级灰调色板 */
    --gray-900: #0F0F0F;
    --gray-800: #1A1A1A;
    --gray-700: #2D2D2D;
    --gray-600: #404040;
    --gray-500: #666666;
    --gray-400: #999999;
    --gray-300: #CCCCCC;
    
    /* 边框和分割线 */
    --border-color: #333333;
    --border-light: #404040;
    
    /* 状态色 */
    --success-color: #10B981;
    --error-color: #EF4444;
    --warning-color: #F59E0B;
    
    /* 阴影 */
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --shadow-gold: rgba(184, 134, 11, 0.3);
}

/* 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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

.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); }

/* 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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-dark);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(45, 45, 45, 0.85);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    text-decoration: none; 
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.logo img { 
    height: 40px; 
    width: auto; 
    filter: drop-shadow(0 0 8px var(--shadow-gold)) brightness(1.2) contrast(1.3);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 12px var(--primary-gold)) brightness(1.4) contrast(1.5);
    transform: scale(1.05);
}
.nav-menu ul { list-style: none; display: flex; gap: 50px; }
.nav-menu a { 
    text-decoration: none; 
    color: var(--text-light); 
    font-weight: 600; 
    transition: all 0.3s; 
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}
.nav-menu a:hover { 
    color: var(--primary-gold); 
    background: var(--shadow-gold);
    transform: translateY(-2px);
}


.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: 100px 0 80px 0; 
    position: relative; 
    overflow: hidden;
    background: var(--bg-color);
}
.hero .aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--shadow-gold), transparent 60%);
    z-index: -1;
}
.hero h1 { 
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold), var(--primary-gold-light)); 
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--shadow-gold);
}
.hero .subtitle { 
    font-size: 1.25rem; 
    max-width: 700px; 
    margin: 15px auto 15px; 
    color: var(--text-light);
    text-shadow: 0 2px 4px var(--shadow-dark);
}

.hero-description {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    text-shadow: 0 2px 4px var(--shadow-dark);
    opacity: 0.9;
}

/* Hero Content Layout - Wide Screen Effect */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-gold);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-left: 20px;
}

.hero-right .hero-description {
    margin: 0;
    text-align: left;
    max-width: none;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    transition: none;
}

.hero-feature:hover {
    background: none;
    border-color: transparent;
    transform: none;
}

.hero-feature .feature-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-feature .feature-text h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-feature .feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Hero Share Section */
.hero-share {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.hero-share-content h3 {
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px var(--shadow-gold);
}

.share-tip {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: normal;
    opacity: 0.9;
}

.hero-share-content h3 a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px var(--shadow-gold);
}

.hero-share-content h3 a:hover {
    color: var(--secondary-gold);
    text-shadow: 0 4px 8px var(--shadow-gold);
    transform: scale(1.05);
}

.hero-share-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 5px 0;
}

.hero-share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--gray-700);
    color: var(--text-light);
    min-width: 100px;
    flex-shrink: 0;
    justify-content: center;
}

.hero-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
    border-color: var(--primary-gold);
}

.hero-share-btn svg {
    color: transparent;
    stroke: var(--primary-gold);
    fill: none;
    transition: all 0.3s ease;
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.share-facebook:hover svg {
    color: white;
    stroke: white;
}

.share-x:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.share-x:hover svg {
    color: white;
    stroke: white;
}

.share-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.share-linkedin:hover svg {
    color: white;
    stroke: white;
}

.share-reddit:hover {
    background: #ff4500;
    color: white;
    border-color: #ff4500;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.share-reddit:hover svg {
    color: white;
    stroke: white;
}

.share-telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.share-telegram:hover svg {
    color: white;
    stroke: white;
}

.share-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.share-whatsapp:hover svg {
    color: white;
    stroke: white;
}

/* 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-gold), var(--primary-gold-light));
    color: var(--bg-color);
    box-shadow: 0 4px 15px var(--shadow-gold);
    border: 1px solid var(--primary-gold);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
    background: linear-gradient(135deg, var(--primary-gold-light), var(--accent-gold));
}

.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;
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background: var(--bg-color);
    scroll-margin-top: 80px;
}

.key-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.key-features-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.key-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.key-features-section .features-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.key-features-section .feature-card {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 140px;
}

.key-features-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.key-features-section .feature-card:hover::before {
    transform: scaleX(1);
}

.key-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-gold);
}

.key-features-section .feature-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
}

.key-features-section .feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.key-features-section .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.key-features-section .feature-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.key-features-section .feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Pricing Section */
.pricing { background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%); }
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.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);
}

/* Strong text styling */
strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* FAQ Section */
/* User Reviews Section */
.user-reviews {
    background: var(--bg-color);
    padding: 80px 0;
}

.reviews-container {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 30px;
    width: calc(200% + 30px);
}

.reviews-container:hover .reviews-track {
    animation-play-state: paused;
}

.review-item {
    flex: 0 0 350px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px var(--shadow-gold);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-gold);
}

.review-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars span {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-shadow: 0 2px 4px var(--shadow-dark);
}

.review-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    margin-top: auto;
}

.author-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px var(--shadow-dark);
}

.author-info span {
    color: var(--primary-gold);
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.faq { 
    background: var(--bg-color);
    padding: 80px 0;
    scroll-margin-top: 80px;
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}
.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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    text-align: center;
    padding: 80px 0;
}

/* Footer */
.footer { 
    background: var(--bg-color);
    padding: 80px 0 40px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }

.footer .logo img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 6px var(--shadow-gold)) brightness(1.2) contrast(1.3);
}
.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); }

/* Copyable Path Styles */
.copyable-path {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 2px 4px;
}

.copyable-path:hover {
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--primary-gold);
}
.footer-bottom { text-align: center; margin-top: 40px; padding: 20px 0 5px 0; 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: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        padding: 20px;
        z-index: 1000;
        border-top: 1px solid var(--border-color);
    }
    .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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    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;
    top: 0.6em;
    color: var(--green-color);
    font-weight: bold;
    font-size: 0.5em;
}

.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;
    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;
    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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    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: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* What Section */
.what-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

.what-left {
    position: relative;
}

.what-right {
    position: relative;
    padding-left: 20px;
}

.what-description {
    margin-bottom: 30px;
}

.what-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px var(--shadow-gold);
}

.feature-item .feature-icon {
    background: var(--primary-gold);
    color: var(--bg-color);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.feature-item .feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--bg-color);
    stroke-width: 2.5;
}

.feature-text h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.video-container {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-color);
}

.demo-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--bg-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.play-button svg {
    width: 40px;
    height: 40px;
    stroke: var(--bg-color);
    margin-left: 4px;
}

.video-caption {
    margin-top: 20px;
    text-align: center;
}

.video-caption h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-caption p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.what-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-gold);
    transition: transform 0.3s ease;
}

.what-image:hover {
    transform: scale(1.02);
}

.what-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Share Section */
.share-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.share-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.share-icon {
    color: var(--primary-gold);
    animation: pulse 2s infinite;
}

.share-text h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.share-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}


.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.share-btn svg {
    flex-shrink: 0;
}

/* Code highlighting */
.code {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

/* How to use section links */
.how-to-section a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px var(--shadow-gold);
}

.how-to-section a:hover {
    color: var(--primary-gold-light);
    text-shadow: 0 2px 4px var(--shadow-gold);
}

/* Path links - same style as regular links */
.how-to-section .path-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px var(--shadow-gold);
}

.how-to-section .path-link:hover {
    color: var(--primary-gold-light);
    text-shadow: 0 2px 4px var(--shadow-gold);
}

/* How to use section strong text */
.how-to-section strong {
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--gray-900);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Sub-steps styling */
.sub-steps {
    margin-top: 8px;
    margin-left: 20px;
    list-style-type: disc;
}

.sub-steps li {
    margin-bottom: 4px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Get Script Section - smaller version */
.get-script-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

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

.get-script-text h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.get-script-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.get-script-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.share-btn-small {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 80px;
    justify-content: center;
}

.share-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tips-only step styling */
.step-tips-only .step-content {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding-left: 40px;
}

.step-info-full {
    width: 100%;
}

.step-tips-only .step-description {
    text-align: left;
}

/* Horizontal step layout */
.step-content-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding: 30px;
}

.step-content-horizontal .step-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-gold);
    transition: transform 0.3s ease;
}

.step-content-horizontal .step-image:hover {
    transform: scale(1.02);
}

.step-content-horizontal .step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cases Section */
.cases-section {
    background: var(--bg-color);
    padding: 80px 0;
    scroll-margin-top: 80px;
}

/* Cases Grid - Three Cases */
.cases-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-item-three {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 300px;
}

.case-item-three:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-gold);
}

.case-image-three {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.case-image-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item-three:hover .case-image-three img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.case-item-three:hover .case-overlay {
    transform: translateY(0);
}

.case-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--primary-gold);
}

.case-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px var(--shadow-dark);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* First row: 3 items */
.case-item:nth-child(1),
.case-item:nth-child(2),
.case-item:nth-child(3) {
    grid-row: 1;
}

.case-item:nth-child(1) { grid-column: 1; }
.case-item:nth-child(2) { grid-column: 2; }
.case-item:nth-child(3) { grid-column: 3; }

/* Second row: 3 items */
.case-item:nth-child(4),
.case-item:nth-child(5),
.case-item:nth-child(6) {
    grid-row: 2;
}

.case-item:nth-child(4) { grid-column: 1; }
.case-item:nth-child(5) { grid-column: 2; }
.case-item:nth-child(6) { grid-column: 3; }

.case-icon-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.case-icon-only svg {
    color: var(--primary-gold);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.case-icon-only h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.4s ease;
}

.case-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.case-item:hover .case-icon-only {
    opacity: 0;
    transform: scale(0.8);
}

.case-item:hover .case-image {
    opacity: 1;
}

.case-item:hover .case-icon-only svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px var(--shadow-gold));
}

.case-click-hint {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    border-radius: 20px;
}

.case-item:hover .case-click-hint {
    opacity: 1;
}

.click-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px var(--shadow-gold);
    animation: pulse 2s infinite;
}

.click-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--bg-color);
}

.case-click-hint p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px var(--shadow-gold);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 30px var(--shadow-gold);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px var(--shadow-gold);
    }
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.share-modal-content {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    margin: 10% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gray-800);
}

.share-modal-header h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.share-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-modal-close:hover {
    background: var(--shadow-gold);
    color: var(--primary-gold);
}

.share-modal-body {
    padding: 30px;
    text-align: center;
}

.share-modal-body p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.share-modal-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.share-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-light);
}

.share-modal-btn svg {
    color: transparent;
    stroke: var(--primary-gold);
    fill: none;
    transition: all 0.3s ease;
}

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

.share-modal-btn.share-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-modal-btn.share-facebook:hover svg {
    color: white;
    stroke: white;
}

.share-modal-btn.share-x:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.share-modal-btn.share-x:hover svg {
    color: white;
    stroke: white;
}

.share-modal-btn.share-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-modal-btn.share-linkedin:hover svg {
    color: white;
    stroke: white;
}

.share-modal-btn.share-reddit:hover {
    background: #ff4500;
    color: white;
    border-color: #ff4500;
}

.share-modal-btn.share-reddit:hover svg {
    color: white;
    stroke: white;
}

.share-modal-btn.share-telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.share-modal-btn.share-telegram:hover svg {
    color: white;
    stroke: white;
}

.share-modal-btn.share-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-modal-btn.share-whatsapp:hover svg {
    color: white;
    stroke: white;
}

/* Case Modal */
.case-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.case-modal-content {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.case-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gray-800);
}

.case-modal-header h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.case-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.case-modal-close:hover {
    background: var(--shadow-gold);
    color: var(--primary-gold);
}

.case-modal-body {
    padding: 30px;
}

.case-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.comparison-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.comparison-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

.case-prompt {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 20px;
}

.case-prompt h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prompt-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    background: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-left {
        padding-right: 0;
    }
    
    .what-right {
        padding-left: 0;
    }
    
    .what-description {
        margin-bottom: 30px;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .share-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .share-text h3 {
        font-size: 1.5rem;
    }
    
    .share-text p {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .share-btn {
        min-width: 100%;
        padding: 12px 20px;
    }
    
    .get-script-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .get-script-buttons {
        justify-content: center;
    }
    
    .share-btn-small {
        min-width: 100px;
    }
    
    .step-tips-only .step-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-left: 20px;
    }
    
    .step-content-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .step-content-horizontal .step-image {
        width: 100%;
        justify-self: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
        padding: 0 10px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-right {
        padding-left: 0;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-feature {
        padding: 12px;
    }
    
    .hero-share {
        padding: 15px;
        margin-top: 30px;
        max-width: 90%;
    }
    
    .hero-share-buttons {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    
    .hero-share-btn {
        min-width: 90px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    /* Key Features Mobile */
    .key-features-section h2 {
        font-size: 2rem;
    }
    
    .key-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .key-features-section .features-grid-six {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .key-features-section .feature-card {
        padding: 30px 20px;
    }
    
    .reviews-track {
        gap: 20px;
    }
    
    .review-item {
        flex: 0 0 280px;
        padding: 20px;
    }
    
    .cases-grid-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .case-item-three {
        height: 250px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 20px;
        max-width: 600px;
    }
    
    /* Mobile layout: 2-2-2 */
    .case-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .case-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .case-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .case-item:nth-child(4) { grid-column: 2; grid-row: 2; }
    .case-item:nth-child(5) { grid-column: 1; grid-row: 3; }
    .case-item:nth-child(6) { grid-column: 2; grid-row: 3; }
    
    .case-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .share-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .share-modal-body {
        padding: 20px;
    }
    
    .share-modal-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .share-modal-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .case-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .case-modal-body {
        padding: 20px;
    }
    
    .comparison-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .cases-grid-three {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .case-item-three {
        height: 200px;
    }
    
    .reviews-track {
        gap: 15px;
    }
    
    .review-item {
        flex: 0 0 250px;
        padding: 15px;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
        gap: 15px;
        max-width: 300px;
    }
    
    /* Mobile single column */
    .case-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .case-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .case-item:nth-child(3) { grid-column: 1; grid-row: 3; }
    .case-item:nth-child(4) { grid-column: 1; grid-row: 4; }
    .case-item:nth-child(5) { grid-column: 1; grid-row: 5; }
    .case-item:nth-child(6) { grid-column: 1; grid-row: 6; }
    
    .case-icon-only h3 {
        font-size: 1rem;
    }
    
    .case-icon-only svg {
        width: 50px;
        height: 50px;
    }
}

.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: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-gold);
    border-color: var(--primary-gold);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-gold);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px var(--shadow-gold));
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    stroke: var(--accent-gold);
    filter: drop-shadow(0 0 12px var(--shadow-gold));
}

.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: var(--bg-color);
    padding: 80px 0;
    scroll-margin-top: 80px;
}



.warning-note {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

/* How-to-Use Steps */
.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-dark);
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover::before {
    opacity: 1;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-gold);
}

.step-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.step-info {
    flex: 1;
}

.step-title {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-description ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.step-description li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-description li::before {
    content: '●';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.6em;
    font-size: 0.5em;
}

/* 子步骤使用空心圆 */
.step-description li li::before {
    content: '◯';
    color: var(--primary-gold);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.6em;
    font-size: 0.5em;
    text-shadow: 0 0 0.5px var(--primary-gold);
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-gold);
    transition: transform 0.3s ease;
}

/* Get Script CTA Box Styles */
.get-script-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.cta-box h3 {
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.cta-box p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.get-script-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 100%);
    color: var(--bg-color);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.get-script-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, var(--primary-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.get-script-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.get-script-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-script-btn .btn-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Warning text style */
.warning-text {
    color: #ff6b6b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 25px 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .cta-box h3 {
        font-size: 20px;
    }
    
    .hero-share-content h3 {
        font-size: 20px;
    }
    
    .cta-box p {
        font-size: 14px;
        white-space: normal;
        line-height: 1.5;
    }
    
    .get-script-btn {
        padding: 14px 32px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .get-script-btn .btn-icon svg {
        width: 18px;
        height: 18px;
    }
}

.step-image:hover {
    transform: scale(1.02);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.warning-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

.warning-icon {
    flex-shrink: 0;
    color: var(--primary-gold);
    margin-top: 2px;
}

.warning-content h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.warning-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.crops-section {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    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: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    scroll-margin-top: 80px;
}
.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: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--gray-700) 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.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.5rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

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

/* 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 Module Styles */
.crop-module-compact {
    background: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.crop-module-compact:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.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;
    }
}













