:root {
    --primary: #007311;
    --text: #1f2937;
    --bg: #C9E4CA;
    --secondary-bg: #f3f4f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding: 0;
    background: var(--bg);
    font-size: 18px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.logo {
    width: 100px;
    height: 100px;
    vertical-align: middle;
}

.title-with-logo {
    margin-top: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero {
    text-align: center;
    margin: 0 0 4rem;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-setup {
    background: white;
    padding: 1rem 3rem 1rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: left;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

.tagline {
    font-size: 1.8rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.bookmarklet {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin: 0.5rem 0;
    cursor: move;
    font-size: 1.3rem;
}

#bookmarkletContainer .bookmarklet {
    transition: transform 0.2s ease-in-out;
}

#bookmarkletContainer .bookmarklet:hover {
    transform: scale(1.2);
}

.section {
    background: none;
    padding: 0;
    box-shadow: none;
}

.section h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.steps {
    list-style-type: none;
    padding: 0;
    counter-reset: step;
    font-size: 1.2rem;
}

.steps li {
    margin: 1.5rem 0;
    padding-left: 3.5rem;
    position: relative;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.feature {
    background: white;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    border-radius: 12px;
    margin: 0;
    font-size: 1.2rem;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature h3 {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.platform-instructions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 1.2rem;
}

small {
    font-size: 1.1rem;
    color: #6b7280;
    display: block;
    margin-top: 0.5rem;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #666;
    font-size: 1rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .platform-instructions {
        grid-template-columns: 1fr;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .bookmarklet {
        padding: 0.75rem 1.5rem;
        font-size: 1.1rem;
    }

    .feature {
        font-size: 1.1rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
} 

.powered-by {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
} 

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: inline;
            color: #666;
    }
    
    .bookmarklet {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        touch-action: manipulation;
    }
} 

.code-container {
    background: var(--secondary-bg);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}

.bookmarklet-code {
    margin: 0;
    white-space: nowrap;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.9rem;
    padding-right: 100px; /* Make space for the button */
}

.copy-button, .mobile-copy-button, .reset-note button {
    background: transparent;
    color: #666;
    border: 1px solid #666;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: none;
}

.copy-button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-copy-button {
    margin-top: 0.5rem;
}

.reset-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-note .separator {
    color: #666;
}

@media (max-width: 640px) {
    .bookmarklet-code {
        font-size: 0.8rem;
    }
    
    .copy-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 

.mobile-instructions-link {
    color: var(--primary);
    text-decoration: none;
}

.mobile-instructions-link:hover {
    text-decoration: underline;
} 

.toggle-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0;
}

.toggle-button {
    padding: 0.4rem 0.8rem;
    border: 2px solid var(--primary);
    background: none;
    color: var(--primary);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.toggle-button.active {
    background: var(--primary);
    color: white;
}

.setup-content {
    display: none;
}

.setup-content.active {
    display: block;
} 

.hero-setup h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
} 

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 

.mobile-copy-button, .reset-note button {
    margin: 0;  /* Reset any margins */
} 