.all-guides-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #008000 0%, #006400 100%);
    padding: 2rem 1rem;
}

.all-guides-container { max-width: 1200px; margin: 0 auto; }

.page-header { text-align: center; margin-bottom: 3rem; color: white; }

.page-title {
    font-size: 2.5rem; margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }

.back-home-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; background: rgba(255, 255, 255, 0.2);
    color: white; border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px; text-decoration: none; font-weight: 600;
    transition: all 0.3s ease; margin-bottom: 2rem;
}

.back-home-btn:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }

.guides-section {
    background: rgba(255, 255, 255, 0.95); border-radius: 12px;
    padding: 1.5rem 2rem; margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid #e0e0e0;
}

.section-icon { font-size: 1.5rem; }

.section-title { font-size: 1.4rem; color: #008000; margin: 0; font-weight: 700; }

.guides-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem;
}

.guide-card {
    display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
    background: #f5f5f5; border-radius: 8px; text-decoration: none; color: #333;
    transition: all 0.2s ease; border: 2px solid transparent;
}

.guide-card:hover {
    background: #e8f5e9; border-color: #008000; transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guide-card-icon { font-size: 1.3rem; flex-shrink: 0; }
.guide-card-content { flex: 1; }

.guide-card-title {
    font-weight: 600; color: #1565c0; font-size: 1rem; margin: 0; line-height: 1.3;
}

.guide-card-desc { font-size: 0.85rem; color: #666; margin: 0.25rem 0 0 0; }

.quick-links {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center; margin-bottom: 2rem;
}

.quick-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.2);
    color: white; border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px; text-decoration: none; font-size: 0.9rem;
    transition: all 0.2s ease;
}

.quick-link:hover { background: rgba(255, 255, 255, 0.3); }

.featured-guide {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    border: 2px solid #ffd600;
}

.featured-guide:hover {
    background: linear-gradient(135deg, #fff59d 0%, #ffee58 100%);
    border-color: #ffc107;
}

.featured-badge {
    background: #ffc107; color: #333; padding: 0.15rem 0.5rem;
    border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-title { font-size: 1.8rem; }
    .page-subtitle { font-size: 1rem; }
    .guides-section { padding: 1rem 1.25rem; }
    .section-title { font-size: 1.2rem; }
    .guides-grid { grid-template-columns: 1fr; }
    .quick-links { flex-direction: column; align-items: center; }
}

/* English fallback indicator for untranslated guide links */
.guide-card[data-en-fallback] {
    opacity: 0.85;
}
.guide-card[data-en-fallback] .guide-card-title::after {
    content: ' (EN)';
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 400;
    vertical-align: super;
    color: #ffd700;
}
