/* BeeLocal Landing Page - Custom Styles */

/* ==================== Variables & Reset ==================== */
:root {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --secondary-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ==================== Typography ==================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 48rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* ==================== Navigation ==================== */
.nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.mobile-nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
    background-color: rgba(245, 158, 11, 0.1);
    border-left-color: var(--primary-color);
}

/* ==================== Buttons ==================== */
.download-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.5);
    position: relative;
    overflow: hidden;
}

.download-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.download-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.6);
}

.download-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.download-btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    border-color: var(--text-dark);
    background: #f9fafb;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-btn.disabled,
.download-btn-outline.disabled {
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.download-btn-outline {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.download-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ==================== Badges ==================== */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
}

/* ==================== Feature Cards ==================== */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    color: var(--text-light);
    space-y: 0.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== Download Cards ==================== */
.download-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.download-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.download-card:hover::after {
    opacity: 1;
}

.download-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.download-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.download-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.download-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ==================== Screenshot Cards ==================== */
.screenshot-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.screenshot-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Actual screenshot image when added */
.screenshot-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ==================== How to Use Steps ==================== */
.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-number:hover {
    transform: scale(1.1) rotate(360deg);
}

.step-number:hover::before {
    opacity: 0.3;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* ==================== FAQ Cards ==================== */
.faq-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

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

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.75;
}

/* ==================== Install Guide ==================== */
.install-step {
    min-width: 0;
}

/* Old command wrapper - keeping for backward compatibility */
.command-wrapper {
    display: flex;
    flex-direction: column;
    background: #111827;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.45);
    box-shadow: 0 12px 25px -10px rgba(17, 24, 39, 0.6);
}

.command-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(17, 24, 39, 0.95));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.command-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.command-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.4);
}

.command-dot--red {
    background: #f87171;
}

.command-dot--yellow {
    background: #facc15;
}

.command-dot--green {
    background: #34d399;
}

.command-label {
    margin-left: 0.25rem;
}

.command-text {
    margin: 0;
    flex: 1;
    padding: 1rem 1.25rem;
    background: transparent;
    color: #34d399;
    font-family: 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: nowrap;
    word-break: normal;
    overflow-x: auto;
}

.command-text::-webkit-scrollbar {
    height: 6px;
}

.command-text::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 999px;
}

.command-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: rgba(148, 163, 184, 0.12);
    color: #f9fafb;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.command-copy-btn:hover {
    background: rgba(148, 163, 184, 0.22);
    transform: translateY(-1px);
}

.command-copy-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.35);
}

.command-copy-btn.copied {
    background: #16a34a;
    box-shadow: 0 10px 20px -10px rgba(22, 163, 74, 0.8);
}

.command-copy-icon {
    width: 1rem;
    height: 1rem;
}

/* ==================== New Improved Command Wrapper ==================== */
.command-wrapper-new {
    display: flex;
    flex-direction: column;
    background: #1e293b;
    border-radius: 0.875rem;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.command-wrapper-new:hover {
    border-color: rgba(71, 85, 105, 0.5);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.command-header-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.125rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    min-height: 48px;
}

.command-title-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 600;
    letter-spacing: 0.025em;
    flex: 1;
    min-width: 0;
}

.command-dot-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.command-dot-new--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.command-dot-new--yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.command-dot-new--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.command-label-new {
    margin-left: 0.125rem;
    white-space: nowrap;
}

.command-copy-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(71, 85, 105, 0.3);
    color: #e2e8f0;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(71, 85, 105, 0.4);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.command-copy-btn-new:hover {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(100, 116, 139, 0.6);
    color: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.command-copy-btn-new:active {
    transform: translateY(0);
}

.command-copy-btn-new:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.command-copy-btn-new.copied {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
}

.command-copy-btn-new.copied .command-copy-text::before {
    content: '✓ ';
}

.command-copy-icon-new {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke-width: 2;
}

.command-copy-text {
    display: inline-block;
}

.command-content-new {
    padding: 1.125rem 1.25rem;
    background: #0f172a;
    overflow-x: auto;
    position: relative;
}

.command-content-new::-webkit-scrollbar {
    height: 8px;
}

