/* Shared styles for all guide pages */
.guide-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-hero {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.guide-content h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(34, 211, 238, 0.3);
}

.guide-content h3 {
    color: #22d3ee;
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.guide-content p {
    color: #D4D6EC;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.guide-content ul,
.guide-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #D4D6EC;
}

.guide-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.guide-content strong {
    color: #fff;
    font-weight: 600;
}

.guide-content code {
    background-color: rgba(34, 211, 238, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    color: #22d3ee;
}

.guide-card {
    background-color: #111223;
    border: 1px solid #1F2238;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.comparison-table th {
    background-color: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(34, 211, 238, 0.3);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #1F2238;
    color: #D4D6EC;
}

.comparison-table tr:hover {
    background-color: rgba(34, 211, 238, 0.05);
}

.guide-cta {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.guide-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guide-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.related-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.related-guide-link {
    background-color: #111223;
    border: 1px solid #1F2238;
    border-radius: 10px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-guide-link:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.2);
}

.related-guide-link h4 {
    color: #22d3ee;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-guide-link p {
    color: #8E90B5;
    font-size: 0.9rem;
    margin: 0;
}

.breadcrumb {
    padding: 1rem 0;
    color: #8E90B5;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #22d3ee;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(34, 211, 238, 0.2);
    color: #22d3ee;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 0.75rem;
}

.feature-badge {
    display: inline-block;
    background-color: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.warning-box {
    background-color: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning-box p {
    color: #fbbf24;
    margin: 0;
}

.info-box {
    background-color: rgba(34, 211, 238, 0.1);
    border-left: 4px solid #22d3ee;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box p {
    color: #22d3ee;
    margin: 0;
}