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

:root {
    --primary-green: #2d5016;
    --secondary-green: #3d6b1f;
    --light-green: #e6f4ea;
    --dark-bg: #1a1a1a;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

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

/* Floating Leaves Animation */
.floating-leaf {
    position: fixed;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.leaf-2 {
    left: 70%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.leaf-3 {
    left: 40%;
    animation-delay: -14s;
    animation-duration: 30s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🌿';
    position: absolute;
    font-size: 20rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 4rem;
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 0;
    background: white;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-green);
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

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

.why-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.why-content a {
    color: var(--secondary-green);
    text-decoration: underline;
}

.tldr {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #c53030;
    margin-top: 30px;
}

.etymology {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.etymology h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.screenshot-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.screenshot-card img:hover {
    transform: scale(1.05);
}

.screenshot-card p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-light);
}

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

.feature-card {
    padding: 30px;
    background: var(--light-green);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

/* Installation Section */
.installation-section {
    background: linear-gradient(135deg, var(--light-green) 0%, #d4edda 100%);
}

.installation-steps {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.step-content code {
    background: var(--light-green);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* How to Use Section */
.usage-list {
    max-width: 800px;
    margin: 40px auto;
    padding-left: 20px;
}

.usage-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 10px;
}

/* Supported Sites Section */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.site-card {
    padding: 25px;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fff4 100%);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-green);
    transition: all 0.3s ease;
}

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

.site-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.site-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Add Creators Section */
.add-creators-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.add-creators-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.method-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.method-card p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.code-block {
    background: var(--dark-bg);
    color: #e6f4ea;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    font-family: 'Courier New', Monaco, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.add-creators-section .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

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

.privacy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-green);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.check {
    font-size: 2rem;
    flex-shrink: 0;
}

.privacy-item h3 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.privacy-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    border-radius: 20px 20px 0 0;
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.version {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .screenshots-grid,
    .method-cards {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .sites-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--secondary-green);
    color: white;
}

