/* Index Page Styles */
body.index-page {
    background: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card {
    background: var(--bg);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.header-section {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.content-section {
    padding: 2.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-text {
    color: var(--text-secondary);
}