/* DinoDB Setup Guide Specific Styles */

/* Main Content */
.main {
    padding: 120px 0 60px;
}

.container {
    max-width: 1000px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
}

/* Setup Sections */
.setup-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Step Cards */
.step-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content {
    margin-left: 55px;
}

.step-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.step-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.step-content h4 {
    margin: 20px 0 10px 0;
    color: var(--text-primary);
}

/* Table of Contents */
.table-of-contents {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-of-contents h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

/* Footer adjustments */
.footer {
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-content {
        margin-left: 0;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 10px;
    }
}