.command-content-new::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}

.command-content-new::-webkit-scrollbar-thumb {
    background: rgba(71, 85, 105, 0.6);
    border-radius: 4px;
}

.command-content-new::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.8);
}

.command-text-new {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #10b981;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.75;
    white-space: pre;
    word-break: break-all;
    overflow-wrap: break-word;
    user-select: all;
    -webkit-user-select: all;
    cursor: text;
}

@media (max-width: 640px) {
    .command-header-new {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .command-copy-btn-new {
        width: 100%;
        justify-content: center;
    }
    
    .command-text-new {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
}

/* ==================== Final Improved Command Wrapper ==================== */
.command-wrapper-final {
    display: flex;
    flex-direction: column;
    background: #1e293b;
    border-radius: 0.875rem;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.command-wrapper-final:hover {
    border-color: rgba(71, 85, 105, 0.5);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.command-header-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.125rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    min-height: 48px;
    gap: 1rem;
    flex-wrap: nowrap;
}

.command-title-final {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 600;
    letter-spacing: 0.025em;
    flex: 0 0 auto;
    min-width: 0;
}

.command-dot-final {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.command-dot-final--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.command-dot-final--yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.command-dot-final--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.command-label-final {
    white-space: nowrap;
    flex-shrink: 0;
}

.command-copy-btn-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(71, 85, 105, 0.3);
    color: #e2e8f0;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(71, 85, 105, 0.4);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    position: relative;
    z-index: 10;
}

.command-copy-btn-final:hover {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(100, 116, 139, 0.6);
    color: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.command-copy-btn-final:active {
    transform: translateY(0);
}

.command-copy-btn-final:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.command-copy-btn-final.copied {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
}

.command-copy-icon-final {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke-width: 2;
}

.command-copy-text-final {
    display: inline-block;
}

.command-content-final {
    padding: 1.125rem 1.25rem;
    background: #0f172a;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.command-content-final::-webkit-scrollbar {
    height: 8px;
}

.command-content-final::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}

.command-content-final::-webkit-scrollbar-thumb {
    background: rgba(71, 85, 105, 0.6);
    border-radius: 4px;
}

.command-content-final::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.8);
}

.command-text-final {
    display: block;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #10b981;
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    user-select: all;
    -webkit-user-select: all;
    cursor: text;
    width: 100%;
    max-width: 100%;
}

/* Copy Success Bubble */
.copy-success-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px -10px rgba(22, 163, 74, 0.5);
    font-weight: 600;
    font-size: 0.9375rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    min-width: 180px;
}

.copy-success-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.copy-success-icon {
    width: 20px;
    height: 20px;
    stroke-width: 3;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .command-header-final {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .command-copy-btn-final {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .command-text-final {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    .copy-success-bubble {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 40;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

/* ==================== Bee Logo ==================== */
.bee-logo {
    font-size: 6rem;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(245, 158, 11, 0.3));
    transition: transform 0.3s ease;
}

.bee-logo:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .bee-logo {
        font-size: 4rem;
    }
}

/* ==================== Animations ==================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated gradient backgrounds */
.bg-gradient-to-br {
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

/* Parallax effect for sections */
@media (min-width: 768px) {
    section {
        transform-style: preserve-3d;
    }
}

/* ==================== Code Inline ==================== */
code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875em;
    padding: 0.125rem 0.375rem;
    background: #f3f4f6;
    border-radius: 0.25rem;
    color: #dc2626;
}

/* ==================== Install Instructions (Details/Summary) ==================== */
.install-instructions {
    margin-top: 0.75rem;
}

.install-instructions summary {
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
}

.install-instructions summary::-webkit-details-marker {
    display: none;
}

.install-instructions summary svg {
    transition: transform 0.2s ease;
}

.install-instructions[open] summary svg {
    transform: rotate(180deg);
}

.install-instructions summary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ==================== Responsive Utilities ==================== */
@media (max-width: 768px) {
    .feature-card,
    .download-card,
    .screenshot-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* ==================== Print Styles ==================== */
@media print {
    .back-to-top,
    nav {
        display: none;
    }
}

/* ==================== Custom Scrollbar ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== Selection ==================== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

