:root {
    --primary-color: #5D5FEF;
    --background-color: #000000;
    --text-color: #1F2937;
    --border-radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.demo-section {
    padding-right: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.demo-animation {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.demo-animation img {
    width: 100%;
    height: auto;
}

.transform-counter {
    background: #F8F9FF;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.transform-interface {
    background: #F8F9FF;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.login-prompt, .upload-area, .transform-button {
    /* Add your preferred styling here */
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-color);
    text-decoration: none;
}

#auth-buttons {
    display: flex;
    align-items: center;
}

.cl-userButtonBox {
    box-shadow: none !important;
}

.cl-userButtonTrigger {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}
  