.guide-page {
    padding-top: 0;
}

.guide-hero {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.guide-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guide-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.subtitle {
  color: #fff;
}

.guide-content {
    padding: 60px 0;
}

.guide-toc {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
}

.guide-toc h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.guide-toc ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.guide-toc li {
    margin-bottom: 10px;
}

.guide-toc a {
    color: var(--text-color);
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
}

.guide-toc a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 0, 0, 0.05);
}

.guide-article {
    max-width: 900px;
    margin: 0 auto;
}

.guide-section {
    margin-bottom: 60px;
}

.guide-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.guide-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.guide-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.guide-section ul,
.guide-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.step-by-step {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.step-content {
    flex: 1;
}

.screenshot {
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    padding: 10px 15px;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid #eee;
}

.note, .tip {
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(255, 0, 0, 0.05);
    margin: 20px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip {
    border-left-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

.resolutions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    box-shadow: var(--box-shadow);
}

.resolutions-table th,
.resolutions-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.resolutions-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.resolutions-table tr:hover {
    background-color: #f9f9f9;
}

.troubleshooting-item {
    margin-bottom: 30px;
}

.troubleshooting-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.troubleshooting-item p {
    margin-bottom: 10px;
}

code {
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9rem;
}

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

.tip-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .guide-hero {
        padding: 80px 0 60px;
    }
    
    .guide-hero h1 {
        font-size: 2.2rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}
