/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Grow A Garden farm theme colors */
    --primary-color: #1a2e1a;
    --secondary-color: #2d4a2d;
    --accent-color: #4CAF50;
    --accent-hover: #66BB6A;
    --accent-dark: #388E3C;
    --text-color: #ffffff;
    --text-light: #b3b3b3;
    --text-dark: #333333;
    --bg-color: #0f1f0f;
    --bg-light: #1a2e1a;
    --bg-card: #2d4a2d;
    --bg-success: #4CAF50;
    --border-color: #4a6b4a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-green: 0 4px 20px rgba(76, 175, 80, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Farm gradient colors */
    --gradient-primary: linear-gradient(135deg, #2E7D32, #4CAF50);
    --gradient-secondary: linear-gradient(135deg, #1B5E20, #388E3C);
    --gradient-accent: linear-gradient(135deg, #4CAF50, #8BC34A);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f1f0f 0%, #1a2e1a 50%, #0f1f0f 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-green);
    border-bottom: 2px solid var(--accent-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 50px;
    height: 50px;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #E8F5E8;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Nav CTA */
.nav-cta {
    background: linear-gradient(135deg, #66BB6A, #43A047);
    border: 2px solid var(--accent-hover);
    font-weight: 700;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #81C784, #2E7D32);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.5);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 195, 74, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.garden-illustration {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(76, 175, 80, 0.4),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    animation: gardenGlow 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    animation: plantGrow 3s ease-in-out infinite alternate;
}

.garden-illustration::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid var(--accent-hover);
    border-radius: 50%;
    border-style: dashed;
    animation: rotate 20s linear infinite;
    opacity: 0.6;
}

.garden-illustration:hover {
    transform: scale(1.1);
    box-shadow: 
        0 30px 60px rgba(76, 175, 80, 0.6),
        inset 0 0 80px rgba(255, 255, 255, 0.2);
}

@keyframes gardenGlow {
    0%, 100% { 
        box-shadow: 
            0 20px 40px rgba(76, 175, 80, 0.4),
            inset 0 0 50px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 25px 50px rgba(139, 195, 74, 0.6),
            inset 0 0 60px rgba(255, 255, 255, 0.2);
    }
}

@keyframes plantGrow {
    0% { transform: scale(1) rotate(-5deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    text-align: left;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(76, 175, 80, 0.3);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #f0f8f0;
    line-height: 1.7;
}

.hero-note {
    font-size: 1rem !important;
    color: #C8E6C9 !important;
    font-style: italic;
    margin-bottom: 2.5rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Promotion Cards Section */
.promotion-cards-section {
    background: linear-gradient(135deg, var(--bg-light), var(--secondary-color));
    padding: 2rem 0;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 2px 10px rgba(76, 175, 80, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2);
}

.promotion-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(139, 195, 74, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.promotion-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
}

.promotion-content {
    display: flex;
    align-items: center;
    animation: cardScroll 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
    gap: 30px;
}

.promotion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 560px;
    width: 560px;
    background: rgba(45, 74, 45, 0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.promotion-card:hover::before {
    left: 100%;
}

.promotion-card:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.card-image {
    position: relative;
    width: 200px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.promotion-card:hover .card-image {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.promotion-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 175, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promotion-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}

.card-text {
    text-align: center;
}

.card-title {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.promotion-card:hover .card-title {
    color: var(--accent-color);
}

.card-description {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.promotion-card:hover .card-description {
    color: var(--accent-hover);
    opacity: 1;
}

@keyframes cardScroll {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(-120%);
    }
}

/* Pause animation on hover */
.promotion-container:hover .promotion-content {
    animation-play-state: paused;
}

/* Coming Soon card styles */
.promotion-card.coming-soon {
    background: rgba(45, 74, 45, 0.2);
    border: 2px dashed rgba(76, 175, 80, 0.5);
    opacity: 0.7;
    cursor: default;
}

.promotion-card.coming-soon:hover {
    background: rgba(45, 74, 45, 0.3);
    border-color: rgba(76, 175, 80, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
}

.promotion-card.coming-soon .card-image {
    filter: grayscale(50%);
    opacity: 0.8;
}

.promotion-card.coming-soon:hover .card-image {
    transform: scale(1.05);
    filter: grayscale(30%);
}

.promotion-card.coming-soon .card-title {
    color: rgba(255, 255, 255, 0.8);
}

.promotion-card.coming-soon .card-description {
    color: rgba(179, 179, 179, 0.6);
    font-style: italic;
}

.promotion-card.coming-soon:hover .card-title {
    color: var(--accent-color);
}

.promotion-card.coming-soon:hover .card-description {
    color: rgba(179, 179, 179, 0.8);
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-green);
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: var(--text-color);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    padding: 1rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.search-btn:hover {
    background: var(--gradient-primary);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-color);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Scripts Section */
.scripts-section {
    padding: 3rem 0;
}

.scripts-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.script-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

.script-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
    border-color: var(--accent-color);
}

.script-header {
    padding: 1.5rem;
    background: var(--gradient-accent);
    color: white;
    position: relative;
}

.script-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
}

.script-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.script-category {
    font-size: 0.9rem;
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.script-content {
    padding: 1.5rem;
}

.script-description {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.script-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--gradient-accent);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.script-code {
    background-color: #1e2d1e;
    color: #e8f5e8;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow-x: auto;
    margin-bottom: 1rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.copy-btn:hover {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.script-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.action-btn-primary {
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.action-btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.action-btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.action-btn-secondary:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-color));
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-category {
    background: rgba(45, 74, 45, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-category:hover {
    transform: translateY(-2px);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.2);
}

.category-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(45, 74, 45, 0.6);
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    border-color: var(--accent-color);
}

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

.feature-card.featured {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.feature-card.featured:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.4);
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(102, 187, 106, 0.1));
    border: 2px solid var(--accent-hover);
    position: relative;
}

.feature-card.highlight::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.7));
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.3;
}

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

/* About Section */
.about-section {
    padding: 3rem 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-text {
    text-align: center;
    max-width: 800px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    text-align: center;
    max-width: 600px;
}

.about-features h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-features ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.about-features li {
    color: white;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    flex: 0 0 auto;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.about-features li:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.about-features p {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-green);
    border-color: var(--accent-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-card));
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gradient-accent);
    color: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-hover);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--bg-card);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-answer ol,
.faq-answer ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.code-block {
    background-color: #1e2d1e;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
    border: 2px solid var(--accent-color);
}

.code-block code {
    color: #e8f5e8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-all;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-green);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 10000;
    font-weight: 600;
    border: 2px solid var(--accent-hover);
}

.toast.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle { display: block; }

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.open {
        max-height: 500px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .garden-illustration {
        width: 300px;
        height: 300px;
    }

    .hero-logo {
        width: 250px;
        height: 250px;
    }

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

    .about-content {
        gap: 2rem;
    }

    .about-features ul {
        flex-direction: column;
        align-items: center;
    }

    .about-features li {
        white-space: normal;
        text-align: center;
        min-width: 200px;
    }
    
    .about-features p {
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .script-actions {
        flex-direction: column;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        transform: translateY(100px);
    }

    .toast.show {
        transform: translateY(0);
    }

    /* Promotion Cards mobile styles */
    .promotion-cards-section {
        padding: 1.5rem 0;
    }
    
    .promotion-container {
        height: 200px;
    }
    
    .promotion-card {
        min-width: 300px;
        width: 300px;
        padding: 20px;
        border-radius: 15px;
    }
    
    .card-image {
        width: 150px;
        height: 90px;
        margin-bottom: 12px;
        border: 3px solid var(--accent-color);
        border-radius: 12px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .scripts-section h2,
    .section-header h2,
    .about-section h2 {
        font-size: 2rem;
    }
    
    .features-categories {
        gap: 2rem;
    }
    
    .feature-category {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }

    .script-code {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .garden-illustration {
        width: 250px;
        height: 250px;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    /* Features Section Mobile */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-categories {
        gap: 1.5rem;
    }
    
    .feature-category {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .category-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-card h3,
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    /* Promotion Cards extra small screens */
    .promotion-cards-section {
        padding: 1rem 0;
    }
    
    .promotion-container {
        height: 180px;
    }
    
    .promotion-card {
        min-width: 250px;
        width: 250px;
        padding: 16px;
        border-radius: 12px;
    }
    
    .card-image {
        width: 120px;
        height: 75px;
        margin-bottom: 10px;
        border: 3px solid var(--accent-color);
        border-radius: 10px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .card-icon {
        font-size: 1.8rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Special effects for garden theme */
.script-card[data-category="autofarm"] .script-header {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.script-card[data-category="trading"] .script-header {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.script-card[data-category="hub"] .script-header {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.script-card[data-category="mobile"] .script-header {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.script-card[data-category="utility"] .script-header {
    background: linear-gradient(135deg, #607D8B, #78909C);
}

.script-card[data-category="premium"] .script-header {
    background: linear-gradient(135deg, #FFD700, #FFA000);
}

/* Accessibility improvements */
.btn:focus,
.filter-tab:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .search-section,
    .footer,
    .toast {
        display: none;
    }
    
    .script-card {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}