:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #6366f1;
    --text-color: #1f2937;
    --light-text-color: #6b7280;
    --background-color: #ffffff;
    --light-background: #f9fafb;
    --lighter-background: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #34d399;
    --warning-color: #fbbf24;
    --error-color: #ef4444;
    --focus-color: #a855f7;
    --blue-color: #3b82f6;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --sidebar-bg: #f0f4ff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-background);
    padding: 0;
    margin: 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background-color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.page-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.main-content {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    margin-right: 1.5rem;
}

.sidebar {
    width: 300px;
    background-color: var(--sidebar-bg);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    align-self: flex-start;
    position: sticky;
    top: 2rem;
}

.sidebar h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.sidebar p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.api-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.api-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
    color: white;
    text-decoration: none;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 1.5rem;
    color: var(--text-color);
}

p {
    color: var(--light-text-color);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

p, ul, ol {
    margin-bottom: 1.5rem;
}

ul, ol {
    padding-left: 1.5rem;
    color: var(--light-text-color);
}

li {
    margin-bottom: 0.75rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.status-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.status-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.status-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.green { background-color: #34d399; }
.red { background-color: #ef4444; }
.purple { background-color: #a855f7; }
.yellow { background-color: #fbbf24; }
.blue { background-color: #3b82f6; }
.multi-color {
    background: linear-gradient(45deg, #34d399, #3b82f6, #a855f7, #fbbf24, #ef4444);
}

.interaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.interaction-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.interaction-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.feature-section {
    background-color: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-section:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.tips-section {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.tips-section h3 {
    color: var(--primary-color);
}

.tip-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

footer {
    background-color: var(--lighter-background);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--light-text-color);
    margin-top: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .page-layout {
        flex-direction: column;
    }
    
    .main-content {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-image-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .main-content, .sidebar {
        padding: 1.5rem;
    }
    
    .status-grid, .interaction-grid, .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
} 